/* ===== ROHIT DIGITAL MARKETING AGENCY - MAIN STYLESHEET ===== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a24;
  --card-bg: #14141e;
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-dark: #ea6c0c;
  --gold: #f5c842;
  --text: #e8e8f0;
  --text-muted: #9090a8;
  --border: rgba(249,115,22,0.15);
  --border-light: rgba(255,255,255,0.07);
  --glow: 0 0 40px rgba(249,115,22,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a24 50%, #0f0f1a 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.section-title span { color: var(--orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--orange);
  color: #fff;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.header.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-whatsapp {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition);
  position: relative;
}

.nav-whatsapp:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249,115,22,0.15);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta { }

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

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

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a3e 25%, #0f1a4e 50%, #0a0a2a 100%);
  overflow: hidden;
}

.hero-premium {
  background: linear-gradient(135deg, #000000 0%, #0f0f2e 25%, #1a0a4e 50%, #0a0a1f 100%);
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.gradient-blur-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, transparent 70%);
  top: -100px;
  left: -200px;
  animation-duration: 25s;
}

.gradient-blur-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  bottom: -300px;
  right: -200px;
  animation-duration: 30s;
  animation-delay: 5s;
}

.gradient-blur-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-duration: 28s;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(50px, -50px); }
  50% { transform: translate(-30px, 50px); }
  75% { transform: translate(30px, 30px); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
}

.grid-line.horizontal {
  width: 100%;
  height: 1px;
  top: 0;
}

.grid-line.vertical {
  height: 100%;
  width: 1px;
  left: 0;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content-premium {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}

.hero-text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title-premium {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(135deg, #9333ea 0%, #0ea5e9 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #e0e7ff;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-tagline {
  font-size: 0.95rem;
  color: #a5b4fc;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #9333ea 0%, #0ea5e9 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.5), 0 0 60px rgba(14, 165, 233, 0.3);
  cursor: pointer;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(147, 51, 234, 0.7), 0 0 100px rgba(14, 165, 233, 0.5);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-glow:hover .btn-icon {
  transform: translateX(5px);
}

.btn-ghost-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #e0e7ff;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(224, 231, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-ghost-premium:hover {
  border-color: #9333ea;
  background: rgba(147, 51, 234, 0.1);
  color: #ffffff;
}

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

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(147, 51, 234, 0.1);
  border-left: 3px solid #9333ea;
  border-radius: 8px;
}

.stat-badge strong {
  font-size: 1.4rem;
  color: #9333ea;
  font-weight: 900;
}

.stat-badge span {
  font-size: 0.8rem;
  color: #a5b4fc;
  font-weight: 500;
}

/* ===== AI ILLUSTRATION ===== */
.hero-visual-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero-text-section {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.15s;
}

.ai-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-robot {
  position: relative;
  width: 280px;
  height: 350px;
  animation: robotFloat 4s ease-in-out infinite;
}

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

.robot-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
}

.head-casing {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(147, 51, 234, 0.6) 100%);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5), inset 0 0 30px rgba(147, 51, 234, 0.2);
  border: 2px solid rgba(14, 165, 233, 0.5);
}

.eyes {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.eye {
  width: 12px;
  height: 12px;
  background: rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid #0ea5e9;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.6);
}

.pupil {
  width: 6px;
  height: 6px;
  background: #0ea5e9;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  animation: pupilLook 3s ease-in-out infinite;
}

@keyframes pupilLook {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(2px, 1px); }
  50% { transform: translate(-1px, 2px); }
  75% { transform: translate(1px, -1px); }
}

.antenna {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background: linear-gradient(180deg, #9333ea, #0ea5e9);
  border-radius: 2px;
  animation: antennaWave 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
}

@keyframes antennaWave {
  0%, 100% { transform: translateX(-50%) rotateZ(-5deg); }
  50% { transform: translateX(-50%) rotateZ(5deg); }
}

.robot-body {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 140px;
}

.body-casing {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.7) 0%, rgba(14, 165, 233, 0.5) 100%);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), inset 0 0 40px rgba(147, 51, 234, 0.15);
  border: 2px solid rgba(14, 165, 233, 0.4);
}

.chest-screen {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 60px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(147, 51, 234, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.screen-content {
  display: flex;
  gap: 6px;
  height: 80%;
  width: 90%;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, #0ea5e9, #9333ea);
  border-radius: 2px;
  animation: barAnimate 1s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.6);
}

.bar-1 { animation-delay: 0s; }
.bar-2 { animation-delay: 0.2s; }
.bar-3 { animation-delay: 0.4s; }

@keyframes barAnimate {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

.robot-arms {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  display: flex;
  justify-content: space-between;
}

.arm {
  width: 60px;
  height: 10px;
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.6), rgba(14, 165, 233, 0.4));
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.arm-left {
  animation: armLeft 3s ease-in-out infinite;
}

.arm-right {
  animation: armRight 3s ease-in-out infinite;
}

@keyframes armLeft {
  0%, 100% { transform: rotateZ(0deg); }
  50% { transform: rotateZ(-30deg); }
}

@keyframes armRight {
  0%, 100% { transform: rotateZ(0deg); }
  50% { transform: rotateZ(30deg); }
}

.robot-hands {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.device {
  width: 70px;
  height: 70px;
  background: rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  border: 2px solid rgba(147, 51, 234, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
  animation: deviceTilt 3s ease-in-out infinite;
}

.device-left {
  animation-delay: 0s;
}

.device-right {
  animation-delay: 1s;
}

@keyframes deviceTilt {
  0%, 100% { transform: rotateZ(-10deg); }
  50% { transform: rotateZ(10deg); }
}

.screen-display {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
  border-radius: 8px;
  border: 1px solid #0ea5e9;
}

.chart {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #0ea5e9, #9333ea);
  border-radius: 2px;
  animation: chartBounce 1.5s ease-in-out infinite;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes chartBounce {
  0%, 100% { height: 20%; }
  50% { height: 80%; }
}

.floating-card {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(147, 51, 234, 0.2);
  border: 2px solid rgba(147, 51, 234, 0.5);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #e0e7ff;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
  backdrop-filter: blur(10px);
}

.card-icon {
  font-size: 2rem;
}

.card-1 {
  top: 20px;
  right: 80px;
  animation: floatCard1 4s ease-in-out infinite;
}

.card-2 {
  bottom: 80px;
  left: 60px;
  animation: floatCard2 5s ease-in-out infinite;
}

.card-3 {
  bottom: 30px;
  right: 100px;
  animation: floatCard3 4.5s ease-in-out infinite;
}

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

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(-15px); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(20px); }
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(147, 51, 234, 0.3);
}

.glow-1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
  box-shadow: inset 0 0 40px rgba(147, 51, 234, 0.2);
}

.glow-2 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
  animation-delay: 0.5s;
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: inset 0 0 30px rgba(14, 165, 233, 0.15);
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  animation: bounce 2s ease-in-out infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-visual-section {
    height: 350px;
  }

  .ai-robot {
    width: 220px;
    height: 280px;
  }

  .floating-card {
    width: 80px;
    height: 80px;
    font-size: 0.75rem;
  }

  .card-icon {
    font-size: 1.6rem;
  }
}

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

  .hero-wrapper {
    gap: 30px;
    padding: 40px 0;
  }

  .hero-title-premium {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-glow, .btn-ghost-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-visual-section {
    height: 280px;
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-badge {
    width: 100%;
  }

  .grid-lines {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .gradient-blur {
    filter: blur(60px);
  }

  .whatsapp-floating {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== SLIDER ===== */
.slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--glow);
}

.slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-1 .slide-bg { background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 40%, #0f2027 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #0f2027 0%, #203a43 40%, #2c5364 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #1a0a0a 0%, #3d1c1c 40%, #2c1810 100%); }
.slide-4 .slide-bg { background: linear-gradient(135deg, #0a1a0a 0%, #1c3d1c 40%, #102c10 100%); }
.slide-5 .slide-bg { background: linear-gradient(135deg, #1a1210 0%, #3d2c1c 40%, #2c1810 100%); }

.slide-icon-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-icon {
  font-size: 6rem;
  opacity: 0.12;
  line-height: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.slide-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--orange);
  width: 24px;
}

.slider-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: all;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--dark2);
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 50px; width: 1px;
  background: var(--border-light);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: #ff6600;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: #ff6600; }

.feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.08);
}

/* ===== FEATURE SLIDESHOW ===== */
.feature-slideshow {
  position: relative;
  width: 100%;
}

.slideshow-container {
  position: relative;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  min-height: 320px;
}

.slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  padding: 40px 30px;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slideshow-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: #ff6600;
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255,255,255,0.6);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(249,115,22,0.2);
}

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

.service-icon {
  width: 60px; height: 60px;
  background: rgba(249,115,22,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ===== SERVICE CARD PREMIUM ===== */
.service-card-premium {
  background: rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(10px) !important;
  border: 1.5px solid rgba(249,115,22,0.15) !important;
  border-radius: 20px !important;
  padding: 36px !important;
  display: flex !important;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249,115,22,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card-premium:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(249,115,22,0.4) !important;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px rgba(249,115,22,0.3), 0 20px 60px rgba(0,0,0,0.5);
}

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

.service-icon-animated {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-icon-animated {
  transform: translateY(-3px) rotate(10deg) scale(1.1);
  animation: float 3s ease-in-out infinite;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  width: fit-content;
}

.service-card-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.service-card-premium:hover .service-card-btn {
  color: #ffe500;
  transform: translateX(4px);
}

.service-card-premium:hover .service-card-btn::after {
  width: 100%;
}

.service-card-premium:hover .service-card-btn i {
  animation: slideRight 0.4s ease;
}

@keyframes slideRight {
  0% { transform: translateX(-4px); }
  100% { transform: translateX(4px); }
}

/* ===== PROCESS STEPS ===== */
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(249,115,22,0.15);
}

.process-step:hover::before {
  opacity: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(249,115,22,0.15);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  border: 1.5px solid rgba(249,115,22,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1) rotate(15deg);
  background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(249,115,22,0.1));
  box-shadow: 0 10px 30px rgba(249,115,22,0.2);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== AI HIGHLIGHT STRIP ===== */
.ai-highlight-strip {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(249,115,22,0.05) 50%, rgba(249,115,22,0.02) 100%);
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: 1px solid rgba(249,115,22,0.2);
  position: relative;
  overflow: hidden;
}

.ai-highlight-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.highlight-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

/* ===== CTA PREMIUM BUTTON ===== */
.btn-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(249,115,22,0.4), 0 0 60px rgba(249,115,22,0.25);
  cursor: pointer;
}

.btn-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-cta-premium:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 50px rgba(249,115,22,0.6), 0 0 80px rgba(249,115,22,0.4);
  background: linear-gradient(135deg, #ff8533 0%, var(--orange) 100%);
}

.btn-cta-premium:hover::before {
  left: 100%;
}

.btn-cta-premium i {
  animation: spin 3s linear infinite;
}

.btn-cta-premium:hover i {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

.ai-illustration img {
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.service-details {
  display: grid;
  gap: 20px;
}

.service-detail {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.service-detail .service-title {
  margin-bottom: 8px;
}

.stats-section p {
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: var(--border);
}

.portfolio-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

.portfolio-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-thumb-overlay { opacity: 1; }

.portfolio-body { padding: 24px; }

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
}

.portfolio-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.portfolio-result {
  display: flex;
  gap: 20px;
}

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

.result-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
}

.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(160deg, var(--dark3), rgba(249,115,22,0.06));
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--glow);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  vertical-align: top;
  line-height: 1.6;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.7;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(249,115,22,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--orange);
}

.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled .check {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star { color: var(--gold); font-size: 0.9rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 56px;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 46px; height: 46px;
  background: rgba(249,115,22,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.hours-grid {
  background: var(--dark3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}

.hours-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { color: #fff; font-weight: 500; }
.hours-badge { 
  font-size: 0.7rem;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(255,107,0,0.05) 0%, transparent 30%),
    linear-gradient(135deg, transparent 40%, rgba(59,130,246,0.03) 70%, transparent 100%);
  pointer-events: none;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(144,144,168,0.5); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.form-textarea { min-height: 130px; }

.form-select { cursor: pointer; }
.form-select option { background: var(--dark3); color: var(--text); }

/* Input Wrapper with Icons */
.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-wrapper i {
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.form-input-wrapper .form-input {
  padding-left: 42px;
  width: 100%;
}

.form-input-wrapper .form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.form-input-wrapper:has(.form-input:focus) i,
.form-input-wrapper:has(.form-input:not(:placeholder-shown)) i {
  color: var(--orange-light);
  text-shadow: 0 0 8px rgba(249,115,22,0.4);
}

/* Button Loading Animation */
.btn-submit {
  position: relative;
  overflow: hidden;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loader {
  opacity: 1;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.btn-full { width: 100%; }

/* ===== CONTACT PAGE UPGRADES ===== */
.contact-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #000 0%, #040c1c 45%, #050e28 100%);
  overflow: hidden;
  color: #fff;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.contact-hero .hero-content-premium {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.contact-hero .hero-title-premium {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
}

.contact-hero .hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #d8e0ff;
  max-width: 680px;
  line-height: 1.6;
  margin-top: 8px;
}

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

.glass-card {
  position: relative;
  background: rgba(15, 21, 38, 0.46);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(255,107,0,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #f6f7ff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 24px rgba(255,107,0,0.34);
}

.glass-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #ff9a3a;
  background: rgba(255,107,0,0.15);
  animation: iconLift 2s ease-in-out infinite;
}

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

.glass-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.glass-card p { margin: 0 0 8px; }

.card-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover { color: #ffb36a; }

.card-meta {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.trust-section .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.trust-item {
  background: rgba(13, 16, 30, 0.64);
  border: 1px solid rgba(254, 165, 32, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255,107,0,0.28);
}

.trust-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--orange);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.trust-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ad-gallery-section {
  background: linear-gradient(135deg, #080c18 0%, #0b112d 100%);
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.ad-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8, 12, 24, 0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(255,107,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ad-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.6), 0 0 26px rgba(255,107,0,0.28);
}

.ad-card img {
  width: 100%;
  display: block;
  height: 180px;
  object-fit: cover;
}

.ad-card .ad-caption {
  padding: 12px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .ad-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 768px) {
  .ad-grid { grid-template-columns: 1fr; }
}

.premium-cta {
  background: linear-gradient(135deg, #0f182f 0%, #04121f 100%);
}

.premium-cta .cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 12px;
}

.premium-cta .section-subtitle {
  color: #c7d0f2;
  max-width: 660px;
  margin: 0 auto 24px;
}

.btn-full { width: 100%; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.whatsapp-float,
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i,
.whatsapp-floating i { font-size: 1.2rem; }

.whatsapp-float span { display: inline-block; font-size: 0.95rem; }

.whatsapp-float:hover,
.whatsapp-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.65);
}

@media (max-width: 1024px) {
  .trust-section .trust-grid { grid-template-columns: repeat(2, minmax(170px, 1fr)); }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .trust-section .trust-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero { min-height: auto; padding: 60px 0; }
  .contact-hero .hero-content-premium { padding: 70px 16px 40px; }
  .whatsapp-float,
  .whatsapp-floating { bottom: 20px; right: 20px; padding: 10px 12px; }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(249,115,22,0.08) 0%, transparent 60%);
}

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

.about-visual {
  position: relative;
}

.about-main-visual {
  background: linear-gradient(135deg, var(--dark3), rgba(249,115,22,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}

.about-main-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(249,115,22,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(249,115,22,0.08) 0%, transparent 50%);
}

.about-float-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-float-card.card-1 {
  bottom: -24px; left: -24px;
}

.about-float-card.card-2 {
  top: -24px; right: -24px;
}

.float-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.value-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,0.07) 0%, transparent 60%);
}

.page-hero .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb-sep { color: var(--text-muted); }

/* ===== MAPS SECTION ===== */
.map-section {
  background: var(--dark2);
  padding: 60px 0;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 36px rgba(0, 123, 255, 0.18), 0 0 20px rgba(255, 107, 0, 0.22);
  margin-top: 36px;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: brightness(0.9) saturate(1.2);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(249,115,22,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.why-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

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

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border-light);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--orange); padding-left: 4px; }

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

.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

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

/* ===== MOBILE NAV MENU ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

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

.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--transition);
  display: block;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-whatsapp-mobile {
  color: #25d366 !important;
  font-weight: 600;
}

.nav-whatsapp-mobile:hover {
  color: #128c7e !important;
  background: rgba(37, 211, 102, 0.1);
}

.nav-mobile .btn {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

/* ===== PREMIUM INTRO SECTION ===== */
.premium-intro-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a3e 25%, #0f2050 50%, #0a0a25 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Particles Animation */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.8), rgba(14, 165, 233, 0.4));
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
  animation: floatParticles 20s infinite ease-in-out;
  pointer-events: none;
}

.particle:nth-child(1) {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 10%;
  animation-duration: 25s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 4px;
  height: 4px;
  top: 60%;
  left: 15%;
  animation-duration: 30s;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 80%;
  animation-duration: 28s;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 70%;
  animation-duration: 32s;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 6px;
  height: 6px;
  top: 30%;
  left: 50%;
  animation-duration: 26s;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 85%;
  animation-duration: 29s;
  animation-delay: 5s;
}

@keyframes floatParticles {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    transform: translateX(100px) translateY(-100px);
    opacity: 0.5;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

/* Animated Background Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -200px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
  animation: blobFloat 15s ease-in-out infinite;
}

.blob-2 {
  width: 700px;
  height: 700px;
  bottom: -150px;
  right: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  animation: blobFloat 18s ease-in-out infinite;
  animation-delay: 5s;
}

.blob-3 {
  width: 500px;
  height: 500px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
  animation: blobFloat 20s ease-in-out infinite;
  animation-delay: 10s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(100px, -100px);
  }
  66% {
    transform: translate(-50px, 100px);
  }
}

/* Premium Header */
.premium-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  animation: slideInDown 0.8s ease-out;
}

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

.premium-label {
  display: inline-block;
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.3), rgba(14, 165, 233, 0.3));
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 50px;
  padding: 8px 20px;
  color: #a5b4fc;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.premium-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #9333ea 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.premium-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

/* Premium Stats Grid */
.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Glassmorphism Stat Cards */
.premium-stat-card {
  position: relative;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(14, 165, 233, 0.05));
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(147, 51, 234, 0.3);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
  cursor: default;
  animation: scaleIn 0.8s ease-out both;
}

.premium-stat-card:nth-child(1) { animation-delay: 0.1s; }
.premium-stat-card:nth-child(2) { animation-delay: 0.2s; }
.premium-stat-card:nth-child(3) { animation-delay: 0.3s; }
.premium-stat-card:nth-child(4) { animation-delay: 0.4s; }

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

.premium-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.5), transparent);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1), transparent 70%);
  border-radius: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-stat-card:hover .card-glow {
  opacity: 1;
}

.premium-stat-card:hover {
  transform: translateY(-12px);
  border-color: rgba(147, 51, 234, 0.6);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(14, 165, 233, 0.08));
  box-shadow: 0 20px 60px rgba(147, 51, 234, 0.25), 
              0 0 40px rgba(14, 165, 233, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: transparent;
  background: linear-gradient(135deg, #9333ea, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: transform 0.4s ease;
}

.premium-stat-card:hover .stat-icon {
  transform: scale(1.1) rotateZ(5deg);
}

.stat-counter {
  margin-bottom: 16px;
}

.counter-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f97316, #9333ea, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}

.counter-number::after {
  content: attr(data-suffix);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #f97316;
  margin-left: 4px;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.stat-description {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Premium CTA Button */
.premium-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #f97316 0%, #9333ea 50%, #0ea5e9 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 0 40px rgba(147, 51, 234, 0.5), 
              0 0 80px rgba(14, 165, 233, 0.3);
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.premium-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(147, 51, 234, 0.7), 
              0 0 120px rgba(14, 165, 233, 0.5);
}

.premium-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.premium-btn:hover::before {
  left: 100%;
}

.premium-btn .btn-icon {
  transition: transform 0.3s ease;
}

.premium-btn:hover .btn-icon {
  transform: translateX(8px);
}

/* ===== RESPONSIVE FOR PREMIUM SECTION ===== */
@media (max-width: 1024px) {
  .premium-intro-section {
    padding: 80px 0;
    min-height: auto;
  }

  .premium-header {
    margin-bottom: 60px;
  }

  .premium-stats-grid {
    gap: 24px;
  }

  .counter-number {
    font-size: 2.8rem;
  }

  .stat-icon {
    font-size: 2.5rem;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .premium-intro-section {
    padding: 60px 0;
  }

  .premium-header {
    margin-bottom: 48px;
  }

  .premium-title {
    font-size: 2rem;
  }

  .premium-subtitle {
    font-size: 1rem;
  }

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

  .premium-stat-card {
    padding: 32px 24px;
  }

  .counter-number {
    font-size: 2.2rem;
  }

  .counter-suffix {
    font-size: 1.5rem;
  }

  .stat-title {
    font-size: 1rem;
  }

  .stat-description {
    font-size: 0.9rem;
  }

  .blob {
    filter: blur(60px);
  }

  .particle {
    display: none;
  }

  .premium-btn {
    padding: 16px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .premium-intro-section {
    padding: 48px 0;
  }

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

  .premium-title {
    font-size: 1.6rem;
  }

  .premium-subtitle {
    font-size: 0.95rem;
  }

  .premium-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-stat-card {
    padding: 28px 20px;
  }

  .stat-icon {
    font-size: 2rem;
    height: 40px;
  }

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

  .counter-suffix {
    font-size: 1.3rem;
  }

  .stat-title {
    font-size: 0.95rem;
  }

  .stat-description {
    font-size: 0.85rem;
  }

  .premium-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .slider-wrap { max-width: 480px; margin: 0 auto; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .hero-title { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item::after { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
}
