/* ============================================================
   ESDeveLops — Premium Enterprise Design System
   Inspired by Stripe, Linear, Vercel, Apple
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

:root {
  /* Dark Palette — deep layered surfaces */
  --bg-base:        #06060b;
  --bg-surface:     #0c0c14;
  --bg-elevated:    #12121c;
  --bg-card:        #161622;
  --bg-border:      rgba(255,255,255,0.07);
  --bg-border-hover:rgba(255,255,255,0.14);
  --bg-glass:       rgba(12,12,20,0.72);

  /* Brand — refined palette */
  --blue:           #0066ff;
  --blue-light:     #4d94ff;
  --blue-dark:      #0047cc;
  --blue-muted:     rgba(0,102,255,0.08);
  --green:          #00e5a0;
  --green-muted:    rgba(0,229,160,0.08);
  --purple:         #a855f7;
  --amber:          #f59e0b;
  --red:            #ef4444;
  --cyan:           #06b6d4;

  /* Text — refined opacity scale */
  --text-100:       #f4f4f8;
  --text-80:        rgba(244,244,248,0.82);
  --text-60:        rgba(244,244,248,0.52);
  --text-40:        rgba(244,244,248,0.32);
  --text-20:        rgba(244,244,248,0.16);

  /* Gradients — richer depth */
  --grad-blue:      linear-gradient(135deg, #0066ff 0%, #00c8a0 100%);
  --grad-blue-subtle: linear-gradient(135deg, rgba(0,102,255,0.15) 0%, rgba(0,229,160,0.08) 100%);
  --grad-purple:    linear-gradient(135deg, #a855f7, #ec4899);
  --grad-amber:     linear-gradient(135deg, #f59e0b, #ef4444);
  --grad-hero:      radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,102,255,0.22) 0%, transparent 65%);
  --grad-mesh:      radial-gradient(at 20% 50%, rgba(0,102,255,0.12) 0%, transparent 50%),
                    radial-gradient(at 80% 20%, rgba(168,85,247,0.08) 0%, transparent 50%),
                    radial-gradient(at 60% 80%, rgba(0,229,160,0.06) 0%, transparent 50%);
  --grad-card-border: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  --grad-shine:     linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.03) 55%, transparent 60%);

  /* Shadows — ambient light aware */
  --shadow-sm:      0 1px 2px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.6), 0 4px 8px rgba(0,0,0,0.3);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.4);
  --shadow-glow:    0 0 40px rgba(0,102,255,0.25), 0 0 80px rgba(0,102,255,0.1);
  --shadow-glow-sm: 0 0 16px rgba(0,102,255,0.2);
  --shadow-green-glow: 0 0 24px rgba(0,229,160,0.2);
  --shadow-card:    0 1px 1px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04);

  /* Typography */
  --font-en: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-he: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing — expanded scale */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;   --space-40: 10rem;

  /* Radius */
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; --radius-xl: 24px; --radius-2xl: 32px; --radius-full: 9999px;

  /* Transitions — refined motion curves */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 450ms;
  --duration-reveal: 700ms;
}

body {
  font-family: var(--font-en);
  background: var(--bg-base);
  color: var(--text-80);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
body.hebrew { font-family: var(--font-he); }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

/* ── Utility ── */
.text-gradient {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--space-5);
  padding: 6px 14px 6px 12px;
  background: var(--blue-muted);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,102,255,0.6);
}

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-100);
  margin-bottom: var(--space-5);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-60);
  max-width: 580px;
  line-height: 1.75;
  letter-spacing: 0.005em;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-header .section-subtitle { margin: 0 auto; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-reveal) var(--ease-out), transform var(--duration-reveal) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-child.is-visible { opacity: 1; transform: none; }
.reveal-child:nth-child(2) { transition-delay: 0.08s; }
.reveal-child:nth-child(3) { transition-delay: 0.16s; }
.reveal-child:nth-child(4) { transition-delay: 0.24s; }

