/* ===================================================
   Proyectos Digitales — Dark Cyberpunk / Neon Theme
   =================================================== */

/* ─── Variables ─────────────────────────────────────── */
:root {
  --neon-cyan:      #00f5ff;
  --neon-blue:      #0066ff;
  --neon-purple:    #7c3aed;
  --neon-pink:      #f000b8;
  --dark-bg:        #030712;
  --dark-card:      rgba(15, 20, 40, 0.85);
  --dark-border:    rgba(0, 245, 255, 0.18);
  --glass-bg:       rgba(0, 245, 255, 0.05);
  --text-primary:   #f1f5f9;
  --text-muted:     #94a3b8;
  --gradient-hero:  linear-gradient(135deg, #030712 0%, #0a0f2e 50%, #0d0521 100%);
  --gradient-neon:  linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  --glow-cyan:      0 0 20px rgba(0,245,255,.4), 0 0 60px rgba(0,245,255,.15);
  --glow-purple:    0 0 20px rgba(124,58,237,.4), 0 0 60px rgba(124,58,237,.15);
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a  { color: var(--neon-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 3px; }

/* ─── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,4rem); }
h2 { font-size: clamp(1.5rem,4vw,2.8rem); }
h3 { font-size: clamp(1.2rem,3vw,1.8rem); }

.gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Universal neon-wire section heading ─────────────── */
.section-title h2,
.sec-h2 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon-cyan);
  paint-order: stroke fill;
  text-shadow: 0 0 28px rgba(0,245,255,.45), 0 0 70px rgba(0,245,255,.15);
}
.section-title h2 { margin-bottom: .75rem; }
.sec-h2 { margin-bottom: 1rem; }

/* highlighted keyword inside heading — solid filled neon for contrast */
.section-title h2 .gradient-text,
.sec-h2 .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-stroke: 0px transparent;
  -webkit-text-fill-color: var(--neon-cyan);
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0,245,255,.75), 0 0 50px rgba(0,245,255,.3);
}
.section-title p  { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ─── Layout ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; content-visibility: auto; contain-intrinsic-size: auto 600px; }

/* ─── Performance: pause hub pseudo-element animations ─── */
.pdh-wrapper.anim-paused .pdh-hub-wrap::before,
.pdh-wrapper.anim-paused .pdh-pulse {
  animation-play-state: paused !important;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-neon);
  color: #fff;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,245,255,.6), 0 0 80px rgba(0,245,255,.25);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}
.btn-outline:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  box-shadow: var(--glow-cyan);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ─── Cards / Glass ──────────────────────────────────── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.card-gradient-border {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  background: var(--gradient-neon);
}
.card-gradient-border > * {
  background: var(--dark-card);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
}

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3,7,18,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: .6rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img { height: 50px; }
.navbar-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: var(--transition);
}
.navbar-links a:hover, .navbar-links a.active { color: var(--neon-cyan); }
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }

.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--dark-border);
  color: var(--neon-cyan);
  padding: .5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 10% 40%, rgba(0,245,255,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(124,58,237,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: rgba(0,245,255,.06);
  animation: fadeInDown .6s ease forwards;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp .7s ease .1s both;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeInUp .7s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .3s both;
}

.hero-media {
  animation: fadeInRight .8s ease .2s both;
}

.hero-media img, .hero-media video {
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  box-shadow: var(--glow-cyan);
  width: 100%;
  object-fit: cover;
}

/* ─── Process Section ────────────────────────────────── */
.process-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #080e24 50%, var(--dark-bg) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.process-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.process-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  background: rgba(0,245,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan), inset 0 0 40px rgba(0,245,255,.05);
  position: relative;
  animation: pulse-ring 3s ease-in-out infinite;
}

.process-circle img { width: 120px; height: 120px; object-fit: contain; }

.process-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.process-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.process-card:hover { border-color: var(--neon-cyan); transform: translateX(4px); }
.process-card.right:hover { transform: translateX(-4px); }

.process-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ─── Services Grid ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-neon);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--neon-cyan); box-shadow: var(--glow-cyan); transform: translateY(-6px); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--gradient-neon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  box-shadow: var(--glow-cyan);
}

.service-card h3 { margin-bottom: .75rem; font-size: 1.15rem; }
.service-card p  { color: var(--text-muted); font-size: .9rem; }

/* ─── Logo Strip ─────────────────────────────────────── */
.logo-strip {
  padding: 2.5rem 0;
  background: rgba(0,245,255,.02);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}

