/* =====================================================
   SSV INTEGRATED MEDIA â€” style.css
   Palette matched to logo: Deep Navy | Flame Orange | Violet-Purple | Gold Star | Electric Blue
   ===================================================== */

:root {
  /* === LOGO-MATCHED PALETTE === */
  /* Electric blue â€” camera lens */
  --blue: #1565c0;
  --blue-dark: #0d2353;
  --blue-mid: #1976d2;
  --blue-light: #42a5f5;

  /* Flame orange â€” fire in logo */
  --gold: #ff5500;
  --gold-light: #ff7a00;
  --gold-dark: #cc3d00;

  /* Gold star â€” star burst top of logo */
  --star: #ffc107;
  --star-light: #ffd54f;

  /* Violet-purple swirl â€” central swirl */
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-dark: #5b21b6;

  /* Magenta accent â€” orbit ring */
  --magenta: #e91e63;
  --magenta-light: #f06292;

  /* Dark navy â€” logo background */
  --dark: #070e1f;
  --dark-mid: #0d1a35;
  --dark-card: #111d3a;

  --white: #ffffff;
  --base-bg: #0b0f19;
  --neon-orange: #ff5500;
  --neon-pink: #ff007f;
  --neon-blue: #0088ff;
  --neon-purple: #7c3aed;
  --off-white: #f0f3fa;
  --gray: #6b7aa1;
  --gray-light: #9ba8ce;
  --text: #1a2540;
  --text-muted: #546080;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --font: 'Inter', system-ui, sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(21, 101, 192, 0.14);
  --shadow-gold: 0 8px 32px rgba(255, 85, 0, 0.4);
  --shadow-purple: 0 8px 32px rgba(124, 58, 237, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--base-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* UTILITY */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.gold-text {
  color: var(--gold);
}

.gradient-text {
  background: linear-gradient(135deg, var(--star) 0%, var(--gold-light) 35%, var(--gold) 60%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(255, 85, 0, 0.5));
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 85, 0, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 58, 143, 0.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 58, 143, 0.5);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.dark-section {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-mid) 50%, var(--dark) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.15), rgba(124, 58, 237, 0.1));
  color: var(--star-light);
  border: 1px solid rgba(255, 122, 0, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto;
}

.section-header.light p {
  color: var(--gray-light);
}

/* ANIMATIONS */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(60px);
  animation: fadeLeft 1s ease 0.6s forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR â€” Modern Premium Agency Style
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 75px;
  background: linear-gradient(135deg, rgba(7, 14, 31, 0.6) 0%, rgba(13, 12, 40, 0.6) 100%);
  backdrop-filter: blur(24px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Subtle grid / tech pattern inside navbar */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(7, 14, 31, 0.97) 0%, rgba(13, 12, 40, 0.97) 100%);
  height: 68px;
  border-bottom-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(168, 85, 247, 0.15);
}

/* Floating nav dots (tech particles) */
.nav-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.nav-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.6);
  animation: navDotFloat 8s ease-in-out infinite;
}

.nav-dot:nth-child(1) {
  left: 8%;
  top: 30%;
  animation-delay: 0s;
  width: 2px;
  height: 2px;
  background: rgba(255, 193, 7, 0.5);
}

.nav-dot:nth-child(2) {
  left: 22%;
  top: 65%;
  animation-delay: 1.5s;
}

.nav-dot:nth-child(3) {
  left: 55%;
  top: 25%;
  animation-delay: 3s;
  width: 2px;
  height: 2px;
  background: rgba(255, 85, 0, 0.4);
}

.nav-dot:nth-child(4) {
  left: 75%;
  top: 70%;
  animation-delay: 4.5s;
}

.nav-dot:nth-child(5) {
  left: 92%;
  top: 40%;
  animation-delay: 2s;
  width: 4px;
  height: 4px;
  background: rgba(168, 85, 247, 0.3);
}

@keyframes navDotFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-8px) scale(1.3);
    opacity: 1;
  }
}

/* NAV CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* BRAND LOGO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.nav-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 10px;
  padding: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.brand-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 85, 0, 0.5));
  box-shadow: 0 4px 18px rgba(255, 85, 0, 0.25);
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--star) 0%, var(--gold) 60%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.brand-sep {
  color: rgba(124, 58, 237, 0.5);
  font-size: 1rem;
  font-weight: 300;
}

.brand-full {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  display: block;
  white-space: nowrap;
}

/* Animated underline on hover */
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover {
  color: var(--white);
  background: rgba(124, 58, 237, 0.1);
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.3);
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-links li a.active {
  color: var(--star-light);
  background: rgba(255, 193, 7, 0.08);
}

.nav-links li a.active::after {
  transform: scaleX(1);
}