/* ── HEADER ── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--duration-slow) var(--ease-smooth),
              box-shadow var(--duration-slow) var(--ease-smooth),
              border-color var(--duration-slow) var(--ease-smooth);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(6, 6, 11, 0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: var(--bg-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.3);
}

.navbar { padding: var(--space-4) 0; }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-image {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
  transition: transform var(--duration-base), filter var(--duration-base);
}
.logo:hover .logo-image {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 8px 24px rgba(0, 102, 255, 0.35));
}
.logo-image-footer {
  height: 50px;
}
.logo-mark {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.4));
  transition: filter var(--duration-base);
}
.logo:hover .logo-mark { filter: drop-shadow(0 0 14px rgba(0, 102, 255, 0.7)); }
.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  letter-spacing: -0.02em;
  font-family: var(--font-en);
}

/* Nav */
.nav-menu { display: flex; }
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-1);
  align-items: center;
}
.nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-60);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
  position: relative;
}
.nav-link:hover { color: var(--text-100); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--text-100); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Language Switcher — inside nav */
.language-switcher {
  display: flex;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--text-60);
  transition: all var(--duration-fast);
  font-family: var(--font-en);
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,102,255,0.5);
}
.lang-btn:hover:not(.active) { color: var(--text-100); background: rgba(255,255,255,0.08); }

/* Nav CTA */
.btn-nav {
  padding: var(--space-2) var(--space-5);
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,102,255,0.4);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--text-80);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px rgba(0,102,255,0.3);
  animation: cta-breathe 3s ease-in-out infinite;
}
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 1px 2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px rgba(0,102,255,0.3); }
  50% { box-shadow: 0 1px 2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 12px rgba(0,102,255,0.35), 0 0 0 1px rgba(0,102,255,0.4); }
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,102,255,0.45), 0 0 0 1px rgba(0,102,255,0.4);
  color: #fff;
  animation: none;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: var(--grad-blue);
  opacity: 0;
  z-index: -1;
  filter: blur(16px);
  transition: opacity var(--duration-slow);
}
.btn-glow:hover::after { opacity: 0.5; }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-80);
  border: 1px solid var(--bg-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bg-border-hover);
  color: var(--text-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: #fff;
  color: var(--bg-base);
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-white:hover {
  background: #f0f0f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.18), 0 0 40px rgba(255,255,255,0.06);
  color: var(--bg-base);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Animated Background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(6, 6, 11, 0.92), rgba(6, 6, 11, 0.55)),
    url('../images/hero-real.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.04);
  animation: hero-zoom 25s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-base), transparent);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  animation: grid-shift 20s linear infinite;
}
@keyframes grid-shift {
  0% { transform: translate(0,0); }
  100% { transform: translate(64px,64px); }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orb-float 8s ease-in-out infinite;
  will-change: transform;
}
.hero-orb-1 {
  width: 800px; height: 800px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(0,102,255,0.25) 0%, transparent 60%);
  animation-duration: 14s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 80px; right: -80px;
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 65%);
  animation-duration: 15s;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  bottom: -50px; left: 35%;
  background: radial-gradient(circle, rgba(0,229,160,0.1) 0%, transparent 65%);
  animation-duration: 11s;
  animation-delay: -2s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(30px, -40px) scale(1.08); }
  50%      { transform: translate(-15px, 25px) scale(0.96); }
  75%      { transform: translate(20px, 10px) scale(1.04); }
}

