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

:root {
  --bg: #09090b;
  --bg-card: #111113;
  --bg-card-hover: #18181b;
  --border: #27272a;
  --border-hover: #3f3f46;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  --gradient-text: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, .3), 0 2px 4px -2px rgba(0, 0, 0, .2);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, .5);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-ka: 'Noto Sans Georgian', 'Inter', system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html[lang="ka"] body {
  font-family: var(--font-ka);
}

html[lang="en"] body {
  font-family: var(--font);
}

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

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

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

strong {
  color: var(--text);
  font-weight: 600;
}


/* Georgian mobile text fixes */
html[lang="ka"] * {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, .8);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

/* ===== WAU LOGO ===== */
.wau-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px 10px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.wau-logo .logo-code-rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  border-radius: 8px;
}

.wau-w {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: #a8b4d4;
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 8px rgba(168, 180, 212, 0.4),
    0 0 16px rgba(168, 180, 212, 0.2);
}

.wau-au {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: #2d8cf0;
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 10px rgba(45, 140, 240, 0.5),
    0 0 20px rgba(45, 140, 240, 0.3),
    0 0 40px rgba(45, 140, 240, 0.15);
}

.wau-logo--footer .wau-w,
.wau-logo--footer .wau-au {
  font-size: 1.8rem;
}

.wau-logo:hover .wau-w {
  text-shadow:
    0 0 12px rgba(168, 180, 212, 0.6),
    0 0 24px rgba(168, 180, 212, 0.3);
}

.wau-logo:hover .wau-au {
  text-shadow:
    0 0 14px rgba(45, 140, 240, 0.7),
    0 0 28px rgba(45, 140, 240, 0.4),
    0 0 50px rgba(45, 140, 240, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

.nav-cta {
  background: var(--gradient) !important;
  color: var(--text) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-left: 8px;
}

.lang-btn {
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: .05em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  color: var(--text-dim);
  background: transparent;
  transition: all .25s ease;
}

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

.lang-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, .4);
}

.btn-secondary {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  border: 1px solid var(--border);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid var(--primary);
  padding: 12px 24px;
}

.btn-outline:hover {
  background: rgba(99, 102, 241, .1);
  transform: translateY(-2px);
}

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

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(99, 102, 241, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 102, 241, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .4;
  pointer-events: none;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -50px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

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

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

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: 100px;
  font-size: .85rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 32px;
}

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

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

html[lang="ka"] .hero-title {
  font-family: var(--font-ka);
}

.hero-gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 4px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-title-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 5%;
}

.hero-subtitle-bottom {
  margin-top: 64px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #e4e4e7;
  text-shadow: 0 0 6px rgba(255, 255, 255, .18), 0 0 18px rgba(255, 255, 255, .08), 0 0 40px rgba(255, 255, 255, .04);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: .8rem;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: .3;
    height: 40px;
  }

  50% {
    opacity: 1;
    height: 60px;
  }
}


