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

:root {
  --bg: #1A1A1A;
  --lime: #C7FF00;
  --purple: #6C3CFF;
  --pink: #FF3DBE;
  --orange: #FF6A00;
  --cyan: #00E7FF;
  --white: #FFFFFF;
  --gray: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --font-title: 'Urbanist', sans-serif;
  --font-body: 'Sora', sans-serif;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 99px; }

/* =========================================
   NAVIGATION
========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(26,26,26,0.7);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s var(--transition);
}

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

.nav-logo-icon {
  width: 30px;
  height: 30px;
}

.nav-logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--lime);
  color: #000 !important;
  font-weight: 600 !important;
  padding: 10px 22px;
  border-radius: 99px;
  transition: all 0.3s var(--transition) !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(199,255,0,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

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

/* Animated mesh gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(108,60,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(199,255,0,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 70% 80%, rgba(255,61,190,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,231,255,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(255,106,0,0.15) 0%, transparent 65%);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { opacity: 0.7; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;   transform: scale(1.05) rotate(2deg); }
}

/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatParticle var(--dur, 8s) ease-in-out infinite alternate;
}

@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

/* Geometric floating shapes */
.geo-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: geoFloat var(--dur, 10s) ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes geoFloat {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
  50%  { transform: translate(15px, -20px) rotate(90deg); opacity: 1; }
  100% { transform: translate(-10px, 10px) rotate(180deg); opacity: 0.6; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s var(--transition) both;
}

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

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

.hero-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.9s var(--transition) 0.1s both;
}

.hero-logo-icon {
  width: 72px;
  height: 72px;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 600; 
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 0 80px rgba(199,255,0,0.15);
}

.hero-catchphrase {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin: 20px 0 20px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--cyan) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideUp 1s var(--transition) 0.2s both;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeSlideUp 1s var(--transition) 0.3s both;
}

.hero-description span {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s var(--transition) 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 40px rgba(199,255,0,0.55), 0 0 60px rgba(199,255,0,0.25);
}

.btn-primary:hover::before { opacity: 1; }

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.35s var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.btn-secondary:hover {
  transform: scale(1.04) translateY(-2px);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(108,60,255,0.4);
}

.btn-secondary:hover::after { opacity: 1; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s var(--transition) 0.8s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--lime));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--lime));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

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

/* =========================================
   SECTION COMMON
========================================= */
section { padding: 120px 5%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 5600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

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

/* =========================================
   SERVICES SECTION
========================================= */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
  position: relative;
  padding: 80px 5%;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

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

.service-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  overflow: hidden;
  backdrop-filter: blur(12px);
  min-width: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c1, #C7FF00), var(--c2, #6C3CFF));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--glow, rgba(199,255,0,0.08)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

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

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: transform 0.3s var(--transition);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.service-card .arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s var(--transition);
  opacity: 0;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translate(-4px, -4px);
}

/* =========================================
   PORTFOLIO SECTION
========================================= */
.portfolio {
  position: relative;
  overflow: hidden;
  padding: 80px 5%;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--transition), box-shadow 0.4s;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  aspect-ratio: 16 / 10;
  min-width: 0;
}

.portfolio-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}

.portfolio-item-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portfolio-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

/* Portfolio overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(26,26,26,0.3));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-content h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-overlay-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   DIFFERENTIALS SECTION
========================================= */
.differentials {
  background: linear-gradient(135deg, #0f0f0f 0%, var(--bg) 100%);
  position: relative;
}

.differentials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.differentials-left .section-title {
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.differentials-left p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.diff-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent, var(--lime));
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--transition);
}

.diff-item:hover { border-color: rgba(255,255,255,0.2); transform: translateX(6px); }
.diff-item:hover::before { transform: scaleY(1); }

.diff-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.diff-item h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.diff-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,60,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  transition: all 0.4s var(--transition);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c1, rgba(108,60,255,0.5)), var(--c2, rgba(255,61,190,0.5)));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--lime);
  font-family: var(--font-title);
  font-weight: 900;
  margin-bottom: 16px;
  display: block;
}

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

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.stars {
  color: var(--lime);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about {
  position: relative;
  overflow: hidden;
}

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

.about-visual {
  position: relative;
  height: 480px;
}

.about-visual-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(108,60,255,0.15), rgba(255,61,190,0.1));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: blobMove 8s ease-in-out infinite alternate;
}

@keyframes blobMove {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.05); }
}