/* Hero Layout */
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(0,102,255,0.12);
  border: 1px solid rgba(0,102,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: var(--space-6);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(0,229,160,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-100);
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}
.hero-title-accent {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: var(--text-60);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: var(--space-10);
  letter-spacing: 0.005em;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

/* Trust Row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.875rem;
  color: var(--text-40);
}
.trust-pills {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.trust-pill {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bg-border);
  color: var(--text-80);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Hero Visual — Floating UI Cards */
.hero-visual {
  position: relative;
  height: 440px;
}

.hero-card {
  position: absolute;
  background: var(--bg-glass);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.hero-card-main {
  width: 340px;
  top: 10px;
  right: 0;
  padding: var(--space-6);
  animation: card-float 7s ease-in-out infinite;
  background-image: var(--grad-shine);
  background-size: 200% 100%;
}
.hcard-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--bg-border);
}
.hcard-dots {
  display: flex;
  gap: 5px;
}
.hcard-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-border);
}
.hcard-dots span:nth-child(1) { background: #ff5f57; }
.hcard-dots span:nth-child(2) { background: #febc2e; }
.hcard-dots span:nth-child(3) { background: #28c840; }
.hcard-label {
  font-size: 0.8125rem;
  color: var(--text-60);
  font-weight: 500;
}
.hcard-body { display: flex; flex-direction: column; gap: var(--space-4); }
.hcard-stat { display: flex; flex-direction: column; gap: var(--space-1); }
.hcard-stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  font-family: var(--font-en);
}
.hcard-stat span { font-size: 0.75rem; color: var(--text-40); }
.hcard-stat-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.hcard-stat-fill {
  height: 100%;
  border-radius: var(--radius-full);
  animation: bar-grow 1.5s var(--ease-out) forwards;
}
.hcard-stat-fill--blue   { width: 98%; background: linear-gradient(90deg, #0066ff, #00e5a0); }
.hcard-stat-fill--purple { width: 97%; background: linear-gradient(90deg, #a855f7, #ec4899); }
.hcard-stat-fill--amber  { width: 75%; background: linear-gradient(90deg, #f59e0b, #ef4444); }
.hcard-stat-fill--green  { width: 100%; background: linear-gradient(90deg, #00e5a0, #0066ff); box-shadow: 0 0 12px rgba(0,229,160,0.4); }
@keyframes bar-grow {
  from { width: 0 !important; }
}

.hero-card-badge {
  width: 200px;
  left: 0;
  top: 40px;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: card-float 7s ease-in-out infinite;
  animation-delay: -2s;
}
.hbadge-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.14);
  color: var(--blue-light);
}
.hbadge-val { font-size: 1rem; font-weight: 700; color: var(--text-100); }
.hbadge-sub { font-size: 0.75rem; color: var(--text-40); }

.hero-card-notify {
  width: 210px;
  left: 20px;
  bottom: 60px;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: card-float 5s ease-in-out infinite;
  animation-delay: -1s;
}
.hnotify-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
}
.hnotify-title { font-size: 0.875rem; font-weight: 600; color: var(--text-100); }
.hnotify-sub { font-size: 0.75rem; color: var(--text-40); }

@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ── CLIENTS STRIP ── */
.clients-strip {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  background: rgba(255,255,255,0.01);
}
.clients-strip .container {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.clients-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-20);
  white-space: nowrap;
  flex-shrink: 0;
  padding-inline-end: var(--space-2);
  border-inline-end: 1px solid var(--bg-border);
  padding-inline-end: var(--space-6);
}
.clients-logos {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.client-logo-item {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-20);
  font-family: var(--font-en);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--duration-fast);
  white-space: nowrap;
  padding: var(--space-3) var(--space-5);
  border-inline-end: 1px solid var(--bg-border);
}
.client-logo-item:last-child { border-inline-end: none; }
.client-logo-item span { color: var(--blue-light); }
.client-logo-item:hover { color: var(--text-60); }

/* ── ABOUT ── */
.about {
  padding: var(--space-32) 0;
  position: relative;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about-text .section-title { text-align: start; }
.about-lead {
  font-size: 1.0625rem;
  color: var(--text-60);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--space-12);
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-8) var(--space-6);
  border-inline-end: 1px solid var(--bg-border);
  transition: background var(--duration-slow) var(--ease-out);
}
.about-feature:last-child {
  border-inline-end: none;
}
.about-feature:hover {
  background: rgba(255,255,255,0.03);
}
.afeature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.22);
  color: var(--blue-light);
}
.feature-icon-svg {
  width: 18px;
  height: 18px;
}
.about-feature strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-100);
  margin-bottom: var(--space-1);
}
.about-feature p { font-size: 0.875rem; color: var(--text-60); margin: 0; }

