﻿/* ===========================
   ROOT & RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===========================
   PRELOADER
   =========================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050508;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.preloader.done {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.pl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pl-logo {
  width: 80px;
  height: 80px;
  position: relative;
  animation: plSpin 2s linear infinite;
}

.pl-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 18px rgba(255, 107, 53, 0.7));
}

@keyframes plSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.08);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.pl-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pl-name span {
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pl-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.pl-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF6B35, #FFD700);
  border-radius: 3px;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.pl-pct {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Outfit', monospace;
  letter-spacing: 1px;
}

/* ===========================
   AURORA BACKGROUND
   =========================== */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: auroraReveal 1.5s ease 1.8s forwards;
}

.aurora-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: auroraReveal 1.5s ease 1.8s forwards, float1 9s ease-in-out 3.3s infinite;
}

.aurora-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: auroraReveal 1.5s ease 2s forwards, float2 11s ease-in-out 3.5s infinite;
}

.aurora-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation: auroraReveal 1.5s ease 2.2s forwards, float3 13s ease-in-out 3.7s infinite;
}

@keyframes auroraReveal {
  to {
    opacity: 1;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(-40px, 30px)
  }

  66% {
    transform: translate(20px, -20px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(30px, -40px)
  }

  66% {
    transform: translate(-20px, 25px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(-25px, 20px)
  }

  66% {
    transform: translate(30px, -30px)
  }
}

/* ===========================
   HERO GRID MESH
   =========================== */
.hero-grid-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

:root {
  --bg-primary: #050508;
  --bg-secondary: #0c0c14;
  --bg-card: #0f0f1a;
  --bg-card-hover: #14141f;
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(255, 107, 53, 0.3);
  --orange: #FF6B35;
  --gold: #FFD700;
  --orange-dim: rgba(255, 107, 53, 0.1);
  --text-primary: #f0f0f8;
  --text-secondary: #8888aa;
  --text-muted: #55556a;
  --gradient: linear-gradient(135deg, #FF6B35, #FFD700);
  --gradient-text: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Outfit', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 3px;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 107, 53, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
}

body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 215, 0, 0.5);
}

@media (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ===========================
   WHATSAPP FAB
   =========================== */
.whatsapp-fab {
  /* position/bottom/right/z-index removed — handled by .fab-container */
  position: relative;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  cursor: none;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--text-primary);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a.active-nav {
  color: var(--text-primary);
}

.nav-links a.active-nav::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: #000 !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  cursor: none;
}

.nav-cta:hover {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.35);
  cursor: none;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 55px rgba(255, 107, 53, 0.6);
}

.btn-primary svg {
  transition: var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  color: var(--orange);
  font-weight: 600;
  transition: var(--transition);
  cursor: none;
}

.btn-outline:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: #FF6B35;
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: #FFD700;
  bottom: -100px;
  left: -100px;
  animation: float2 10s ease-in-out infinite;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: #9B59B6;
  top: 50%;
  left: 40%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-30px, 30px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -30px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-20px, 20px)
  }
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

/* Typed text */
.typed-text {
  font-family: 'Outfit', sans-serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typed-cursor {
  display: inline-block;
  color: var(--orange);
  font-weight: 300;
  -webkit-text-fill-color: var(--orange);
  animation: blinkCursor 0.9s step-start infinite;
}

@keyframes blinkCursor {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== BROWSER MOCKUP ===== */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.browser-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.browser-body {
  padding: 20px;
  min-height: 280px;
}

.mock-nav {
  height: 8px;
  background: linear-gradient(90deg, var(--border) 40%, transparent);
  border-radius: 4px;
  margin-bottom: 20px;
}

.mock-hero {
  margin-bottom: 24px;
}

.mock-title {
  height: 16px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.4), rgba(255, 215, 0, 0.2));
  border-radius: 4px;
  margin-bottom: 10px;
  width: 70%;
}

