/* ========================================
   CODESHELL LLC — Main Stylesheet v2
   ======================================== */

:root {
  --bg-dark: #050a14;
  --bg-card: #0a1628;
  --bg-card2: #0d1e38;
  --accent: #00d4ff;
  --accent2: #0066ff;
  --accent3: #7c3aed;
  --green: #00ff88;
  --text: #e8f0fe;
  --text-muted: #7a9bc4;
  --border: rgba(0, 212, 255, 0.15);
  --border-hover: rgba(0, 212, 255, 0.5);
  --glow: 0 0 30px rgba(0, 212, 255, 0.25);
  --glow-strong: 0 0 60px rgba(0, 212, 255, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Spinner for form submit loading */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ——— UTILITIES ——— */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 102, 255, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0, 212, 255, 0.4);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.btn-glow {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

em {
  font-style: normal;
  color: var(--accent);
}

.section-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ——— NAVBAR ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 10, 20, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-bracket {
  color: var(--accent);
}

.logo-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: var(--accent);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.lang-toggle {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--accent);
}

.lang-sep {
  opacity: 0.3;
}

.lang-en,
.lang-fr {
  transition: color 0.2s;
  opacity: 0.45;
}

.lang-en.active,
.lang-fr.active {
  color: var(--accent);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Background stays inside hero with absolute, NOT fixed */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 102, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #050a14 0%, #070e1e 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 255, 136, 0.1)
  }
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slide-up 0.7s ease forwards;
}

.line-1 {
  animation-delay: 0.1s;
}

.line-2 {
  animation-delay: 0.28s;
}

.line-3 {
  animation-delay: 0.46s;
}

@keyframes slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-mono);
  line-height: 1;
}

.stat-unit {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
  line-height: 1.3;
}

/* Terminal */
.hero-terminal {
  background: rgba(5, 10, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--glow-strong), 0 40px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: float-terminal 6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes float-terminal {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.terminal-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 2.1;
  min-height: 200px;
}

.t-prompt {
  color: var(--accent);
  margin-right: 8px;
}

.t-cmd {
  color: #fff;
}

.t-output {
  color: var(--text-muted);
  padding-left: 20px;
}

.t-green {
  color: var(--green);
  font-weight: 700;
}

.t-blink {
  animation: blink 1s step-end infinite;
}

/* ——— TICKER ——— */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 212, 255, 0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 35s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.sep {
  color: var(--accent);
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ——— SERVICES ——— */
.services {
  padding: 110px 0;
  position: relative;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s ease;
  cursor: default;
}

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

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

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.service-tags li {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-family: var(--font-mono);
  font-weight: 600;
}

/* ——— ABOUT ——— */
.about {
  padding: 110px 0;
  background: linear-gradient(180deg, #060c1a 0%, #070e1e 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--glow-strong);
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.badge-icon {
  font-size: 2rem;
}

.about-badge-float strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.about-badge-float small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.about-text .section-tag {
  margin-bottom: 14px;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.25;
}

.about-text>p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 30px 0 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: all 0.3s;
}

.pillar:hover {
  border-color: var(--border-hover);
  background: rgba(0, 212, 255, 0.04);
}

.pillar-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.pillar small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ——— WHY US ——— */
.why-us {
  padding: 110px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.why-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 18px;
  transition: opacity 0.3s;
}

.why-card:hover .why-num {
  opacity: 1;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ——— PROCESS ——— */
.process {
  padding: 110px 0;
  background: linear-gradient(180deg, #070e1e 0%, var(--bg-dark) 100%);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent3), transparent);
  opacity: 0.3;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 14%;
  width: 72%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent3));
  opacity: 0.25;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35), 0 0 0 6px rgba(0, 212, 255, 0.1);
  color: #fff;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ——— TESTIMONIALS ——— */
.testimonials {
  padding: 110px 0;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.quote-icon {
  font-size: 1rem;
  color: var(--accent);
  opacity: 1;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 1px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: normal;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.t-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.t-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ——— CTA BAND ——— */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ——— CONTACT ——— */
.contact {
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 155, 196, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.form-group select option {
  background: #0a1628;
  color: var(--text);
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 4px;
}

.form-success.show {
  display: flex;
}

.form-success p {
  color: var(--green);
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-header {
  margin-bottom: 12px;
}

.contact-info-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-info-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: all 0.3s;
}

.info-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  box-shadow: var(--glow);
}

.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card a,
.info-card p {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.info-card a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  padding-top: 6px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: all 0.3s;
}

.social-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

/* ——— FOOTER ——— */
.footer {
  background: #03070f;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand>p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h5 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ——— SCROLL FADE-IN ——— */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-top .footer-col:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-terminal {
    max-width: 500px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 24px;
    gap: 16px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn-glow {
    display: none;
  }

  .lang-toggle {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 9vw, 3.5rem);
  }

  .hero-badge {
    margin-bottom: 24px;
    padding: 8px 16px;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: rgba(5, 10, 20, 0.99);
    backdrop-filter: blur(20px);
    padding: 16px;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 540px) {
  .nav-container {
    padding: 0 18px;
    gap: 12px;
  }

  .logo {
    font-size: 1rem;
  }

  .lang-toggle {
    padding: 6px 10px;
    gap: 4px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 112px 20px 72px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 8px 14px;
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .contact-form {
    padding: 28px 22px;
  }

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

  .cta-band-btns {
    flex-direction: column;
    align-items: center;
  }
}