/* Stats Panel */
.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-content: start;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity var(--duration-base);
}
.stat-card:hover {
  border-color: rgba(0,102,255,0.2);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-3px);
}
.stat-card:hover::after { opacity: 1; }
.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-100);
  font-family: var(--font-en);
  line-height: 1;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.stat-suffix {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-40);
  margin-top: var(--space-2);
}

/* ── SERVICES ── */
.services {
  padding: var(--space-32) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 900px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.35), transparent);
}
.services::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8) var(--space-6);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-out);
  background-image: var(--grad-shine);
  background-size: 250% 100%;
  background-position: 100% 0;
}
.service-card:hover {
  background-position: 0% 0;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity var(--duration-base);
}
.service-card:hover {
  border-color: rgba(0,102,255,0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,102,255,0.08), 0 0 60px rgba(0,102,255,0.04);
}
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  border-color: rgba(0,102,255,0.2);
  background: linear-gradient(135deg, rgba(0,102,255,0.04), rgba(0,229,160,0.02));
  background-image: var(--grad-shine), linear-gradient(135deg, rgba(0,102,255,0.04), rgba(0,229,160,0.02));
  background-size: 250% 100%, 100% 100%;
}
.service-card-featured::before { opacity: 1; }
.service-card-featured:hover {
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,102,255,0.08);
}

.service-popular {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  left: auto;
  padding: 3px 10px;
  background: rgba(0,229,160,0.15);
  border: 1px solid rgba(0,229,160,0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}

.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-40);
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  margin-bottom: var(--space-4);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: var(--space-5);
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
}
.service-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: radial-gradient(circle, rgba(0,102,255,0.2), transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-slow);
}
.service-card:hover .service-icon-wrap {
  background: rgba(0,102,255,0.18);
  border-color: rgba(0,102,255,0.35);
  box-shadow: var(--shadow-glow-sm);
  transform: scale(1.08);
}
.service-card:hover .service-icon-wrap::after { opacity: 1; }

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 0.9375rem;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.service-features li {
  font-size: 0.875rem;
  color: var(--text-60);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-features li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--duration-fast), opacity var(--duration-fast);
}
.service-link:hover { gap: var(--space-2); color: var(--blue-light); opacity: 0.8; }

/* ── PORTFOLIO ── */
.portfolio {
  padding: var(--space-32) 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--space-6);
}
.portfolio-item-large { grid-column: 1 / -1; }
.portfolio-item-large .portfolio-image { height: 360px; }
.portfolio-item-large .portfolio-image.portfolio-image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  align-items: stretch;
  background: #0b1220;
}
.portfolio-item-large .portfolio-image.portfolio-image-split .portfolio-real-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 10px;
}
.portfolio-item-large .portfolio-image.portfolio-image-split .portfolio-real-image-map {
  object-fit: contain;
  object-position: top center;
  padding-top: 6px;
  background: #ffffff;
}
.portfolio-item-large .portfolio-real-image {
  object-fit: contain;
  object-position: center;
  background: #0b1220;
}

.portfolio-item-aiqa-secondary .portfolio-real-image {
  object-fit: contain;
  object-position: center;
  background: #0b1220;
}

.portfolio-real-image-wipeprivacy {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.portfolio-item {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-out);
}
.portfolio-item:hover {
  border-color: rgba(0,102,255,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.portfolio-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out), filter var(--duration-slow) var(--ease-out);
  filter: saturate(0.95) contrast(1.03);
}

