/* ═══════════════════════════════════════════
   KeDo Premium — Design System
════════════════════════════════════════════ */
:root {
  --clr-bg:         #000000;
  --clr-surface:    #0a0a0a;
  --clr-surface-2:  #111111;
  --clr-surface-3:  #181818;
  --clr-border:     rgba(255,255,255,0.08);
  --clr-blue:       #0092e3;
  --clr-blue-dim:   rgba(0,146,227,0.12);
  --clr-blue-glow:  rgba(0,146,227,0.25);
  --clr-orange:     #ff8e00;
  --clr-orange-dim: rgba(255,142,0,0.12);
  --clr-orange-glow:rgba(255,142,0,0.25);
  --clr-white:      #ffffff;
  --clr-text:       rgba(255,255,255,0.92);
  --clr-muted:      rgba(255,255,255,0.55);
  --clr-faint:      rgba(255,255,255,0.2);
  --font-display:   'Gruppo', 'Inter', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px;
  --space-4: 16px; --space-5: 24px;  --space-6: 32px;
  --space-7: 48px; --space-8: 64px;  --space-9: 96px;
  --space-10: 128px; --space-11: 160px; --space-12: 192px; --space-13: 224px; --space-14: 256px;
  --clr-surface-1: var(--clr-surface);
  --clr-text-muted: var(--clr-muted);
  --shadow-blue: 0 0 40px rgba(0,146,227,0.15), 0 0 80px rgba(0,146,227,0.08);
  --shadow-orange: 0 0 40px rgba(255,142,0,0.15), 0 0 80px rgba(255,142,0,0.08);
  --transition: color 0.25s cubic-bezier(0.4,0,0.2,1), background-color 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Accessibility: focus styles (WCAG 2.1 AA) ── */
:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Accessibility: skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--clr-blue);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-4); }

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  /* Marquee: translateX(-50%) final keyframe would hide all content — stop instead */
  .marquee-track { animation: none !important; }
  /* Scroll line: ends at scaleY(0) = invisible — reset */
  .scroll-line { animation: none !important; opacity: 0; }
  /* Threat rings: end at opacity:0 scale(1.5) — keep them visible as static elements */
  .threat-ring { animation: none !important; opacity: 0.2; transform: scale(1); }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-blue); }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-gradient {
  background: linear-gradient(135deg, var(--clr-blue) 0%, #00c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-orange {
  background: linear-gradient(135deg, var(--clr-orange) 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout Helpers ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.section {
  padding: var(--space-10) 0;
}
.section--dark {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: var(--space-3);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-9);
}
.section-title {
  margin-bottom: var(--space-4);
}
.section-sub {
  color: var(--clr-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-blue);
  color: #fff;
  box-shadow: 0 0 0 0 var(--clr-blue-glow);
}
.btn--primary:hover {
  background: #00a8ff;
  box-shadow: 0 0 30px var(--clr-blue-glow);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}
.btn--large { padding: 18px 36px; font-size: 1rem; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.kedo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-6);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.kedo-nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--clr-border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--space-7);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clr-white); }
.nav-links a[aria-current="page"],
.nav-mobile a[aria-current="page"] { color: var(--clr-blue); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-portal {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.nav-portal:hover { color: var(--clr-white); }
.nav-cta {
  background: var(--clr-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-cta:hover {
  background: #00a8ff;
  box-shadow: 0 0 20px var(--clr-blue-glow);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  padding: var(--space-6);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.nav-mobile a { font-size: 1.1rem; font-weight: 500; color: var(--clr-muted); }
.nav-mobile a:hover { color: var(--clr-white); }
.nav-mobile .nav-cta { text-align: center; margin-top: var(--space-2); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow--blue {
  background: radial-gradient(circle, rgba(0,146,227,0.18) 0%, transparent 70%);
  top: -10%;
  left: -5%;
}
.hero-glow--orange {
  background: radial-gradient(circle, rgba(255,142,0,0.14) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  background: rgba(255,255,255,0.03);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--clr-blue-glow); }
  50% { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 4px transparent; }
}
.hero-headline {
  margin-bottom: var(--space-5);
  max-width: 800px;
}
.hero-headline--accent {
  color: var(--clr-muted);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: var(--space-7);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-9);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-white);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-blue);
  display: inline;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 4px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}
.hero-scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-blue), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee-strip {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
}
.marquee-track .marquee-dot { color: var(--clr-blue); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.service-card {
  position: relative;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(0,146,227,0.3);
  transform: translateY(-4px);
}
.service-card--featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--clr-surface-2) 0%, rgba(0,146,227,0.05) 100%);
  border-color: rgba(0,146,227,0.2);
}
.service-card--featured .card-glow {
  opacity: 1;
}
.card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 0% 0%, var(--clr-blue-dim) 0%, transparent 60%);
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-blue-dim);
  border: 1px solid rgba(0,146,227,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--clr-blue);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
  color: var(--clr-white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}