/* NAV RIGHT (CTA + hamburger) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* CTA BUTTON */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 4px 0 rgba(150, 40, 0, 0.5), 0 6px 24px rgba(255, 85, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(150, 40, 0, 0.4), 0 10px 32px rgba(255, 85, 0, 0.55);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}

.nav-cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(150, 40, 0, 0.5);
}

.nav-cta-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.nav-cta-btn:hover i {
  transform: translateX(3px);
}

/* HAMBURGER (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.footer-logo {
  display: inline-flex;
}

.footer-logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: brightness(1.15) saturate(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 110px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-mid) 50%, #0a0e2a 100%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(255, 85, 0, 0.1) 60%, transparent 80%);
  top: -120px;
  left: -120px;
}

.hero-glow-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.25) 0%, rgba(255, 193, 7, 0.1) 60%, transparent 80%);
  bottom: -60px;
  right: 18%;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: var(--star-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 20px 30px;
  backdrop-filter: blur(10px);
  max-width: 520px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--star-light);
  line-height: 1;
}

.stat-plus {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* HERO VISUAL */
.hero-visual {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.analytics-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.main-card {
  width: 340px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.card-dot.green {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.card-tag {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-bottom: 16px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  height: var(--h);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar.active {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.bar span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.card-footer {
  margin-top: 28px;
}

.growth {
  font-size: 0.88rem;
  font-weight: 700;
}

.growth.up {
  color: #22c55e;
}

.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  width: 190px;
}

.mini-card i {
  font-size: 1.6rem;
}

.mini-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
  font-weight: 500;
}

.mini-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.card-seo {
  bottom: 80px;
  left: -80px;
}

.card-seo i {
  color: #22c55e;
}

.card-social {
  top: 40px;
  right: -70px;
}

.card-social i {
  color: #ec4899;
}

.card-leads {
  bottom: -30px;
  right: -60px;
}

.card-leads i {
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* SERVICES */
.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  animation: floating 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(26, 58, 143, 0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 58, 143, 0.18);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  margin-bottom: 24px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.08);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--purple);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold);
  gap: 14px;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  animation: floating 8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple-light);
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* PROCESS */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(124, 58, 237, 0.1);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  border: 3px solid var(--white);
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.08);
  color: var(--white);
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* PORTFOLIO */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
}