.portfolio-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(5, 8, 16, 0.22) 100%);
  pointer-events: none;
}

.portfolio-item:hover .portfolio-real-image {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.08);
}

.portfolio-item-large:hover .portfolio-real-image {
  transform: none;
  filter: saturate(1) contrast(1.04);
}

/* Portfolio Placeholders (no real images needed) */
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p1 { background: linear-gradient(135deg, #0a0f1e, #0e1628); }
.p2 { background: linear-gradient(135deg, #0f0a1e, #1a0e28); }
.p3 { background: linear-gradient(135deg, #0a1e12, #0e2818); }

.pp-content { width: 100%; height: 100%; padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.pp-bar { height: 8px; border-radius: 4px; opacity: 0.7; }
.pp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 8px; }
.pp-cell { height: 40px; border-radius: 6px; }

.pp-phone { width: 80px; height: 140px; background: rgba(255,255,255,0.05); border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); margin: auto; padding: 16px 12px; display: flex; flex-direction: column; gap: 8px; }
.pp-pbar { height: 6px; border-radius: 3px; width: 100%; opacity: 0.8; }

.pp-dash { display: flex; gap: 12px; align-items: center; justify-content: center; width: 100%; padding: 20px; }
.pp-donut { width: 70px; height: 70px; border-radius: 50%; border: 8px solid rgba(0,229,160,0.4); border-top-color: var(--green); flex-shrink: 0; }
.pp-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pp-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; width: 100%; }

.portfolio-info {
  padding: var(--space-5) var(--space-6);
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.ptag {
  padding: 3px 10px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-light);
}
.portfolio-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.portfolio-info p {
  font-size: 0.875rem;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.portfolio-metrics {
  display: flex;
  gap: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--bg-border);
}
.portfolio-metrics span {
  font-size: 0.8125rem;
  color: var(--text-60);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.portfolio-metrics strong {
  color: var(--text-100);
  font-weight: 700;
  font-family: var(--font-en);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: var(--space-32) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  inset-inline-end: var(--space-5);
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0,102,255,0.08);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  border-color: rgba(0,102,255,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  color: var(--amber);
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}
.testi-quote {
  font-size: 0.9375rem;
  color: var(--text-80);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--bg-border);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-100);
  font-weight: 600;
}
.testi-author span {
  font-size: 0.8125rem;
  color: var(--text-40);
}

/* ── CONTACT ── */
.contact {
  padding: var(--space-32) 0;
  position: relative;
}
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Left col */
.contact-left .section-eyebrow { margin-bottom: var(--space-5); }
.contact-left .section-title { margin-bottom: var(--space-5); }
.contact-left-lead {
  font-size: 1.0625rem;
  color: var(--text-60);
  line-height: 1.75;
  margin-bottom: var(--space-10);
  max-width: 440px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-base), background var(--duration-base), transform var(--duration-base);
}
.contact-card:hover {
  border-color: rgba(0,102,255,0.25);
  background: rgba(0,102,255,0.04);
  transform: translateX(-3px);
}
.contact-card-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-40);
}
.contact-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-100);
  font-family: var(--font-en);
}