.card-features {
  margin-bottom: var(--space-4);
}
.card-features li {
  font-size: 0.85rem;
  color: var(--clr-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--clr-blue);
  border-radius: 50%;
}
.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-blue);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { color: #00c4ff; }

/* ════════════════════════════════════════════
   WHY KEDO
════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-circuit {
  width: 380px;
  height: 380px;
  animation: rotate-slow 30s linear infinite;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.why-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text);
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--clr-border);
  padding: 10px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.why-badge--1 { top: 15%; right: 0; }
.why-badge--2 { bottom: 15%; left: 0; }
.why-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-muted);
  margin-bottom: var(--space-6);
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.point-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--clr-blue-dim);
  border: 1px solid rgba(0,146,227,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.point-icon svg { stroke: var(--clr-blue); width: 14px; height: 14px; }
.why-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-white);
  margin-bottom: 2px;
}
.why-point span {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════════
   SECURITY
════════════════════════════════════════════ */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.security-content p {
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.sec-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--clr-text);
}
.sec-feature__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--clr-blue-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Threat Map */
.security-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.threat-map {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}
.threat-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--clr-blue);
  opacity: 0.3;
}
.threat-ring--1 { animation: radar-pulse 3s ease-out infinite; }
.threat-ring--2 { animation: radar-pulse 3s ease-out 1s infinite; }
.threat-ring--3 { animation: radar-pulse 3s ease-out 2s infinite; }
@keyframes radar-pulse {
  0% { transform: scale(0.3); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.threat-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  background: var(--clr-blue-dim);
  border: 1px solid var(--clr-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.threat-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink-threat 2s ease-in-out infinite;
}
.threat-node--1 { top: 5%; left: 20%; animation-delay: 0s; }
.threat-node--2 { top: 15%; right: 5%; animation-delay: 0.4s; }
.threat-node--3 { bottom: 10%; right: 20%; animation-delay: 0.8s; }
.threat-node--4 { bottom: 20%; left: 5%; animation-delay: 1.2s; }
.threat-node--5 { top: 50%; left: 5%; animation-delay: 1.6s; }
@keyframes blink-threat {
  0%,100% { opacity: 1; box-shadow: 0 0 6px #ef4444; }
  50% { opacity: 0.3; box-shadow: none; }
}

/* Terminal */
.security-terminal {
  background: var(--clr-surface-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--clr-border);
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.t-dot--red { background: #ef4444; }
.t-dot--yellow { background: #f59e0b; }
.t-dot--green { background: #10b981; }
.t-title {
  font-size: 0.72rem;
  color: var(--clr-muted);
  margin-left: var(--space-2);
}
.terminal-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px;
  overflow: hidden;
}
.t-line {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--clr-muted);
}
.t-line--ok .t-time { color: #10b981; }
.t-line--warn .t-time { color: #f59e0b; }
.t-line--alert .t-time { color: #ef4444; }
.t-time { margin-right: 8px; }

/* ════════════════════════════════════════════
   SMART BUILDING
════════════════════════════════════════════ */
.smartbuilding-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,142,0,0.07) 0%, transparent 60%), var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.sb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.sb-card {
  background: var(--clr-surface-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: var(--transition);
}
.sb-card:hover {
  border-color: rgba(255,142,0,0.4);
  background: rgba(255,142,0,0.04);
  transform: translateY(-3px);
}
.sb-card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-orange-dim);
  border: 1px solid rgba(255,142,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.sb-card h3 {
  font-size: 1.05rem;
  color: var(--clr-white);
  margin-bottom: var(--space-2);
}
.sb-card p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  position: relative;
  padding: var(--space-6);
  border: 1px solid var(--clr-border);
  border-right: none;
  background: var(--clr-surface-2);
}
.process-step:last-child {
  border-right: 1px solid var(--clr-border);
}
.process-step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.process-step:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,146,227,0.12);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step-content h3 {
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: var(--space-2);
}
.step-content p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
}
.step-line {
  position: absolute;
  top: 30px;
  right: -1px;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-blue), transparent);
  z-index: 1;
}

/* ════════════════════════════════════════════
   CTA
════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: var(--space-10) 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(to bottom, var(--clr-bg) 0%, rgba(0,146,227,0.04) 50%, var(--clr-bg) 100%);
  border-top: 1px solid var(--clr-border);
}
.cta-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(0,146,227,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  border: 1px solid rgba(0,146,227,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-5);
}
.cta-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-4);
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 520px;
  margin: 0 auto var(--space-7);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.cta-inner { position: relative; z-index: 1; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.kedo-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-10) var(--space-6) var(--space-6);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer-brand img { margin-bottom: var(--space-4); max-width: 160px; height: auto; }
[data-id="3a821eb"] img { max-width: 160px; height: auto; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--clr-blue-dim);
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}
.footer-col h2 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--space-4);
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin-bottom: var(--space-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--clr-white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin-bottom: var(--space-3);
}
.footer-cta {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-blue);
  transition: color 0.2s;
}
.footer-cta:hover { color: #00c4ff; }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: var(--space-5);
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom p { font-size: 0.8rem; color: var(--clr-muted); }
.footer-legal {
  display: flex;
  gap: var(--space-5);
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* ════════════════════════════════════════════
   PAGE TEMPLATE (non-homepage)
════════════════════════════════════════════ */
.page-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px var(--space-6) var(--space-10);
}

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .security-grid { grid-template-columns: 1fr; }
  .security-visual { display: none; }
  .sb-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 1px solid var(--clr-border); border-radius: 0; }
  .process-step:first-child { border-radius: var(--radius-md) 0 0 0; }
  .process-step:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
  .process-step:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
  .process-step:last-child { border-radius: 0 0 var(--radius-md) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-9) 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-sub br { display: none; }
  .hero-stats { gap: var(--space-4); }
  .hero-stat-sep { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .sb-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3) { border-right: 1px solid var(--clr-border); border-bottom: none; border-radius: 0; }
  .process-step:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .process-step:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); border-bottom: 1px solid var(--clr-border); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .security-features { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .kedo-nav { padding: 0 var(--space-4); }
}