.portfolio-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.seo-bg {
  background: linear-gradient(135deg, #0f4c75, #1b262c);
}

.ads-bg {
  background: linear-gradient(135deg, #2d1b69, #11998e);
}

.web-bg {
  background: linear-gradient(135deg, #134e5e, #71b280);
}

.social-bg {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.ads2-bg {
  background: linear-gradient(135deg, #2980b9, #6dd5fa);
}

.seo2-bg {
  background: linear-gradient(135deg, #16222a, #3a6186);
}

.portfolio-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.portfolio-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
}

.metric {
  text-align: center;
}

.m-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.m-lab {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid rgba(26, 58, 143, 0.08);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 58, 143, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-color: var(--blue-mid);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(26, 58, 143, 0.4);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card.featured * {
  color: var(--white) !important;
}

.pricing-card.featured .plan-price .amount {
  color: var(--gold-light) !important;
}

.pricing-card.featured .plan-features li {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.pricing-card.featured .plan-features li i.fa-check {
  color: var(--gold-light) !important;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark) !important;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.plan-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.plan-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(26, 58, 143, 0.07);
  font-size: 0.89rem;
  color: #ffffff;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i.fa-check {
  color: var(--blue);
  font-size: 0.85rem;
}

.plan-features li i.fa-times {
  color: #e2e8f0;
  font-size: 0.85rem;
}

.plan-features li.disabled {
  opacity: 0.45;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* TESTIMONIALS */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-sizing: border-box;
}

.stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin-bottom: 28px;
  max-width: 750px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.reviewer span {
  color: var(--gray-light);
  font-size: 0.84rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(201, 162, 39, 0.05);
}

.carousel-btn:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* AUDIT FORM */
.audit-section {
  background: transparent;
}

.audit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.audit-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 14px 0 16px;
  line-height: 1.25;
}

.audit-info>p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.audit-benefits {
  margin-bottom: 28px;
}

.audit-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(26, 58, 143, 0.07);
}

.audit-benefits li:last-child {
  border-bottom: none;
}

.audit-benefits li i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.audit-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.1), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
}

.audit-urgency i {
  color: var(--star);
  font-size: 1rem;
  flex-shrink: 0;
}

.audit-form,
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.audit-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.audit-form>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
}

.form-group select option {
  background-color: #111d3a;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.form-privacy i {
  color: var(--purple);
}

.form-success {
  text-align: center;
  padding: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  margin-top: 16px;
}

.form-success i {
  font-size: 1.8rem;
  color: #22c55e;
  margin-bottom: 8px;
  display: block;
}

.form-success strong {
  color: #ffffff;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.25);
}

.blog-image {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.blog-img-1 {
  background: linear-gradient(135deg, #232526, #414345);
}

.blog-img-2 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.blog-img-3 {
  background: linear-gradient(135deg, #8e44ad, #3498db);
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--gray-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-body h3 a {
  color: var(--white);
  transition: var(--transition);
}

.blog-body h3 a:hover {
  color: var(--gold);
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.blog-link:hover {
  gap: 12px;
}

/* CONTACT */
.contact {
  background: transparent;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-items {
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 58, 143, 0.06);
}

.contact-item:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--purple);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 0.9rem;
  transition: var(--transition);
  background: rgba(124, 58, 237, 0.05);
}

.social-icon.whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--purple), var(--gold));
  color: var(--white);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.social-icon.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.contact-form-wrap {
  grid-column: 2;
  grid-row: 1 / 2;
}

.map-wrap {
  grid-column: 1 / -1;
}

.map-wrap iframe {
  border-radius: var(--radius);
}

/* FOOTER */
.footer-main {
  background: rgba(7, 11, 25, 0.8);
  backdrop-filter: blur(10px);
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .logo-main {
  color: var(--white);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links li a i {
  font-size: 0.75rem;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li i {
  font-size: 0.75rem;
  color: var(--gold);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* FLOATING BUTTONS */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.instagram-float {
  position: fixed;
  bottom: 170px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(220, 39, 67, 0.4);
  transition: var(--transition);
}

.instagram-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(220, 39, 67, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 999;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

/* PARTICLES */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* =====================================================
   3D DESIGN SYSTEM
   ===================================================== */

/* 3D hero headline depth */
.hero-headline {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 0 rgba(0, 0, 0, 0.3), 0 3px 0 rgba(0, 0, 0, 0.25), 0 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px rgba(0, 0, 0, 0.4);
}

.gradient-text {
  text-shadow: none;
  filter: drop-shadow(0 4px 12px rgba(255, 109, 0, 0.4));
}

/* 3D perspective wrapper for all tiltable cards */
.services-grid,
.why-grid,
.pricing-grid,
.portfolio-grid {
  perspective: 1200px;
}

/* 3D SERVICE CARDS */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.service-card .service-icon {
  transform: translateZ(20px);
}

.service-card h3 {
  transform: translateZ(15px);
  display: block;
  position: relative;
}

/* 3D WHY CARDS */
.why-card {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.why-icon {
  transform: translateZ(18px);
  position: relative;
}

/* 3D PRICING CARDS */
.pricing-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.pricing-card.featured {
  box-shadow: 0 30px 80px rgba(21, 101, 192, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.plan-price {
  transform: translateZ(20px);
  position: relative;
}

.popular-badge {
  transform: translateZ(30px) translateX(-50%);
}

/* 3D PORTFOLIO CARDS */
.portfolio-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.portfolio-metrics {
  transform: translateZ(20px);
}

/* VanillaTilt glare element styling */
.js-tilt-glare {
  border-radius: inherit;
}

.js-tilt-glare-inner {
  background: linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.15) 100%) !important;
}

/* 3D FLOATING SHAPES */
.shape-3d {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: float3d linear infinite;
  transform-style: preserve-3d;
}

/* Ring shapes â€” match logo orbit rings */
.shape-ring-1 {
  width: 140px;
  height: 140px;
  border: 3px solid rgba(255, 85, 0, 0.45);
  border-radius: 50%;
  top: 12%;
  left: 8%;
  animation: spin3d 18s linear infinite;
  box-shadow: 0 0 30px rgba(255, 85, 0, 0.2), inset 0 0 30px rgba(255, 193, 7, 0.08);
}

.shape-ring-2 {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(124, 58, 237, 0.55);
  border-radius: 50%;
  top: 60%;
  right: 6%;
  animation: spin3d 12s linear infinite reverse;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}

/* Cube shapes */
.shape-cube-1 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.2), rgba(255, 193, 7, 0.1));
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: 8px;
  top: 30%;
  left: 5%;
  animation: rotateCube 20s linear infinite;
  box-shadow: 4px 4px 16px rgba(255, 85, 0, 0.15), inset 0 0 12px rgba(255, 255, 255, 0.05);
}

.shape-cube-2 {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 6px;
  bottom: 25%;
  left: 12%;
  animation: rotateCube 14s linear infinite reverse;
}

/* Sphere / dot cluster */
.shape-sphere-1 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 193, 7, 0.35), rgba(255, 85, 0, 0.08) 70%, transparent);
  border-radius: 50%;
  top: 70%;
  right: 15%;
  animation: pulse3d 6s ease-in-out infinite;
  filter: blur(1px);
}

.shape-sphere-2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 35% 35%, rgba(124, 58, 237, 0.35), rgba(168, 85, 247, 0.05) 70%, transparent);
  border-radius: 50%;
  top: 20%;
  right: 20%;
  animation: pulse3d 8s ease-in-out infinite 2s;
  filter: blur(0.5px);
}