.mock-sub {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-sub:last-of-type {
  width: 55%;
}

.mock-btn {
  height: 28px;
  width: 120px;
  background: var(--gradient);
  border-radius: 50px;
  margin-top: 16px;
  opacity: 0.8;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  height: 60px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.mock-card::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: rgba(255, 107, 53, 0.3);
  border-radius: 3px;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 15, 26, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.badge-1 {
  bottom: -16px;
  left: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-2 {
  top: -16px;
  right: -20px;
  animation: floatBadge 4s ease-in-out 2s infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  grid-column: 1 / -1;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  80% {
    transform: translateY(12px);
    opacity: 0
  }
}

/* ===========================
   MARQUEE
   =========================== */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-content span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dot-sep {
  color: var(--orange) !important;
  font-size: 0.7rem !important;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--bg-secondary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 53, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.02));
}

.card-popular {
  display: inline-block;
  background: var(--gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ===========================
   TECH STRIP
   =========================== */
.tech-section {
  padding: 36px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.tech-icon {
  font-size: 1.1rem;
}

/* ===========================
   PRICING
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.1);
}

.pricing-popular {
  border-color: rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.07), rgba(255, 215, 0, 0.03));
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
  transform: scale(1.03);
}

.pricing-popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-price {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  align-self: flex-start;
  margin-top: 6px;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  align-self: flex-end;
  margin-bottom: 4px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.check {
  color: var(--orange);
  font-size: 1rem;
}

.x {
  color: var(--text-muted);
}

.unavail {
  color: var(--text-muted) !important;
}

/* ===========================
   PROJECTS
   =========================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.1);
}

.project-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.pv-1 {
  background: linear-gradient(135deg, #1a0a00, #2d1200, #FF6B35 200%);
}

.pv-2 {
  background: linear-gradient(135deg, #000a1a, #001a3d, #3366FF 200%);
}

.pv-3 {
  background: linear-gradient(135deg, #0a001a, #16003d, #9B59B6 200%);
}

.pv-1::before,
.pv-2::before,
.pv-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px);
}

.pv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .pv-overlay {
  opacity: 1;
}

.pv-tag {
  background: var(--gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  background: var(--orange-dim);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===========================
   WHY US
   =========================== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--border);
  background: var(--bg-card);
}

.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Testimonials */
.test-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-card {
  display: none;
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(255, 107, 53, 0.08);
  line-height: 1;
}

.testimonial-card.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.test-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-size: 0.95rem;
}

.test-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.test-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.test-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ===========================
   PROCESS
   =========================== */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  flex-shrink: 0;
}

.step-num-wrap {
  margin-bottom: 16px;
}

.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 215, 0, 0.05));
  color: var(--orange);
  position: relative;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
}

.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-connector {
  flex: 1;
  min-width: 40px;
  max-width: 80px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 14px);
  opacity: 0.4;
  margin-bottom: 30px;
  align-self: center;
  margin-top: -14px;
}

/* ===========================
   TEAM
   =========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.1);
}

.team-avatar-wrap {
  position: relative;
  margin-bottom: 20px;
  width: 90px;
  height: 90px;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  position: relative;
  z-index: 1;
}

.team-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient);
  z-index: 0;
  opacity: 0.3;
  transition: var(--transition);
}

.team-card:hover .team-avatar-ring {
  opacity: 0.7;
  transform: scale(1.08);
}

.team-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.team-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: none;
}

.team-socials a:hover {
  background: var(--orange-dim);
  border-color: var(--border-glow);
  color: var(--orange);
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-desc {
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: none;
}

.social-link:hover {
  background: var(--orange-dim);
  border-color: var(--border-glow);
  color: var(--orange);
  transform: translateY(-3px);
}

/* FORM */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #4CAF50;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 14px;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-secondary);
  padding: 80px 24px 28px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links a,
.footer-links span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 140px 24px 80px;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

  .scroll-indicator {
    grid-column: auto;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(12, 12, 20, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .section {
    padding: 70px 20px;
  }

  .services-grid,
  .projects-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-popular {
    transform: scale(1);
  }

  .pricing-popular:hover {
    transform: translateY(-6px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 24px;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    min-width: unset;
    background: repeating-linear-gradient(to bottom, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 14px);
    margin-bottom: 0;
    margin-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
  }
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #FF6B35, #FFD700, #FF6B35);
  background-size: 200% auto;
  z-index: 9999;
  transition: width 0.1s linear;
  animation: shimmer 2s linear infinite;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 8000;
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  color: #000;
  box-shadow: 0 0 28px rgba(255, 107, 53, 0.6);
  transform: translateY(-4px);
}

/* ===========================
   RIPPLE EFFECT
   =========================== */
.ripple-container {
  position: relative;
  overflow: hidden;
}

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===========================
   3D CARD TILT
   =========================== */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.08s ease;
}

.tilt-card:not(:hover) {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   MAGNETIC BUTTON
   =========================== */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ===========================
   GRAIN / NOISE OVERLAY
   =========================== */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grainShift 0.5s steps(2) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-4px, 3px);
  }

  50% {
    transform: translate(3px, -4px);
  }

  75% {
    transform: translate(-2px, -3px);
  }

  100% {
    transform: translate(4px, 2px);
  }
}

/* ===========================
   HERO MOUSE SPOTLIGHT
   =========================== */
.hero-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.09) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hero-spotlight.active {
  opacity: 1;
}

/* ===========================
   GLITCH EFFECT (Logo)
   =========================== */
.logo-text:hover {
  animation: glitch 0.4s steps(2) both;
}

@keyframes glitch {
  0% {
    clip-path: inset(0 0 90% 0);
    transform: translate(-2px, 0);
  }

  10% {
    clip-path: inset(30% 0 60% 0);
    transform: translate(2px, 0);
  }

  20% {
    clip-path: inset(60% 0 30% 0);
    transform: translate(-1px, 0);
  }

  30% {
    clip-path: inset(90% 0 0 0);
    transform: translate(1px, 0);
  }

  40% {
    clip-path: inset(0);
    transform: translate(0);
  }

  50% {
    clip-path: inset(0 0 80% 0);
    transform: translate(3px, 0);
    color: #FFD700;
  }

  60% {
    clip-path: inset(40% 0 50% 0);
    transform: translate(-3px, 0);
  }

  100% {
    clip-path: inset(0);
    transform: translate(0);
  }
}

/* ===========================
   SKILL RINGS
   =========================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 24px;
  justify-items: center;
}

.skill-ring-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.skill-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 6;
}

.ring-fill {
  fill: none;
  stroke: var(--clr, #FF6B35);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  /* 2 * π * 40 */
  stroke-dashoffset: 251.2;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 6px var(--clr, #FF6B35));
}

.ring-fill.animated {
  stroke-dashoffset: calc(251.2 * (1 - var(--pct, 0) / 100));
}

.ring-pct {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.skill-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.skill-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: var(--border-glow);
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-item.open .faq-q {
  color: var(--orange);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a>p {
  overflow: hidden;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-a strong {
  color: var(--orange);
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }
}

@media (max-width: 520px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   ÇİFTÇİ MARKET SHOWCASE SECTION
   ============================================================ */
.cm-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020d02 0%, #051a08 50%, #020d02 100%);
}

.cm-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(139, 195, 74, 0.07) 0%, transparent 70%);
}

/* Header row: flag + status badge */
.cm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.cm-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.1));
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #8BC34A;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.cm-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  color: #FFC107;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  animation: statusPulse 2.5s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.08);
  }
}

/* Main 2-col grid */
.cm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Logo row */
.cm-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.cm-logo-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.08));
  border: 1.5px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 0 32px rgba(76, 175, 80, 0.12);
  flex-shrink: 0;
}

.cm-logo-icon svg {
  width: 100%;
  height: 100%;
}

.cm-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin: 0;
}

.cm-subtitle {
  font-size: 0.95rem;
  color: rgba(139, 195, 74, 0.7);
  margin: 4px 0 0;
  font-style: italic;
}

.cm-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.cm-desc strong {
  color: #8BC34A;
  font-weight: 700;
}

/* Feature list */
.cm-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.cm-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.3s, background 0.3s;
}

.cm-feat:hover {
  border-color: rgba(76, 175, 80, 0.3);
  background: rgba(76, 175, 80, 0.05);
}

.cm-feat-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.cm-feat div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cm-feat strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cm-feat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* CTA row */
.cm-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cm-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cm-tech-pills span {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #8BC34A;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
}

