/* ============================================
   XIAVION TECH - PREMIUM CORPORATE DESIGN
   Minimal · Black · Clean · Professional
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --black: #000000;
  --dark-bg: #000000;
  --dark-surface: #0A0E27;
  --dark-card: #0d1117;
  --dark-card-border: #1b1f2e;
  --deep-navy: #0A0E27;

  --purple: #8B5CF6;
  --purple-dark: #7c3aed;
  --blue: #3B82F6;
  --gradient-accent: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);

  --white: #FFFFFF;
  --text-primary: #F9FAFB;
  --text-secondary: #E5E7EB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --section-padding: 120px;
  --container-width: 1200px;
  --nav-height: 72px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo .logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.loading-logo-img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  height: 60px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: none;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--purple);
  transition: width var(--transition-base);
}

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

.nav-links a.active {
  color: var(--white);
  font-weight: 500;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--purple);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--text-secondary);
}

.nav-cta {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
  transition: right var(--transition-slow);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-base);
  transform: translateX(30px);
  opacity: 0;
}

.mobile-menu.active a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu a:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu a:nth-child(6) {
  transition-delay: 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--white);
}

.mobile-lang-switcher {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow) 0.35s;
}

.mobile-menu.active .mobile-lang-switcher {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title .gradient-text {
  color: var(--purple);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--black);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
  filter: brightness(0.4) saturate(1.2);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.9) 100%);
  z-index: 0;
}

.hero-gradient-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(-45deg,
      #000000 0%,
      #0A0E27 25%,
      #1E1B4B 50%,
      #0A0E27 75%,
      #000000 100%);
  background-size: 400% 400%;
  animation: heroGradientShift 15s ease infinite;
  opacity: 0.4;
}

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

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

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: orbFloat 15s ease-in-out infinite;
  z-index: 1;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: #1E1B4B;
  top: -15%;
  left: -5%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: #1E3A8A;
  bottom: -15%;
  right: -5%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: #312e81;
  top: 50%;
  left: 60%;
  animation-delay: -3s;
}

@keyframes orbFloat {

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

  33% {
    transform: translate(20px, -30px);
  }

  66% {
    transform: translate(-15px, 15px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-intro-image-wrapper {
  margin-bottom: 28px;
}

.hero-intro-image {
  max-height: 300px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.25));
  animation: introFloat 4s ease-in-out infinite;
}

@keyframes introFloat {

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

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

@media (max-width: 768px) {
  .hero-intro-image {
    max-height: 100px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title .typing-text {
  display: inline;
  color: var(--text-secondary);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  background: var(--purple);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--text-dim);
  border-bottom: 1.5px solid var(--text-dim);
  transform: rotate(45deg);
}

@keyframes scrollBounce {

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-glow::before {
  display: none;
}

.glass-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

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

.service-card {
  padding: 40px 28px;
  text-align: left;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-base);
}

.service-link:hover {
  gap: 8px;
}

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

.about-preview-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--white);
}

.about-preview-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.about-visual-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.about-visual-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-duration: 30s;
}

.about-visual-ring:nth-child(2) {
  width: 75%;
  height: 75%;
  animation-direction: reverse;
  animation-duration: 22s;
}

.about-visual-ring:nth-child(3) {
  width: 50%;
  height: 50%;
  animation-duration: 18s;
}

.about-visual-ring .ring-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  opacity: 0.6;
}

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

.about-visual-center {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  z-index: 1;
  letter-spacing: -2px;
}

.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: var(--deep-navy);
}

.cta-bg {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--white);
}

.cta-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-card {
  text-align: center;
  padding: 36px 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
}

.stat-number {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  text-align: center;
  background: var(--black);
}

.about-story {
  max-width: 720px;
  margin: 0 auto;
}

.about-story p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-story .highlight {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.value-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.value-card .value-number {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline {
  position: relative;
  max-width: 640px;
  margin: 48px auto 0;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 44px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--purple);
  border-radius: 50%;
}

.timeline-year {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.service-full:nth-child(even) {
  direction: rtl;
}

.service-full:nth-child(even)>* {
  direction: ltr;
}

.service-full-info h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--white);
}

.service-full-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition-base);
}

.feature-item:hover {
  border-color: var(--border-light);
}

.feature-check {
  color: var(--purple);
  font-size: 14px;
  flex-shrink: 0;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.service-visual-card {
  width: 75%;
  aspect-ratio: 4/3;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.service-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.shimmer-decoration {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(139, 92, 246, 0.05) 50%,
      transparent 70%);
  animation: shimmerMove 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-100%) rotate(0deg);
  }

  100% {
    transform: translateX(100%) rotate(0deg);
  }
}

.service-visual-card::after {
  display: none;
}

.coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: var(--black);
}

.coming-soon-icon {
  font-size: 64px;
  margin-bottom: 28px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.coming-soon h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
  color: var(--white);
}

.coming-soon p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.coming-soon .btn {
  margin-top: 20px;
}

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

.blog-card-placeholder {
  aspect-ratio: 16/9;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  padding: 40px;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--dark-card);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.form-message {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

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

.contact-info-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.contact-info-card p {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-info-card a {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

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

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.social-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer {
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: none;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color var(--transition-base);
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-base);
}

.newsletter-input:focus {
  border-color: var(--purple);
}

.newsletter-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--purple-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom .made-with {
  font-size: 12px;
  color: var(--text-dim);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-label {
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  transition: transform var(--transition-base);
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.page-transition {
  animation: pageIn 0.3s ease-out;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gradient-divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --nav-height: 64px;
  }

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

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

  .about-preview {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .service-full {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-full:nth-child(even) {
    direction: ltr;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --nav-height: 60px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

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

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-scroll-indicator {
    display: none;
  }

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

@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .stat-card {
    padding: 20px 10px;
  }

  .section-header {
    margin-bottom: 36px;
  }
}

.text-center {
  text-align: center;
}

.text-gradient {
  color: var(--purple);
}

.gradient-text {
  color: var(--purple);
}

.mb-0 {
  margin-bottom: 0;
}

.section-dark {
  background: var(--deep-navy);
}

.mesh-bg {
  background: var(--black);
}