/* Triangle */
.shape-triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(255, 193, 7, 0.18);
  top: 45%;
  right: 8%;
  animation: rotateCube 25s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.4));
  background: none;
  box-shadow: none;
  opacity: 0.7;
}

/* 3D shape animations */
@keyframes spin3d {
  0% {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotate(360deg) rotateX(180deg) rotateY(360deg);
  }
}

@keyframes rotateCube {
  0% {
    transform: rotate(0deg) rotateY(0deg) rotateX(0deg);
  }

  33% {
    transform: rotate(120deg) rotateY(120deg) rotateX(45deg);
  }

  66% {
    transform: rotate(240deg) rotateY(240deg) rotateX(90deg);
  }

  100% {
    transform: rotate(360deg) rotateY(360deg) rotateX(0deg);
  }
}

@keyframes pulse3d {

  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.15) translateY(-12px);
    opacity: 0.7;
  }
}

/* 3D HERO VISUAL â€” perspective depth on analytics cards */
.hero-visual {
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

.main-card {
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), -4px -4px 20px rgba(255, 255, 255, 0.03);
}

.main-card:hover {
  transform: rotateY(-3deg) rotateX(2deg) translateZ(20px);
}

/* 3D SECTION DIVIDERS â€” angled + glowing */
.services::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.services {
  position: relative;
}

/* 3D NEON GLOW BORDERS on dark cards */
.why-card:hover {
  border-color: rgba(255, 109, 0, 0.4);
  box-shadow: 0 8px 40px rgba(255, 109, 0, 0.12), 0 0 0 1px rgba(255, 109, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.testimonial-card {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* 3D STAT NUMBERS */
.stat-number {
  text-shadow: 0 2px 8px rgba(255, 193, 7, 0.5), 0 4px 20px rgba(255, 85, 0, 0.3);
}

/* 3D PROCESS STEP ICONS */
.step-icon {
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4), 4px 4px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-step:hover .step-icon {
  box-shadow: 0 16px 45px rgba(255, 85, 0, 0.5), 4px 4px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: scale(1.08) translateZ(10px);
}

/* 3D BUTTON DEPTH */
.btn-gold {
  box-shadow: 0 6px 0 rgba(150, 40, 0, 0.6), 0 8px 20px rgba(255, 85, 0, 0.4);
  transform: translateY(0);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 rgba(150, 40, 0, 0.5), 0 12px 30px rgba(255, 85, 0, 0.6);
}

.btn-gold:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(150, 40, 0, 0.6), 0 4px 12px rgba(255, 85, 0, 0.3);
}

/* 3D SECTION TAGS */
.section-tag {
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

/* 3D FOOTER GLOW */
.footer-main {
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.4);
}

/* GRID DOT PATTERN OVERLAY */
.hero-grid {
  background-image:
    radial-gradient(circle, rgba(124, 58, 237, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 85, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 85, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 40px 40px, 80px 80px, 80px 80px;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3)::after {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 800px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-full {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(7, 14, 31, 0.99) 0%, rgba(13, 12, 40, 0.99) 100%);
    backdrop-filter: blur(24px);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  }

  .nav-links.open li a {
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
    font-size: 1rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .stat-item {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .stat-label {
    margin-top: 0;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after {
    display: none;
  }

  .audit-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    grid-column: 1;
  }

  .map-wrap {
    grid-column: 1;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .portfolio-grid,
  .blog-grid,
  .pricing-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .brand-sep {
    display: none;
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.volumetric-streak {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-pink) 50%, transparent 100%);
  box-shadow: 0 0 40px 10px var(--neon-pink), 0 0 80px 20px var(--neon-purple);
  transform: translateY(-50%) skewY(-20deg);
  opacity: 0.6;
  z-index: 0;
  filter: blur(2px);
}


/* FIX: Mobile Menu Visibility Override */
@media (max-width: 800px) {
  .nav-links.open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    background: linear-gradient(135deg, #070e1f 0%, #0d1a35 100%) !important;
    position: fixed !important;
    top: 75px !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
  }
  .hamburger span { 
    background: #ffffff !important; 
    box-shadow: 0 0 10px rgba(255,255,255,0.5) !important;
  }
}