.about-stat-card {
  position: absolute;
  background: rgba(26,26,26,0.95);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  backdrop-filter: blur(20px);
}

.about-stat-card h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.about-stat-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.about-content .section-label { margin-bottom: 20px; }

.about-content .section-title {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content > p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s var(--transition);
}

.about-value:hover { border-color: rgba(255,255,255,0.2); transform: translateX(6px); }

.about-value-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-value span:last-child {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* =========================================
   CTA FINAL SECTION
========================================= */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 5%;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(108,60,255,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(199,255,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255,61,190,0.2) 0%, transparent 60%);
  animation: ctaBgPulse 8s ease-in-out infinite alternate;
}

@keyframes ctaBgPulse {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-final h2 span {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 44px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 44px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.35s var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 16px 56px rgba(37,211,102,0.5);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: #0f0f0f;
  border-top: 1px solid var(--glass-border);
  padding: 60px 5% 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-contact-icon { font-size: 1rem; flex-shrink: 0; }

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s var(--transition);
}

.social-btn:hover { background: var(--purple); border-color: var(--purple); color: var(--white); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: var(--lime);
  text-decoration: none;
}

/* =========================================
   GRADIENT BORDER UTILITY
========================================= */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--lime), var(--purple), var(--pink));
  z-index: -1;
  opacity: 0.6;
}