/* ════════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-orange) 100%);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   BACK TO TOP BUTTON
════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, border-color 0.2s, color 0.2s, visibility 0s 0.25s;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.25s, transform 0.25s, border-color 0.2s, color 0.2s, visibility 0s;
}
#back-to-top:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}

/* ════════════════════════════════════════════
   FORM FEEDBACK MESSAGE
════════════════════════════════════════════ */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: var(--space-3);
  display: none;
}
.form-message:not(:empty) { display: block; }
.form-message--ok {
  background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.3);
  color: #00c864;
}
.form-message--err {
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.3);
  color: #ff4444;
}

/* ════════════════════════════════════════════
   404 PAGE
════════════════════════════════════════════ */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-6);
}
.error-inner {
  text-align: center;
  max-width: 560px;
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}
.error-inner h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: var(--space-3);
  color: var(--clr-white);
}
.error-inner p {
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--space-7);
}
.error-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════ */
.faq-section { padding-left: var(--space-6); padding-right: var(--space-6); }
.faq-grid { display: flex; flex-direction: column; gap: 0; margin-top: var(--space-10); max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item:first-child { border-top: 1px solid var(--clr-border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  background: none; border: none; cursor: pointer; padding: var(--space-5) 0;
  color: var(--clr-text); font-size: 1.05rem; font-weight: 500; text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--clr-blue); }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s ease; color: var(--clr-blue); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--clr-text-muted); line-height: 1.7; padding-bottom: 0;
}
.faq-answer.is-open { max-height: 400px; padding-bottom: var(--space-5); }
.faq-answer p { margin: 0; }
@media (max-width: 768px) {
  .faq-question { font-size: 0.95rem; padding: var(--space-4) 0; }
}

/* ═══════════════════════════════════════════
   BLOG SECTION
════════════════════════════════════════════ */
.blog-section { background: var(--clr-surface-1); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-10); }
.blog-card {
  background: var(--clr-surface-2); border: 1px solid var(--clr-border); border-radius: var(--radius-xl);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3);
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--clr-blue); transform: translateY(-3px); }
.blog-card__meta { display: flex; align-items: center; gap: var(--space-3); }
.blog-card__cat { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--clr-blue); background: rgba(0,146,227,0.1); padding: 3px 10px; border-radius: 99px; }
.blog-card__date { font-size: 0.78rem; color: var(--clr-text-muted); }
.blog-card__title { font-size: 1.05rem; font-weight: 600; line-height: 1.4; flex: 1; }
.blog-card__title a { color: var(--clr-text); text-decoration: none; }
.blog-card__title a:hover { color: var(--clr-blue); }
.blog-card__excerpt { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.6; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--clr-blue); text-decoration: none; margin-top: auto; }
.blog-card__link:hover { gap: 10px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ── */
.testimonials-section { background: var(--clr-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.testimonial-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.testimonial-card::before {
  content: '\201C' / '';
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-size: 4rem;
  line-height: 1;
  color: var(--clr-blue-dim);
  font-family: Georgia, serif;
}
.testimonial-card:hover { border-color: rgba(0,146,227,0.3); transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--clr-text);
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--clr-border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-blue-dim);
  border: 1px solid rgba(0,146,227,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-blue);
  flex-shrink: 0;
}
.testimonial-name { display: block; font-weight: 600; font-size: 0.9rem; }
.testimonial-company { display: block; font-size: 0.8rem; color: var(--clr-muted); margin-top: 2px; }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }
