/* ============================================
   SFUTURERICH.COM – AI AGENCY WEBSITE
   3D Dark Futuristic Theme
   ============================================ */

:root {
  --cyan: #00f5ff;
  --purple: #7b2ff7;
  --orange: #f5a623;
  --green: #00ff88;
  --dark-bg: #020510;
  --dark-card: #080d1e;
  --dark-card-2: #0d1530;
  --border-glow: rgba(0, 245, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: 110px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0, 245, 255, 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-ring.hovered {
  width: 52px; height: 52px;
  border-color: var(--purple);
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(2, 5, 16, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 8px 40px rgba(0, 245, 255, 0.08);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.logo-3d {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

.logo-s { color: var(--cyan); }
.logo-future { color: #ffffff; }
.logo-rich { color: var(--orange); }

.logo-tagline {
  font-family: var(--font-display);
  font-size: 0.45rem;
  letter-spacing: 4px;
  color: var(--purple);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: white;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.4), 0 0 50px rgba(123, 47, 247, 0.2);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 40px;
  gap: 16px;
  background: rgba(2, 5, 16, 0.98);
  border-top: 1px solid var(--border-glow);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--cyan); }

.mobile-menu.open { display: flex; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8% 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.floating-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 { width: 400px; height: 400px; background: rgba(0, 245, 255, 0.07); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(123, 47, 247, 0.1); top: 30%; right: 5%; animation-delay: 2s; }
.orb-3 { width: 250px; height: 250px; background: rgba(245, 166, 35, 0.07); bottom: 10%; left: 30%; animation-delay: 4s; }
.orb-4 { width: 200px; height: 200px; background: rgba(0, 255, 136, 0.06); bottom: 20%; right: 25%; animation-delay: 1s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease forwards;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  line-height: 1.05;
  margin-bottom: 24px;
}

.title-line-1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.title-line-2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.title-line-3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.title-line-3 em {
  font-style: normal;
  color: var(--orange);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.4), 0 0 60px rgba(123, 47, 247, 0.2);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(0, 245, 255, 0.4);
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s;
  background: rgba(0, 245, 255, 0.05);
}

.btn-ghost:hover {
  background: rgba(0, 245, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* HERO VISUAL – AI Brain */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-brain-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing 20s linear infinite;
}

.ring-1 {
  width: 340px; height: 340px;
  border-color: rgba(0, 245, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.05) inset, 0 0 20px rgba(0, 245, 255, 0.05);
}

.ring-2 {
  width: 290px; height: 290px;
  border-color: rgba(123, 47, 247, 0.25);
  animation-direction: reverse;
  animation-duration: 15s;
  border-style: dashed;
}

.ring-3 {
  width: 240px; height: 240px;
  border-color: rgba(245, 166, 35, 0.2);
  animation-duration: 25s;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.brain-core {
  position: absolute;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.08) 0%, rgba(123, 47, 247, 0.05) 60%, transparent 100%);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(0, 245, 255, 0.1),
    0 0 80px rgba(123, 47, 247, 0.08),
    inset 0 0 40px rgba(0, 245, 255, 0.05);
}

.core-inner {
  position: relative;
  width: 140px; height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-svg {
  width: 120px; height: 120px;
}

.ai-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan);
  animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.4; }
}

.pulse-ring-svg {
  animation: svgPulse 2s ease-out infinite;
  transform-origin: center;
}

@keyframes svgPulse {
  0% { r: 6; opacity: 1; }
  100% { r: 40; opacity: 0; }
}

.tech-tag {
  position: absolute;
  background: rgba(8, 13, 30, 0.9);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.5px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: floatTag 6s ease-in-out infinite;
}

.tag-1 { top: 30px; left: -20px; animation-delay: 0s; }
.tag-2 { top: 30px; right: -30px; animation-delay: 1.5s; color: var(--purple); border-color: rgba(123, 47, 247, 0.3); }
.tag-3 { bottom: 40px; left: -10px; animation-delay: 3s; color: var(--orange); border-color: rgba(245, 166, 35, 0.3); }
.tag-4 { bottom: 40px; right: -20px; animation-delay: 4.5s; color: var(--green); border-color: rgba(0, 255, 136, 0.3); }

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  animation: fadeSlideUp 1s ease 1s both;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 245, 255, 0.04);
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 30s linear infinite;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.ticker-dot {
  color: var(--cyan);
  font-size: 0.6rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(123, 47, 247, 0.4);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--purple);
  background: rgba(123, 47, 247, 0.08);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-pad) 8%;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.02) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  border-color: rgba(0, 245, 255, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 245, 255, 0.08),
    inset 0 0 30px rgba(0, 245, 255, 0.02);
}

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

.service-card[data-color="purple"]:hover {
  border-color: rgba(123, 47, 247, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(123, 47, 247, 0.1);
}

.service-card[data-color="orange"]:hover {
  border-color: rgba(245, 166, 35, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245, 166, 35, 0.1);
}

.service-card[data-color="green"]:hover {
  border-color: rgba(0, 255, 136, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0, 255, 136, 0.1);
}

.card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 245, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

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

.card-number {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  width: 70px; height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 245, 255, 0.05);
  border: 1px solid rgba(0, 245, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(0, 245, 255, 0.1);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.service-card[data-color="purple"] .service-icon {
  background: rgba(123, 47, 247, 0.05);
  border-color: rgba(123, 47, 247, 0.15);
}

.service-card[data-color="orange"] .service-icon {
  background: rgba(245, 166, 35, 0.05);
  border-color: rgba(245, 166, 35, 0.15);
}

.service-card[data-color="green"] .service-icon {
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.15);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

.service-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: white;
  border-radius: 50px;
  transition: all 0.3s;
}

.service-btn:hover {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-us {
  padding: var(--section-pad) 8%;
  position: relative;
  z-index: 2;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123, 47, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 245, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(0, 245, 255, 0.05);
}

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

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 80px 8%;
  position: relative;
  z-index: 2;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.pill {
  padding: 10px 22px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: all 0.3s;
  cursor: default;
}

.pill:hover {
  border-color: rgba(0, 245, 255, 0.3);
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 245, 255, 0.08);
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-pad) 8%;
  position: relative;
  z-index: 2;
}

.contact-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 245, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(123, 47, 247, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: all 0.3s;
}

.info-card:not(.no-link):hover {
  border-color: rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.04);
  transform: translateX(5px);
}

.info-icon { font-size: 1.4rem; flex-shrink: 0; }

.info-label {
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.social-btn.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.social-btn.email {
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.25);
  color: var(--cyan);
}

.social-btn.email:hover {
  background: rgba(0, 245, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

/* FORM */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 245, 255, 0.4);
  background: rgba(0, 245, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.08);
}

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

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 60%, var(--orange) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.form-submit:hover {
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.3), 0 0 80px rgba(123, 47, 247, 0.15);
  transform: translateY(-3px);
}

.form-submit:active { transform: translateY(0); }

.form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 12px;
  margin-top: 16px;
}

.success-icon { font-size: 1.5rem; }

.success-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--green);
}

.success-text span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: #030711;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 70px 8% 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.42rem;
  letter-spacing: 5px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.fsocial {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.3s;
}

.fsocial:hover {
  border-color: rgba(0, 245, 255, 0.3);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-contact-item a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 8%;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .hero { flex-direction: column; text-align: center; padding: 120px 5% 70px; gap: 50px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-visual { width: 100%; }
  .ai-brain-container { width: 280px; height: 280px; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 220px; height: 220px; }
  .ring-3 { width: 180px; height: 180px; }
  .brain-core { width: 130px; height: 130px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .nav-container { padding: 16px 24px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