.logo-strip-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.logo-strip-track img { height: 36px; opacity: .5; filter: grayscale(1); transition: var(--transition); }
.logo-strip-track img:hover { opacity: 1; filter: grayscale(0); }

/* ─── Portfolio ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.portfolio-item:hover { border-color: var(--neon-cyan); transform: scale(1.02); }

.portfolio-item img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
}

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,7,18,.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }

/* ─── Testimonials ───────────────────────────────────── */
.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--neon-cyan); box-shadow: var(--glow-cyan); }

.testimonial-card .quote {
  color: var(--neon-cyan);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .4;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
}

.testimonial-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  border: 2px solid var(--neon-cyan);
}

.star-rating { color: #f59e0b; font-size: .9rem; }

/* ─── Creator / Profile ──────────────────────────────── */
.creator-section {
  background: linear-gradient(135deg, rgba(0,245,255,.04), rgba(124,58,237,.04));
}

.creator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.creator-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.creator-image img {
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  width: 100%;
  box-shadow: var(--glow-purple);
}
.creator-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: var(--gradient-neon);
  z-index: -1;
  opacity: .4;
}

.creator-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2rem; font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  background: var(--dark-card);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active, .faq-item:hover { border-color: var(--neon-cyan); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  gap: 1rem;
}
.faq-question:hover { color: var(--neon-cyan); }

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--neon-cyan);
  font-size: .9rem;
}
.faq-item.active .faq-toggle {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  transition: padding .25s ease;
}
.faq-item.active .faq-answer-inner { padding-bottom: 1.5rem; }

/* ─── Footer ─────────────────────────────────────────── */
footer {
  background: #020509;
  padding: 1.25rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p { color: var(--text-muted); font-size: .9rem; margin-top: 1rem; }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: var(--transition);
}
.social-icon:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0,245,255,.08);
  box-shadow: var(--glow-cyan);
}

.footer-col h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--neon-cyan); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: var(--text-muted); font-size: .9rem; }
.footer-col ul a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Floating Elements / Particles ─────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .15;
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}

.glow-orb-1 {
  width: 400px; height: 400px;
  background: var(--neon-cyan);
  top: -100px; left: -100px;
}
.glow-orb-2 {
  width: 300px; height: 300px;
  background: var(--neon-purple);
  bottom: 0; right: -50px;
  animation-delay: -4s;
}

/* ─── Niche Section ──────────────────────────────────── */
.niche-highlight {
  background: linear-gradient(135deg, rgba(0,245,255,.06), rgba(124,58,237,.06));
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.niche-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,245,255,.05), transparent);
}

.niche-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin: 2rem 0;
}

.niche-badge {
  padding: .5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--dark-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  font-size: .85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.niche-badge:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ─── WhatsApp Floating ──────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.6);
  color: #fff;
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%,100% { box-shadow: var(--glow-cyan), inset 0 0 40px rgba(0,245,255,.05); }
  50%      { box-shadow: 0 0 40px rgba(0,245,255,.6), 0 0 80px rgba(0,245,255,.25), inset 0 0 40px rgba(0,245,255,.08); }
}
@keyframes float-orb {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%     { transform: translate(30px, -30px) scale(1.05); }
  66%     { transform: translate(-20px, 20px) scale(.95); }
}
@keyframes whatsapp-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%     { box-shadow: 0 4px 40px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Scroll Reveal ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
/* On mobile skip reveal animations entirely — prevents black-screen when observer fires late */
@media (max-width: 768px) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── Badges / Tags ──────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-primary { background: rgba(0,245,255,.15); color: var(--neon-cyan); border: 1px solid rgba(0,245,255,.3); }
.badge-purple  { background: rgba(124,58,237,.15); color: #a78bfa; border: 1px solid rgba(124,58,237,.3); }

/* ─── Forms ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: .5rem; font-size: .9rem; color: var(--text-muted); font-weight: 500; }

.form-control {
  width: 100%;
  padding: .85rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: .95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  background: rgba(0,245,255,.04);
  box-shadow: 0 0 0 3px rgba(0,245,255,.1);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control option { background: #0d1117; }

.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.alert-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.3);  color: #f87171; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-media    { order: -1; }
  .creator-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .process-center { order: -1; flex-direction: row; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(3,7,18,.98); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--dark-border); }
  .navbar-links.open { display: flex; }
  .navbar-toggle { display: flex; }
  .section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .niche-highlight { padding: 2.5rem 1.5rem; }
  .creator-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid, .portfolio-grid, .testimonials-carousel { grid-template-columns: 1fr; }
}