/* ─── PHONE MOCKUP ─── */
.cm-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cm-phone {
  position: relative;
  width: 230px;
  background: #0d0d0d;
  border-radius: 36px;
  padding: 14px 10px 20px;
  border: 2px solid rgba(76, 175, 80, 0.25);
  box-shadow:
    0 0 60px rgba(76, 175, 80, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.5);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.cm-phone-notch {
  width: 70px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}

.cm-phone-screen {
  background: #0a150a;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cm-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: linear-gradient(135deg, #0f2a0f, #1a3a0f);
  border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.cm-app-logo {
  font-size: 0.72rem;
  font-weight: 800;
  color: #8BC34A;
  font-family: 'Outfit', sans-serif;
}

.cm-app-bell {
  font-size: 0.85rem;
}

.cm-app-search {
  margin: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(76, 175, 80, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
}

.cm-app-cats {
  display: flex;
  gap: 6px;
  padding: 0 10px 8px;
  overflow: hidden;
}

.cm-cat {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(76, 175, 80, 0.15);
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.cm-cat.active {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.5);
  color: #8BC34A;
}

.cm-app-products {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 10px;
}

.cm-prod {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(76, 175, 80, 0.1);
  border-radius: 10px;
  padding: 7px 8px;
  position: relative;
}

.cm-prod-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cm-prod-1 {
  background: rgba(244, 67, 54, 0.12);
}

.cm-prod-2 {
  background: rgba(76, 175, 80, 0.12);
}

.cm-prod-3 {
  background: rgba(255, 87, 34, 0.12);
}

.cm-prod-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.cm-prod-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.cm-prod-farm {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
}

.cm-prod-price {
  font-size: 0.72rem;
  font-weight: 800;
  color: #8BC34A;
}

.cm-prod-price small {
  font-size: 0.5rem;
  opacity: 0.7;
}

.cm-prod-badge {
  position: absolute;
  top: 5px;
  right: 6px;
  background: rgba(76, 175, 80, 0.85);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
}

.cm-app-map {
  margin: 8px 10px 10px;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
}

.cm-map-btn {
  color: #8BC34A;
  font-weight: 700;
  font-size: 0.6rem;
}

/* Floating badges */
.cm-badge {
  position: absolute;
  background: rgba(10, 25, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8BC34A;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cm-badge-1 {
  top: 10%;
  right: -10px;
  animation: badgeFloat1 3.2s ease-in-out infinite;
}

.cm-badge-2 {
  bottom: 15%;
  left: -10px;
  animation: badgeFloat2 3.8s ease-in-out infinite;
}

@keyframes badgeFloat1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes badgeFloat2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cm-visual {
    order: -1;
  }

  .cm-badge-1 {
    right: 40px;
  }

  .cm-badge-2 {
    left: 40px;
  }
}

/* =============================================
   HERO VISUAL — 3D MOUSE-TRACKING SCENE
   ============================================= */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 500px;
  perspective: 1000px;
}

/* Scene container that rotates with mouse */
.hv-scene {
  position: relative;
  width: 380px;
  height: 380px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ── Central Orb ── */
.hv-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hv-orb-inner {
  width: 110px;
  height: 110px;
  animation: orbSpin 8s linear infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 18px rgba(255, 107, 53, 0.7));
}

@keyframes orbSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hv-orb-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 215, 0, 0.1) 40%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* ── Orbit Rings ── */
.hv-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid transparent;
  transform-origin: center;
}

.hv-orbit-1 {
  width: 200px;
  height: 200px;
  margin: -100px;
  border-color: rgba(255, 107, 53, 0.3);
  animation: orbitSpin1 6s linear infinite;
}

.hv-orbit-2 {
  width: 280px;
  height: 280px;
  margin: -140px;
  border-color: rgba(255, 215, 0, 0.2);
  animation: orbitSpin2 10s linear infinite reverse;
}

.hv-orbit-3 {
  width: 360px;
  height: 360px;
  margin: -180px;
  border-color: rgba(255, 107, 53, 0.1);
  animation: orbitSpin3 14s linear infinite;
}

@keyframes orbitSpin1 {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpin2 {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpin3 {
  to {
    transform: rotate(360deg);
  }
}

.hv-orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
  transform: translateX(-50%);
}

/* ── Floating Cards ── */
.hv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(10, 10, 20, 0.75);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  z-index: 20;
}

.hv-card-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.hv-card-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0f0f8;
  font-family: 'Outfit', sans-serif;
}

