/* ========================================
   VIXION 593 — Main Stylesheet
   Colors: #1d71b8 (blue), #ec6615 (orange), #1d1d1b (dark)
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2277ee;
  --blue-light: #3d8fff;
  --blue-dark: #1555bb;
  --orange: #ee6611;
  --orange-light: #ff7c28;
  --dark: #0e0e0e;
  --dark-2: #111111;
  --dark-3: #080808;
  --dark-card: #141414;
  --dark-card2: #1e1e1e;
  --text: #e8e8e6;
  --text-muted: #9a9a96;
  --border: rgba(255, 255, 255, 0.07);
  --glow-blue: rgba(34, 119, 238, 0.4);
  --glow-orange: rgba(238, 102, 17, 0.4);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark-3);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-3);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ---- SELECTION ---- */
::selection {
  background: var(--blue);
  color: white;
}

/* ========================================
   TOPBAR
   ======================================== */
.topbar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 1000;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.topbar-left a {
  color: var(--blue-light);
  transition: color var(--transition);
}

.topbar-left a:hover {
  color: var(--orange);
}

.topbar-icon {
  font-size: 14px;
}

.topbar-sep {
  opacity: 0.3;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

.social-link:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(10, 10, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 9, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(29, 113, 184, 0.5));
  transition: filter var(--transition);
}

.logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(236, 102, 21, 0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after {
  width: calc(100% - 32px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: white !important;
  font-weight: 600 !important;
  border: 1px solid rgba(29, 113, 184, 0.5) !important;
  padding: 9px 20px !important;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--orange), #c4510d) !important;
  border-color: var(--orange) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px var(--glow-orange) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 113, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 113, 184, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -200px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

.particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 0 calc((100vw - 1200px)/2);
  padding-left: 24px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 113, 184, 0.15);
  border: 1px solid rgba(29, 113, 184, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #c4510d);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(236, 102, 21, 0.35);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236, 102, 21, 0.5);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover {
  background: rgba(29, 113, 184, 0.2);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(236, 102, 21, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(29, 113, 184, 0.5);
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: -4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- HERO VISUAL ---- */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.shield-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotate 20s linear infinite;
}

.shield-ring-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(34, 119, 238, 0.3);
  animation-duration: 20s;
}

.shield-ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(238, 102, 17, 0.25);
  animation-direction: reverse;
  animation-duration: 15s;
}

.shield-ring-3 {
  width: 140px;
  height: 140px;
  border-color: rgba(34, 119, 238, 0.2);
  animation-duration: 10s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.shield-core {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 119, 238, 0.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 119, 238, 0.3);
  box-shadow: 0 0 40px rgba(34, 119, 238, 0.3), 0 0 80px rgba(238, 102, 17, 0.1);
  animation: pulseShadow 3s ease-in-out infinite;
}

.shield-svg {
  width: 70px;
  height: 70px;
}

@keyframes pulseShadow {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(34, 119, 238, 0.3), 0 0 80px rgba(238, 102, 17, 0.1);
  }

  50% {
    box-shadow: 0 0 60px rgba(34, 119, 238, 0.5), 0 0 120px rgba(238, 102, 17, 0.2);
  }
}

.orbit-item {
  position: absolute;
  width: 38px;
  height: 38px;
  background: rgba(26, 26, 24, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: orbitFloat 4s ease-in-out infinite;
}

.orbit-item svg {
  width: 20px;
  height: 20px;
}

.orbit-1 {
  top: 0;
  right: 20px;
  animation-delay: 0s;
}

.orbit-2 {
  bottom: 10px;
  right: 0;
  animation-delay: -1s;
}

.orbit-3 {
  bottom: 0;
  left: 20px;
  animation-delay: -2s;
}

.orbit-4 {
  top: 10px;
  left: 0;
  animation-delay: -3s;
}

@keyframes orbitFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  border-radius: 1px;
  animation: scrollAnim 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ========================================
   VALUES STRIP
   ======================================== */
.values-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  overflow: hidden;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}

.value-pill:hover {
  color: var(--text);
}

.v-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.v-icon svg {
  width: 100%;
  height: 100%;
}

.value-sep {
  color: rgba(255, 255, 255, 0.1);
  font-size: 18px;
}

/* ========================================
   SECTIONS BASE
   ======================================== */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--dark-2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(236, 102, 21, 0.1);
  border: 1px solid rgba(236, 102, 21, 0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 113, 184, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(29, 113, 184, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(29, 113, 184, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(236, 102, 21, 0.4);
  background: linear-gradient(145deg, rgba(236, 102, 21, 0.08), var(--dark-card));
}

.service-card.featured:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(220, 85, 10, 0.25);
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 113, 184, 0.15) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  transition: all var(--transition);
  pointer-events: none;
}

.service-card:hover .card-glow {
  background: radial-gradient(circle, rgba(29, 113, 184, 0.25) 0%, transparent 70%);
}