/* Right col — action panel */
.contact-action-panel {
  position: relative;
}
.contact-action-panel-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: var(--shadow-xl);
}
.contact-action-panel-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
}
.contact-action-panel-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,102,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-action-header {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  z-index: 1;
}
.contact-action-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0,229,160,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.contact-action-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  margin: 0;
}
.contact-cta-hint {
  color: var(--text-60);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.contact-cta-btn {
  font-size: 1rem;
  padding: 16px 32px;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.form-trust-centered {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Legacy — keep for other pages */
.contact-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  border: 1px solid transparent;
  transition: all var(--duration-base);
}
.contact-item:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--bg-border);
}
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}
.contact-details h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 2px;
}
.contact-details p {
  font-size: 0.9375rem;
  color: var(--text-60);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
}
.form-group {
  position: relative;
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-60);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text-100);
  font-family: inherit;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-40); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0,102,255,0.5);
  background: rgba(0,102,255,0.04);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.12), 0 0 0 1px rgba(0,102,255,0.3);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-4);
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Form Trust Signals */
.form-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--bg-border);
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  color: var(--text-40);
  font-weight: 500;
}
.form-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  padding: var(--space-20) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.2), transparent);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--bg-border);
}
.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-description {
  font-size: 0.9375rem;
  color: var(--text-40);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: var(--space-5);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-40);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
}
.social-link:hover {
  background: rgba(0,102,255,0.1);
  border-color: rgba(0,102,255,0.25);
  color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.footer-section h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-100);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: var(--space-3); }
.footer-section ul li a {
  font-size: 0.9375rem;
  color: var(--text-40);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.footer-section ul li a:hover { color: var(--text-100); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  max-width: 760px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.875rem; color: var(--text-40); margin: 0; }
.footer-bottom > a {
  display: inline-flex;
  justify-content: center;
}
.footer-bottom > a img {
  display: block;
  max-width: min(100%, 280px);
  height: auto;
}
.footer-bottom-badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-40);
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-full);
  white-space: normal;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}
.footer-badge svg {
  color: var(--green);
  flex-shrink: 0;
}
.footer-badge:hover {
  color: var(--text-80);
  border-color: var(--bg-border-hover);
}

body[data-lang="en"] .footer-bottom p {
  letter-spacing: 0.01em;
}

body[data-lang="en"] .footer-badge {
  font-size: 0.71875rem;
  padding-inline: 9px;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  inset-inline-end: var(--space-8);
  width: 46px; height: 46px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-border);
  border-radius: 50%;
  color: var(--text-80);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
  z-index: 999;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,102,255,0.5);
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 120px 0 80px; }
  .logo-image { height: 46px; }
  .about-content { grid-template-columns: 1fr; gap: var(--space-12); }
  .about-text .section-title { text-align: center; }
  .about-text .section-eyebrow { justify-content: center; }
  .about-text .about-lead { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
  .about-features { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .about-feature { border-inline-end: none; border-bottom: 1px solid var(--bg-border); }
  .about-feature:last-child { border-bottom: none; }
  .stats-panel { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services, .portfolio, .about, .testimonials, .contact { padding: var(--space-24) 0; }
  .contact-content { grid-template-columns: 1fr; }
  .contact-2col { grid-template-columns: 1fr; gap: var(--space-10); }
  .contact-left-lead { max-width: 100%; }
  .contact-card:hover { transform: none; }
  .footer-content { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar .container { position: relative; }
  .logo-image { height: 40px; }
  .nav-menu {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(6,6,11,0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: var(--space-6);
    border-bottom: 1px solid var(--bg-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--duration-base) var(--ease-out);
    z-index: 999;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list {
    flex-direction: column;
    gap: var(--space-2);
  }
  .nav-link { padding: var(--space-3) var(--space-4); font-size: 1.0625rem; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-wrap: wrap; }
  .services, .portfolio, .about, .testimonials, .contact { padding: var(--space-20) 0; }
  .form-trust { flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item-large { grid-column: auto; }
  .portfolio-item-large .portfolio-image.portfolio-image-split { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-white { width: 100%; justify-content: center; }
  .hero-badge, .section-eyebrow { font-size: 0.6875rem; }
}

/* ── FORM SUCCESS STATE ── */
.contact-form.sent {
  pointer-events: none;
  opacity: 0.6;
  filter: blur(1px);
  transition: all 0.4s;
}

/* ── SMOOTH SECTION TRANSITIONS ── */
section {
  position: relative;
}

/* ── SELECTION COLORS ── */
::selection {
  background: rgba(0,102,255,0.3);
  color: var(--text-100);
}

/* ── SCROLLBAR STYLING ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.15);
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transition: background var(--duration-fast);
}
.sticky-mobile-cta:hover { background: #0055dd; }
.sticky-mobile-cta svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  .footer { padding-bottom: 60px; }
}

/* ── Security Quality Section ── */
.security-section {
  padding: var(--space-32) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.security-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(0,102,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.security-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 0.35;
  pointer-events: none;
}

/* Header — centered above grid */
.security-header {
  text-align: center;
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}
.security-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: var(--space-5);
}
.sec-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0,229,160,0.7);
  flex-shrink: 0;
  animation: sec-pulse 2s ease infinite;
}
@keyframes sec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.7); }
}
.sec-title-center { text-align: center; }
.sec-lead-center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats bar */
.security-stats-bar {
  display: flex;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}
.sec-stat {
  flex: 1;
  padding: var(--space-6) var(--space-5);
  text-align: center;
  border-inline-end: 1px solid var(--bg-border);
  transition: background var(--duration-slow) var(--ease-out);
}
.sec-stat:last-child { border-inline-end: none; }
.sec-stat:hover { background: rgba(255,255,255,0.025); }
.sec-stat-val {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-1);
}
.sec-stat-label {
  font-size: 0.75rem;
  color: var(--text-40);
  font-weight: 500;
}

/* Main grid */
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}
.security-text .section-eyebrow { text-align: start; }
.security-text .section-title   { text-align: start; }