.hv-card-text span {
  font-size: 0.68rem;
  color: #55556a;
}

/* Card positions + float animations */
.hv-card-1 {
  top: 8%;
  left: -10%;
  animation: cardFloat1 4s ease-in-out infinite;
}

.hv-card-2 {
  top: 8%;
  right: -8%;
  animation: cardFloat2 4.5s ease-in-out infinite 0.5s;
}

.hv-card-3 {
  bottom: 14%;
  left: -8%;
  animation: cardFloat3 5s ease-in-out infinite 1s;
}

.hv-card-4 {
  bottom: 8%;
  right: -10%;
  animation: cardFloat4 4.2s ease-in-out infinite 1.5s;
}

@keyframes cardFloat1 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(4px);
  }
}

@keyframes cardFloat2 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(-4px);
  }
}

@keyframes cardFloat3 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(8px) translateX(4px);
  }
}

@keyframes cardFloat4 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(10px) translateX(-4px);
  }
}

/* ── Code Block ── */
.hv-code {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: rgba(8, 8, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(20px);
  font-family: 'Courier New', monospace;
  animation: codeFloat 5s ease-in-out infinite;
  z-index: 15;
}

@keyframes codeFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.hv-code-line {
  font-size: 0.72rem;
  color: #55556a;
  overflow: hidden;
  width: var(--w, 100%);
  animation: codeScan 3s ease-in-out infinite alternate;
}

@keyframes codeScan {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.hv-code-kw {
  color: #FF6B35;
  font-weight: 700;
}

.hv-code-var {
  color: #FFD700;
}

.hv-code-str {
  color: #28c864;
}

.hv-code-fn {
  color: #4fc3f7;
}

.hv-code-cm {
  color: #555580;
  font-style: italic;
}

/* ── Grid Floor ── */
.hv-grid {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) rotateX(65deg);
  width: 320px;
  height: 160px;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-visual {
    height: 340px;
  }

  .hv-scene {
    width: 260px;
    height: 260px;
  }

  .hv-orbit-3 {
    display: none;
  }

  .hv-card-1,
  .hv-card-3 {
    left: -5%;
  }

  .hv-card-2,
  .hv-card-4 {
    right: -5%;
  }

  .hv-code {
    width: 180px;
  }
}

/* =============================================
   3D TILT INTERACTIONS
   ============================================= */

/* Perspective wrapper for card grids */
.services-grid,
.pricing-grid,
.projects-grid,
.team-grid {
  perspective: 1200px;
}

/* Base 3D setup for all tilt cards */
.service-card,
.pricing-card,
.project-card,
.team-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out;
  position: relative;
  overflow: hidden;
}

/* Shine overlay — slides diagonally on tilt */
.service-card::after,
.pricing-card::after,
.project-card::after,
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%,
      rgba(255, 107, 53, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

.service-card:hover::after,
.pricing-card:hover::after,
.project-card:hover::after,
.team-card:hover::after {
  opacity: 1;
}

/* Elevated glow shadow on tilt */
.service-card.tilting,
.pricing-card.tilting,
.project-card.tilting,
.team-card.tilting {
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 107, 53, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* 3D depth layer for card content */
.service-card>*,
.pricing-card>*,
.project-card>*,
.team-card>* {
  position: relative;
  z-index: 2;
}

/* Stat items — 3D bounce on enter */
.stat-item {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover {
  transform: translateY(-6px) scale(1.04);
}

.stat-item .count {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.stat-item:hover .count {
  transform: scale(1.08);
}

/* FAQ items — subtle 3D lift */
.faq-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.06);
}

/* Process steps — 3D depth on hover */
.process-step {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Mobile: disable heavy 3D on touch */
@media (max-width: 768px) {

  .service-card,
  .pricing-card,
  .project-card,
  .team-card {
    will-change: auto;
    transform: none !important;
  }
}