.service-card.featured .card-glow {
  background: radial-gradient(circle, rgba(236, 102, 21, 0.2) 0%, transparent 70%);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(236, 102, 21, 0.15);
  border: 1px solid rgba(236, 102, 21, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-features {
  margin-bottom: 20px;
}

.card-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.service-card:hover .card-features li {
  color: var(--text);
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* ========================================
   ABOUT / NOSOTROS
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-description strong {
  color: var(--orange);
}

.mission-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--transition);
}

.mission-block:hover {
  border-color: rgba(29, 113, 184, 0.3);
  background: rgba(29, 113, 184, 0.05);
}

.mission-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-block h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  font-size: 1rem;
}

.mission-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.val-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.val-item:hover {
  border-color: rgba(236, 102, 21, 0.3);
  background: rgba(236, 102, 21, 0.05);
}

.val-icon {
  font-size: 20px;
}

.val-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.val-item small {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---- About Visual ---- */
.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(29, 113, 184, 0.08) 60deg, transparent 120deg);
  animation: rotate 10s linear infinite;
}

.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.about-logo {
  width: 200px;
  filter: drop-shadow(0 0 20px rgba(29, 113, 184, 0.4));
}

.about-badge-row {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.about-badge {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 10px;
  text-align: center;
}

.ab-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge span:last-child {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-float-1,
.about-float-2 {
  position: absolute;
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: orbitFloat 4s ease-in-out infinite;
  white-space: nowrap;
}

.about-float-1 {
  top: -20px;
  left: -20px;
  animation-delay: -1s;
}

.about-float-2 {
  bottom: -10px;
  right: -20px;
  animation-delay: -2s;
}

/* ========================================
   BENEFITS
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-item {
  padding: 32px 24px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 113, 184, 0.3);
}

.benefit-item:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: color var(--transition);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.benefit-item:hover .benefit-icon {
  color: var(--orange);
}

.benefit-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 113, 184, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-img {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(29, 113, 184, 0.1) 0%, transparent 70%);
}

.product-img-inner {
  width: 100%;
  max-width: 90px;
  transition: transform var(--transition);
  position: relative;
  z-index: 1;
}

.product-card:hover .product-img-inner {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 6px;
  display: block;
}

.product-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
  position: relative;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  overflow: hidden;
}

.cta-glow-1,
.cta-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  top: -150px;
  left: -100px;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  bottom: -100px;
  right: -50px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-text p strong {
  color: var(--orange);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--transition);
}

a.contact-item:hover {
  border-color: rgba(29, 113, 184, 0.4);
  transform: translateX(4px);
}

.contact-item-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 113, 184, 0.1);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  color: white;
  font-size: 14px;
}

.contact-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- FORM ---- */
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--transition);
  resize: vertical;
  outline: none;
}

.form-group select option {
  background: var(--dark-card);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(29, 113, 184, 0.07);
  box-shadow: 0 0 0 3px rgba(29, 113, 184, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 154, 150, 0.5);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark-3);
}

.footer-top {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(29, 113, 184, 0.3));
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col span {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--transition);
  display: block;
}

.footer-col a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--blue-light);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all var(--transition);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
  }

  .hero-content {
    margin: 0;
    padding: 0;
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 300px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ========================================
   SPLASH SCREEN
   ======================================== */
#splash {
  position: fixed;
  inset: 0;
  background: var(--dark-3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: min(380px, 80vw);
  filter: drop-shadow(0 0 40px rgba(34, 119, 238, 0.7)) drop-shadow(0 0 80px rgba(238, 102, 17, 0.4));
  animation: splashPulse 1.5s ease-in-out infinite alternate;
}

@keyframes splashPulse {
  from {
    filter: drop-shadow(0 0 30px rgba(34, 119, 238, 0.5)) drop-shadow(0 0 60px rgba(238, 102, 17, 0.2));
    transform: scale(0.97);
  }

  to {
    filter: drop-shadow(0 0 60px rgba(34, 119, 238, 0.9)) drop-shadow(0 0 100px rgba(238, 102, 17, 0.5));
    transform: scale(1.03);
  }
}

.splash-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.splash-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 2px;
  animation: splashLoad 1.8s ease-out forwards;
}

@keyframes splashLoad {
  0% {
    width: 0%;
  }

  60% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

.splash-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NAV BRAND NAME */
.nav-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  /* background: linear-gradient(135deg, var(--blue-light), var(--orange)); */
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  color: var(--text);
  background-clip: text;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    gap: 40px;
    overflow-y: auto;
    height: calc(100vh - 70px);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links a {
    display: block;
    padding: 20px 32px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-muted);
    border-radius: var(--r-md);
    width: 100%;
    max-width: 300px;
    transition: all var(--transition);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(34, 119, 238, 0.12);
    color: var(--blue-light);
  }

  /* Override nav-cta inside mobile menu */
  .nav-links .nav-cta {
    margin-top: 40px !important;
    padding: 18px 48px !important;
    font-size: 1.2rem !important;
    text-transform: none;
    letter-spacing: 0;
    width: 100%;
    max-width: 300px;
    text-align: center !important;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-badge {
    font-size: 12px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-top {
    padding: 40px 24px;
  }
}