/* =========================================
   NUMBERS/STATS BAR
========================================= */
.stats-bar {
  background: #0f0f0f;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 48px 5%;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================
   MARQUEE
========================================= */
.marquee-section {
  padding: 32px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, var(--bg), #0f0f0f);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track2 {
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .differentials-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 80px 5%; }
  nav { padding: 16px 5%; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(15,15,15,0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 5%; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-catchphrase { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .hero-logo-icon { width: 50px; height: 50px; }

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

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

  .portfolio-item:nth-child(4) { grid-column: span 2; }
  .portfolio-item:nth-child(5) { grid-column: span 1; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .differentials-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-scroll-indicator { bottom: 20px; }
  .hero-scroll-line { height: 35px; }
  .hero-scroll-text { font-size: 0.6rem; }
}/* =========================================
   COMPONENT UTILITIES
========================================= */
.text-highlight {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.text-gradient--lime-cyan {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient--pink-purple {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient--orange-pink {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.portfolio-summary {
  color: rgba(255, 255, 255, 0.5);
  max-width: 395px;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}
.text-center { text-align: center; }

.about-logo {
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 2;
  object-fit: contain;
  animation: logoFloat 6s ease-in-out infinite alternate;
}

.hero .shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(199,255,0,0.12);
  top: 15%;
  left: 8%;
  --dur: 9s;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
.hero .shape-2 {
  width: 80px;
  height: 80px;
  background: rgba(108,60,255,0.2);
  top: 25%;
  right: 10%;
  --dur: 12s;
  border-radius: 50%;
}
.hero .shape-3 {
  width: 60px;
  height: 60px;
  background: rgba(255,61,190,0.2);
  bottom: 25%;
  left: 15%;
  --dur: 7s;
  border-radius: 50% 20% 50% 20%;
}
.hero .shape-4 {
  width: 100px;
  height: 100px;
  background: rgba(0,231,255,0.12);
  bottom: 20%;
  right: 12%;
  --dur: 11s;
  border-radius: 20% 60% 40% 80%;
}
.hero .shape-5 {
  width: 45px;
  height: 45px;
  background: rgba(255,106,0,0.25);
  top: 60%;
  left: 5%;
  --dur: 8s;
  border-radius: 50%;
}
.hero .shape-6 {
  width: 35px;
  height: 35px;
  background: rgba(199,255,0,0.3);
  top: 70%;
  right: 6%;
  --dur: 6s;
  border-radius: 50%;
}

.particle-lime {
  width: 4px;
  height: 4px;
  background: var(--lime);
  top: 20%;
  left: 30%;
  box-shadow: 0 0 12px var(--lime);
  --dur: 5s;
}
.particle-cyan {
  width: 4px;
  height: 4px;
  background: var(--cyan);
  top: 40%;
  right: 25%;
  box-shadow: 0 0 12px var(--cyan);
  --dur: 7s;
}
.particle-pink {
  width: 3px;
  height: 3px;
  background: var(--pink);
  top: 70%;
  left: 40%;
  box-shadow: 0 0 10px var(--pink);
  --dur: 9s;
}
.particle-purple {
  width: 5px;
  height: 5px;
  background: var(--purple);
  top: 30%;
  right: 40%;
  box-shadow: 0 0 14px var(--purple);
  --dur: 6s;
}
.particle-orange {
  width: 3px;
  height: 3px;
  background: var(--orange);
  bottom: 30%;
  left: 20%;
  box-shadow: 0 0 10px var(--orange);
  --dur: 8s;
}

.dot-lime { background: var(--lime); }
.dot-purple { background: var(--purple); }
.dot-pink { background: var(--pink); }
.dot-orange { background: var(--orange); }
.dot-cyan { background: var(--cyan); }

.stat-value { font-family: var(--font-title); }
.stat-lime { color: var(--lime); }
.stat-purple { color: var(--purple); }
.stat-pink { color: var(--pink); }
.stat-cyan { color: var(--cyan); }

.service-card--lime { --c1: #C7FF00; --c2: #00E7FF; --glow: rgba(199,255,0,0.1); }
.service-card--purple { --c1: #6C3CFF; --c2: #FF3DBE; --glow: rgba(108,60,255,0.1); }
.service-card--orange { --c1: #FF6A00; --c2: #C7FF00; --glow: rgba(255,106,0,0.1); }
.service-card--pink { --c1: #FF3DBE; --c2: #6C3CFF; --glow: rgba(255,61,190,0.1); }
.service-card--cyan { --c1: #00E7FF; --c2: #6C3CFF; --glow: rgba(0,231,255,0.1); }
.service-card--lime-alt { --c1: #C7FF00; --c2: #FF6A00; --glow: rgba(199,255,0,0.1); }

.service-icon-wrapper--lime { background: rgba(199,255,0,0.12); }
.service-icon-wrapper--purple { background: rgba(108,60,255,0.15); }
.service-icon-wrapper--orange { background: rgba(255,106,0,0.12); }
.service-icon-wrapper--pink { background: rgba(255,61,190,0.12); }
.service-icon-wrapper--cyan { background: rgba(0,231,255,0.1); }
.service-icon-wrapper--lime-alt { background: rgba(199,255,0,0.1); }

.portfolio-mockup--box { background: linear-gradient(135deg,#1a1a1a,#252525); }
.portfolio-mockup--bag { background: linear-gradient(135deg,#111,#1e1e1e); }
.portfolio-mockup--cup { background: linear-gradient(135deg,#0f0f0f,#1a1a1a); }
.portfolio-mockup--card { background: linear-gradient(135deg,#111,#1e1e1e); }
.portfolio-mockup--social { background: linear-gradient(135deg,#0f0f0f,#1a1a1a); }

.diff-item--lime { --accent: var(--lime); }
.diff-item--purple { --accent: var(--purple); }
.diff-item--pink { --accent: var(--pink); }
.diff-item--orange { --accent: var(--orange); }
.diff-item--cyan { --accent: var(--cyan); }
.diff-item--lime-alt { --accent: var(--lime); }

.testimonial-card--purple { --c1: rgba(108,60,255,0.5); --c2: rgba(255,61,190,0.5); }
.testimonial-card--cyan { --c1: rgba(199,255,0,0.4); --c2: rgba(0,231,255,0.4); }
.testimonial-card--orange { --c1: rgba(255,106,0,0.4); --c2: rgba(199,255,0,0.4); }

.testimonial-quote--cyan { color: var(--cyan); }
.testimonial-quote--orange { color: var(--orange); }

.avatar-purple { background: linear-gradient(135deg,var(--purple),var(--pink)); }
.avatar-cyan { background: linear-gradient(135deg,var(--cyan),var(--purple)); }
.avatar-orange { background: linear-gradient(135deg,var(--orange),var(--pink)); }

.about-blob--purple { width: 300px; height: 300px; background: var(--purple); top: 10%; left: 10%; }
.about-blob--pink { width: 200px; height: 200px; background: var(--pink); bottom: 10%; right: 10%; animation-delay: 3s; }
.about-blob--lime { width: 150px; height: 150px; background: var(--lime); top: 50%; left: 40%; animation-delay: 1.5s; }

.about-stat-card--top-right { top: -20px; right: -20px; }
.about-stat-card--bottom-left { bottom: -20px; left: -20px; }

.footer-socials { margin-top: 20px; }
.footer-cta-wrapper { margin-top: 20px; }
.footer-cta { font-size: 0.85rem; padding: 12px 24px; }