/* ===== HERO TITLE ANIMATION ===== */
.hero-line {
  display: inline-block;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-line-1 {
  align-self: flex-start;
  animation-name: wrapReveal1;
  animation-delay: 0.1s;
}

.hero-line-2 {
  align-self: center;
  animation-name: wrapReveal2;
  animation-delay: 0.25s;
  line-height: 1.3;
  padding-bottom: 4px;
}

.hero-line-3 {
  align-self: flex-end;
  padding-right: 5%;
  animation-name: wrapReveal3;
  animation-delay: 0.4s;
}

@keyframes wrapReveal1 {
  0% {
    opacity: 0;
    transform: translateX(-80px) rotate(-2deg);
    filter: blur(0);
  }

  60% {
    opacity: 1;
    transform: translateX(8px) rotate(0.5deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes wrapReveal2 {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    filter: blur(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px) scale(1.04);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes wrapReveal3 {
  0% {
    opacity: 0;
    transform: translateX(80px) rotate(2deg);
    filter: blur(0);
  }

  60% {
    opacity: 1;
    transform: translateX(-8px) rotate(-0.5deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
    filter: blur(0);
  }
}

/* Shimmer on gradient text */
.hero-gradient-text {
  background-size: 200% 200%;
  animation: wrapReveal2 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards, shimmer 4s ease-in-out 2s infinite;
}

@keyframes shimmer {

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

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

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .15);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

html[lang="ka"] .section-title {
  font-family: var(--font-ka);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 16px;
}


/* ===== CODE SYSTEM BACKGROUND ===== */
.code-bg-wrapper {
  position: relative;
  overflow: hidden;
}

.code-system-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.code-bg-wrapper .section {
  position: relative;
  z-index: 1;
}

.code-bg-wrapper .section .container {
  position: relative;
  z-index: 1;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-lead {
  font-size: 1.2rem !important;
  color: var(--text) !important;
  font-weight: 500;
}

.about-quote {
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  margin-top: 24px;
  background: rgba(99, 102, 241, .05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-feature h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PORTFOLIO MOCKUPS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.project-preview {
  padding: 24px 24px 0;
}

.project-mockup {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1e1e22;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #eab308;
}

.dot.green {
  background: #22c55e;
}

.mockup-url {
  margin-left: 10px;
  font-size: .7rem;
  color: var(--text-dim);
  font-family: monospace;
}

.mockup-content {
  padding: 16px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.mock-logo {
  font-weight: 700;
  font-size: .85rem;
}

.mock-links {
  display: flex;
  gap: 8px;
}

.mock-links span {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .15);
}

.mock-hero-img {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mock-food-icon {
  font-size: 2.5rem;
}

.mock-heading {
  font-family: inherit;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 10px;
}

.mock-btn {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 600;
  display: inline-block;
}

.restaurant-content {
  background: linear-gradient(135deg, #1a0f0a, #2d1810);
  color: #ffd4a8;
}

.restaurant-hero {
  background: linear-gradient(135deg, rgba(255, 165, 0, .15), rgba(180, 80, 20, .15));
}

.mock-btn {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: white;
}

.salon-content {
  background: linear-gradient(135deg, #1a0f18, #2d1028);
  color: #f9c8e8;
}

.salon-hero {
  background: linear-gradient(135deg, rgba(236, 72, 153, .15), rgba(168, 85, 247, .15));
}

.salon-btn {
  background: linear-gradient(135deg, #ec4899, #a855f7) !important;
  color: white !important;
}

.eco-content {
  background: linear-gradient(135deg, #0a1a0f, #102d18);
  color: #a8ffc8;
}

.eco-hero {
  background: linear-gradient(135deg, rgba(34, 197, 94, .15), rgba(16, 185, 129, .15));
}

.eco-btn {
  background: linear-gradient(135deg, #22c55e, #10b981) !important;
  color: white !important;
}

.project-info {
  padding: 20px 24px 24px;
}

.project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, .1);
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.project-info h3 {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-info p {
  font-size: .875rem;
  color: var(--text-muted);
}

.projects-cta {
  text-align: center;
  margin-top: 48px;
}

.coming-soon {
  color: var(--text-dim);
  font-size: .95rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

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

.service-icon {
  color: var(--primary-light);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-highlight {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.pricing-card {
  text-align: center;
  padding: 40px 60px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(99, 102, 241, .1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.pricing-label {
  font-size: .85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount span {
  font-size: 1.5rem;
}

.pricing-note {
  color: var(--text-dim);
  font-size: .9rem;
  margin-top: 8px;
}

/* ===== WHY US ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(99, 102, 241, .08);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: .875rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c14 100%);
  position: relative;
}

.contact-wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 8%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0.3) 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 8%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0.3) 92%, transparent 100%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

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

.contact-info .section-title {
  text-align: left;
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 20px 0 8px;
}

.contact-free {
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: .95rem;
  color: var(--text-muted);
}

.contact-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  color: var(--text);
}

.contact-icon {
  font-size: 1.3rem;
}

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

.contact-form h3 {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717a' stroke-width='2'%3e%3cpath d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

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

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

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

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

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s ease;
  position: relative;
}

.process-step:hover {
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 0 30px rgba(99, 102, 241, .08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content h3 {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-icon {
  font-size: 2rem;
  margin-left: auto;
  flex-shrink: 0;
  opacity: .7;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, .06);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-chevron {
  transition: transform .3s ease;
  flex-shrink: 0;
  color: var(--text-dim);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: all .3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .55), 0 0 0 12px rgba(37, 211, 102, .08);
  }
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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

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

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

  .hero-stats {
    margin-bottom: 20px;
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

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

  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

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

  .section {
    padding: 80px 0;
  }

  .lang-switch {
    margin-left: 0;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .process-step {
    padding: 24px;
    gap: 16px;
  }

  .step-number {
    font-size: 2rem;
    min-width: 40px;
  }

  .step-icon {
    display: none;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: .95rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

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

  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .section-desc {
    font-size: .9rem;
    margin-top: 10px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 4px;
  }

  .hero-badge {
    font-size: .75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: .9rem;
    margin: 0 auto 28px;
    padding: 0 8px;
    line-height: 1.6;
  }

  .hero-subtitle-bottom {
    margin-top: 32px;
  }

  .hero-title-left {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .hero-line-3 {
    padding-right: 0;
  }

  .about-text p {
    font-size: .92rem;
  }

  .about-lead {
    font-size: 1rem !important;
  }

  .about-quote {
    font-size: .95rem;
    padding: 16px 18px;
  }

  .service-card h3 {
    font-size: .95rem;
  }

  .service-card p {
    font-size: .85rem;
  }

  .benefit-card h3 {
    font-size: .9rem;
  }

  .benefit-card p {
    font-size: .82rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: .85rem;
  }

  .contact-lead {
    font-size: .92rem;
  }

  .contact-free {
    font-size: .9rem;
  }

  .contact-form h3 {
    font-size: 1.1rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
    font-size: .85rem;
  }

  .footer-brand p {
    font-size: .85rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .hero-stats {
    margin-bottom: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: .85rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: .7rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: .85rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 90px 16px 50px;
    min-height: auto;
  }

  .container {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: .95rem;
  }

  .process-step {
    padding: 18px 16px;
    gap: 12px;
  }

  .step-number {
    font-size: 1.6rem;
    min-width: 35px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: .88rem;
  }

  .faq-answer p {
    padding: 0 16px 16px;
    font-size: .85rem;
  }

  .contact-item {
    font-size: .88rem;
  }

  .project-info h3 {
    font-size: .95rem;
  }

  .project-info p {
    font-size: .82rem;
  }

  .coming-soon {
    font-size: .85rem;
  }
}

/* ===== FOOTER TEXT GLOW ===== */
.footer-brand p {
  text-shadow: 0 0 10px rgba(255, 255, 255, .15), 0 0 30px rgba(255, 255, 255, .08);
}

.footer-bottom p {
  text-shadow: 0 0 8px rgba(255, 255, 255, .12), 0 0 20px rgba(255, 255, 255, .06);
}

.footer-links a {
  text-shadow: 0 0 8px rgba(255, 255, 255, .1);
}

/* Footer social spacing */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all .3s ease;
}

.social-link:hover {
  background: rgba(99, 102, 241, .15);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, .2);
}

/* ===== CONTACT FORM SOCIALS ===== */
.contact-socials {
  margin-top: 24px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-socials span {
  display: block;
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all .3s ease;
}

.contact-social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, .3);
}

/* ===== CLICKABLE PROJECT CARDS ===== */
a.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.project-card:hover {
  text-decoration: none;
}

/* Visit Website link indicator */
.project-link-indicator {
  padding: 12px 24px 16px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-light);
  opacity: 0;
  transform: translateY(5px);
  transition: all .3s ease;
  border-top: 1px solid rgba(99, 102, 241, .1);
}

a.project-card:hover .project-link-indicator {
  opacity: 1;
  transform: translateY(0);
}