/* Comparison pills */
.security-comparison {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}
.sec-comp-label {
  font-size: 0.8125rem;
  color: var(--text-40);
  white-space: nowrap;
  margin-inline-end: var(--space-1);
}
.sec-comp-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-60);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  transition: border-color var(--duration-fast), color var(--duration-fast);
}
.sec-comp-pill svg { color: var(--green); flex-shrink: 0; }
.sec-comp-pill:hover { border-color: rgba(0,229,160,0.25); color: var(--text-80); }

/* Badge panel upgrades */
.sec-badge-live-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.sec-badge-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-40);
  position: relative;
  z-index: 1;
}
.sec-badge-verified svg { color: var(--blue-light); }
.security-lead {
  font-size: 1.0625rem;
  color: var(--text-60);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}
.security-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.security-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--text-80);
}
.security-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,229,160,0.12);
  border: 1px solid rgba(0,229,160,0.25);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security-badge-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}
.security-badge-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  transition: border-color var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
}
.security-badge-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.security-badge-card:hover {
  border-color: rgba(0,102,255,0.2);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0,102,255,0.08);
}
.security-badge-card img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  display: block;
}
.security-badge-card a {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.security-badge-caption {
  font-size: 0.8125rem;
  color: var(--text-40);
  margin-top: var(--space-4);
  position: relative;
  z-index: 1;
}
.security-score-pills {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}
.security-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-80);
  font-weight: 500;
}
.security-pill svg { color: var(--green); }
.security-pill--blue svg { color: var(--blue-light); }
.security-pill--amber svg { color: var(--amber); }
.security-cta-row {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.security-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--blue-light);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-base), gap var(--duration-base);
}
.security-link:hover {
  color: var(--text-100);
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .security-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .security-badge-panel { order: -1; }
  .security-badge-card { max-width: 400px; margin: 0 auto; }
  .security-stats-bar { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .sec-stat { flex: 1 1 30%; border-bottom: 1px solid var(--bg-border); }
  .sec-stat:nth-child(n+4) { border-bottom: none; }
}
@media (max-width: 600px) {
  .security-metrics { grid-template-columns: 1fr 1fr; }
  .sec-stat { flex: 1 1 45%; }
  .security-header { padding: 0 var(--space-2); }
}

/* ── PRINT ── */
@media print {
  .header, .back-to-top, .hero-bg, .sticky-mobile-cta { display: none; }
  body { background: #fff; color: #000; }
}
