*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #1F5EFF;
  --blue-light: #4A80FF;
  --blue-glow: rgba(31, 94, 255, 0.3);
  --red: #FF2D2D;
  --red-glow: rgba(255, 45, 45, 0.3);
  --dark: #0B1B2B;
  --darker: #060F1A;
  --surface: rgba(15, 35, 55, 0.6);
  --surface-border: rgba(31, 94, 255, 0.15);
  --text: #E8EDF5;
  --text-dim: #7A8BA8;
  --accent-cyan: #00E5FF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 94, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 94, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── PARTICLE CANVAS ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(6, 15, 26, 0.8);
  border-bottom: 1px solid var(--surface-border);
  transition: all 0.3s;
}

nav.scrolled {
  background: rgba(6, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem !important;
  letter-spacing: 2px;
  transition: all 0.3s !important;
  box-shadow: 0 0 20px var(--red-glow);
}

.nav-cta:hover {
  background: #ff4545 !important;
  box-shadow: 0 0 30px rgba(255, 45, 45, 0.5) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--surface-border);
  color: var(--text-dim);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: -8px;
}

.lang-toggle:hover {
  border-color: var(--blue);
  color: var(--text);
  background: rgba(31, 94, 255, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 250;
  width: 30px;
  height: 24px;
  justify-content: center;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  left: 0;
}

.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
}

.hero-logo {
  height: 120px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  mix-blend-mode: lighten;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(31, 94, 255, 0.05);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--red-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 .line1 { color: var(--text); display: block; }
.hero h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .line3 {
  display: block;
  color: var(--red);
  position: relative;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 0 40px rgba(31, 94, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(31, 94, 255, 0.05);
  transform: translateY(-2px);
}

/* ── HERO GLOW ── */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.glow-blue {
  background: var(--blue);
  top: -100px;
  left: -200px;
  animation: float-slow 8s ease-in-out infinite;
}

.glow-red {
  background: var(--red);
  bottom: -100px;
  right: -200px;
  animation: float-slow 8s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--surface-border);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(31, 94, 255, 0.05); }

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.stat-number .red { color: var(--red); }

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.7;
}

/* ── PRODUCTS ── */
.products-section {
  background: linear-gradient(180deg, var(--darker) 0%, rgba(11, 27, 43, 0.5) 50%, var(--darker) 100%);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header .section-desc { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 48px 32px 40px;
  overflow: hidden;
  transition: all 0.4s;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.product-card:hover::before { transform: scaleX(1); }

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 94, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--blue-glow);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
}

.product-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.product-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.product-name a:hover { color: var(--blue-light); }

.product-card:nth-child(1) .product-icon {
  background: linear-gradient(135deg, rgba(31, 94, 255, 0.2), rgba(31, 94, 255, 0.05));
  border: 1px solid rgba(31, 94, 255, 0.3);
  color: var(--blue);
}

.product-card:nth-child(2) .product-icon {
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.2), rgba(255, 45, 45, 0.05));
  border: 1px solid rgba(255, 45, 45, 0.3);
  color: var(--red);
}

.product-card:nth-child(3) .product-icon {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan);
}

.product-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-desc {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.product-features li::before {
  content: '▸';
  color: var(--blue);
  font-weight: 700;
}

/* ── WHY SECURX ── */
.why-section {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.containment-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  position: relative;
  animation: rotate-slow 20s linear infinite;
  box-shadow: 0 0 40px var(--blue-glow), inset 0 0 40px var(--blue-glow);
}

.containment-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 45, 45, 0.4);
  animation: rotate-slow 15s linear infinite reverse;
}

.containment-ring::after {
  content: 'X';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 30px var(--red-glow);
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
}

.orbit-dot:nth-child(1) { top: -4px; left: 50%; }
.orbit-dot:nth-child(2) { bottom: -4px; left: 50%; }
.orbit-dot:nth-child(3) { top: 50%; right: -4px; }
.orbit-dot:nth-child(4) { top: 50%; left: -4px; }

.why-content { }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  min-width: 32px;
}

.why-point-text h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── APPROACH SECTION ── */
.approach-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.approach-header {
  text-align: center;
  margin-bottom: 64px;
}

