/* ===== DESIGN TOKENS ===== */
:root {
  --navy-900: #070e1a;
  --navy-800: #0a1628;
  --navy-700: #0f1f38;
  --navy-600: #162a4a;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #5ba4d9;
  --blue-200: #93c5fd;
  --blue-100: #c9e2ff;
  --cyan-400: #22d3ee;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--gray-200);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(91, 164, 217, 0.15);
  }

  50% {
    box-shadow: 0 0 40px rgba(91, 164, 217, 0.3);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(91, 164, 217, 0.1);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 64px;
  width: auto;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: all 0.3s var(--transition-smooth);
}

.nav-logo:hover .nav-logo-text {
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white) !important;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.45);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 26, 0.4) 0%, rgba(7, 14, 26, 0.85) 70%, var(--navy-900) 100%);
}

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

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--blue-300);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 6s infinite;
}

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

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  animation: slideInLeft 1s var(--transition-smooth) 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(91, 164, 217, 0.1);
  border: 1px solid rgba(91, 164, 217, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-300);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--gray-200);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--blue-400);
  color: var(--white);
  background: rgba(59, 130, 246, 0.08);
}

.hero-visual {
  animation: slideInRight 1s var(--transition-smooth) 0.5s both;
  display: flex;
  justify-content: center;
}

.hero-logo-showcase {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 164, 217, 0.12) 0%, transparent 70%);
  animation: pulse-glow 3s infinite;
}

.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(91, 164, 217, 0.15);
  animation: float 6s ease-in-out infinite;
}

.hero-logo-ring:nth-child(2) {
  inset: 20px;
  border-color: rgba(91, 164, 217, 0.1);
  animation-delay: -1s;
}

.hero-logo-ring:nth-child(3) {
  inset: 40px;
  border-color: rgba(91, 164, 217, 0.08);
  animation-delay: -2s;
}

.hero-logo-showcase img {
  width: 300px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(91, 164, 217, 0.2));
  animation: float 5s ease-in-out infinite;
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -50px;
  margin-bottom: 80px;
}

.stats-bar .container {
  background: rgba(15, 31, 56, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(91, 164, 217, 0.12);
  border-radius: 20px;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(91, 164, 217, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  position: relative;
}

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

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: rgba(15, 31, 56, 0.5);
  border: 1px solid rgba(91, 164, 217, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 164, 217, 0.2);
  background: rgba(15, 31, 56, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(91, 164, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(91, 164, 217, 0.2);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===== SHOWCASE (WHY US) ===== */
.showcase {
  padding: 100px 0;
  position: relative;
}

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

.showcase-image {
  position: relative;
}

.showcase-image img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.showcase-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400), var(--blue-500));
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  z-index: -1;
  opacity: 0.5;
}

.showcase-content .section-subtitle {
  margin-bottom: 36px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.feature-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  position: relative;
}

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

.process-header .section-subtitle {
  margin: 0 auto;
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--cyan-400), var(--blue-500), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
}

.cta-box {
  text-align: center;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(91, 164, 217, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

.cta-box .section-title {
  position: relative;
}

.cta-box .section-subtitle {
  margin: 0 auto 40px;
  position: relative;
}

.cta-box .btn-primary {
  position: relative;
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* ===== CONTACT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 14, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(165deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(91, 164, 217, 0.15);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--transition-smooth);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(91, 164, 217, 0.08);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-logo {
  width: 56px;
  height: auto;
  margin: 0 auto 16px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(15, 31, 56, 0.6);
  border: 1px solid rgba(91, 164, 217, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.modal-option:hover {
  background: rgba(91, 164, 217, 0.08);
  border-color: rgba(91, 164, 217, 0.2);
  transform: translateX(4px);
}

.modal-option.disabled {
  cursor: default;
  opacity: 0.5;
}

.modal-option.disabled:hover {
  background: rgba(15, 31, 56, 0.6);
  border-color: rgba(91, 164, 217, 0.08);
  transform: none;
}

.modal-option-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.modal-option:hover .modal-option-icon {
  transform: scale(1.1);
}

.modal-option.disabled:hover .modal-option-icon {
  transform: none;
}

.modal-option-icon.phone {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.modal-option-icon.email {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-400);
}

.modal-option-icon.instagram {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

.modal-option-icon.tiktok {
  background: rgba(148, 163, 184, 0.1);
  color: var(--gray-400);
}

.modal-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-option-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-option-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.modal-option-value.coming-soon {
  color: var(--gray-500);
  font-style: italic;
  font-weight: 400;
}

.modal-option-arrow {
  color: var(--gray-500);
  transition: all 0.3s;
}

.modal-option:hover .modal-option-arrow {
  color: var(--blue-300);
  transform: translateX(3px);
}

.modal-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--gray-500);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .modal {
    padding: 28px 20px;
  }

  .modal-option {
    padding: 14px 16px;
  }

  .modal-option-value {
    font-size: 0.9rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(91, 164, 217, 0.08);
}

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

.footer-brand img {
  height: 64px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(91, 164, 217, 0.06);
  font-size: 0.85rem;
  color: var(--gray-500);
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(91, 164, 217, 0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-left: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-showcase {
    width: 340px;
    height: 340px;
  }

  .hero-logo-showcase img {
    width: 220px;
  }

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

  .showcase .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-image {
    order: -1;
  }

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

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

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 40px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(91, 164, 217, 0.1);
  }

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

  .menu-toggle {
    display: flex;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-bar .container {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}