.approach-header .section-desc { margin: 0 auto; }

.approach-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.approach-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--red), var(--blue));
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
}

.timeline-step:nth-child(odd) { flex-direction: row; }
.timeline-step:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  width: 42%;
  padding: 28px;
  background: rgba(9, 22, 36, 0.92);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.timeline-content:hover {
  border-color: rgba(31, 94, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--darker);
  box-shadow: 0 0 15px var(--blue-glow);
  z-index: 2;
}

.timeline-step:nth-child(even) .timeline-dot { background: var(--red); box-shadow: 0 0 15px var(--red-glow); }

.timeline-content h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.timeline-step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(31, 94, 255, 0.08);
  width: 42%;
  text-align: center;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--dark);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-info .section-desc {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(31, 94, 255, 0.1);
  border: 1px solid rgba(31, 94, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.contact-item-value a {
  color: var(--blue-light);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--blue); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(6, 15, 26, 0.8);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 15px var(--blue-glow);
}

.form-group select option { background: var(--dark); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--red-glow);
}

.form-submit:hover {
  background: #ff4545;
  box-shadow: 0 0 30px rgba(255, 45, 45, 0.5);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--surface-border);
  background: var(--darker);
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 128px;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-text .rd { color: var(--blue-light); }

.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── PARTNER BAR ── */
.partner-bar {
  position: relative;
  z-index: 1;
  padding: 40px 40px;
  background: rgba(15, 35, 55, 0.4);
  border-top: 1px solid var(--surface-border);
}

.partner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.partner-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.partner-logo {
  height: 144px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s;
}

.partner-logo:hover { filter: brightness(1.1); }

/* ── FORM TOAST ── */
.form-toast {
  margin-top: 12px;
  padding: 0;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s;
}

.form-toast.success {
  max-height: 60px;
  opacity: 1;
  padding: 12px;
  background: rgba(0, 214, 126, 0.1);
  border: 1px solid rgba(0, 214, 126, 0.3);
  color: #00d67e;
}

.form-toast.error {
  max-height: 60px;
  opacity: 1;
  padding: 12px;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.3);
  color: var(--red);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GLITCH TEXT ── */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--blue);
  animation: glitch-1 3s infinite;
  clip-path: inset(0 0 80% 0);
}

.glitch::after {
  color: var(--red);
  animation: glitch-2 3s infinite;
  clip-path: inset(80% 0 0 0);
}

@keyframes glitch-1 {
  0%, 94%, 100% { transform: translate(0); }
  95% { transform: translate(-3px, 1px); }
  96% { transform: translate(3px, -1px); }
}

@keyframes glitch-2 {
  0%, 94%, 100% { transform: translate(0); }
  95% { transform: translate(3px, 1px); }
  97% { transform: translate(-3px, -1px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 300px; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { 
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 15, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    backdrop-filter: blur(20px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 8px;
    padding: 14px 32px !important;
    font-size: 1rem !important;
  }
  .hamburger { display: flex; z-index: 250; }
  .lang-toggle { margin-left: 0; margin-right: 12px; }

  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .timeline-step,
  .timeline-step:nth-child(even) { flex-direction: column; text-align: center; }
  .approach-timeline::before { left: 20px; }
  .timeline-content { width: 100%; margin-left: 40px; }
  .timeline-dot { left: 20px; }
  .timeline-step-num { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .partner-inner { flex-direction: column; gap: 12px; }
  .captcha-row { flex-direction: column; align-items: stretch; }
  .captcha-box { justify-content: space-between; }
}

/* ── CAPTCHA ── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.captcha-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-img {
  height: 52px;
  width: 150px;
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  background: var(--darker);
  display: block;
  flex-shrink: 0;
}

.captcha-reload {
  background: rgba(31, 94, 255, 0.1);
  border: 1px solid var(--surface-border);
  color: var(--blue-light);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.3s;
  flex-shrink: 0;
}

.captcha-reload:hover {
  border-color: var(--blue);
  background: rgba(31, 94, 255, 0.2);
  transform: rotate(90deg);
}

.captcha-input { flex: 1; min-width: 120px; }
