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

:root {
  --bg: #0a0e14;
  --bg-elevated: #0d1219;
  --bg-card: #111920;
  --text: #f0f2f5;
  --text-muted: #7a8ba0;
  --teal: #14b8a6;
  --teal-light: #2dd4bf;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --gold: #d4a017;
  --gold-light: #eab308;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --navy: #1e3a5f;
  --navy-light: #2563eb;
  --amber: #f59e0b;
  --gradient-hero: linear-gradient(135deg, #14b8a6, #3b82f6, #d4a017);
  --gradient-warm: linear-gradient(135deg, #d4a017, #f59e0b);
  --gradient-cool: linear-gradient(135deg, #14b8a6, #3b82f6);
  --gradient-sunset: linear-gradient(135deg, #d4a017, #14b8a6);
  --gradient-neon: linear-gradient(135deg, #06b6d4, #14b8a6);
  --border: rgba(20,184,166,0.12);
  --radius: 16px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   ANIMATED BACKGROUND BLOBS
   ═══════════════════════════════════════ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(15px, 30px) scale(1.05); }
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10,14,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-lang {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: var(--teal-light);
  transition: var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-lang:hover {
  border-color: var(--teal);
  background: rgba(20,184,166,0.1);
}

.nav-links .nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--gradient-hero);
  color: #fff !important;
  border-radius: 100px;
  transition: var(--transition);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20,184,166,0.4);
  color: #fff !important;
  background: var(--gradient-hero);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.hero .blob-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.hero .blob-2 {
  width: 500px; height: 500px;
  background: var(--blue);
  top: 20%; right: -10%;
  animation-delay: -5s;
}

.hero .blob-3 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: -5%; left: 30%;
  animation-delay: -10s;
}

.hero .blob-4 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: 20%; right: 15%;
  animation-delay: -15s;
  opacity: 0.25;
}

/* Grid pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 8px 24px;
  border-radius: 100px;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.2);
  color: var(--teal);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gradient-hero);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(20,184,166,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: rgba(20,184,166,0.06);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid rgba(20,184,166,0.25);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(20,184,166,0.12);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */
section { padding: 120px 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  line-height: 1.7;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  position: relative;
  overflow: hidden;
}

.services .blob-s1 {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: 10%; right: -10%;
  opacity: 0.15;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(20,184,166,0.1);
  border-radius: var(--radius);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,184,166,0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: opacity var(--transition);
  opacity: 0;
}

.service-card:nth-child(1)::before { background: var(--gradient-warm); }
.service-card:nth-child(2)::before { background: var(--gradient-cool); }
.service-card:nth-child(3)::before { background: var(--gradient-neon); }

.service-card:hover {
  border-color: rgba(20,184,166,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(20,184,166,0.12);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(245,158,11,0.12));
  color: var(--gold);
}
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(20,184,166,0.12));
  color: var(--blue);
}
.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(6,182,212,0.12));
  color: var(--cyan);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.service-tag {
  font-size: 0.7rem;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-card:nth-child(1) .service-tag {
  background: rgba(212,160,23,0.08);
  color: var(--gold);
  border: 1px solid rgba(212,160,23,0.15);
}
.service-card:nth-child(2) .service-tag {
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  border: 1px solid rgba(59,130,246,0.15);
}
.service-card:nth-child(3) .service-tag {
  background: rgba(6,182,212,0.08);
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.15);
}

/* ═══════════════════════════════════════
   WORK / PORTFOLIO
   ═══════════════════════════════════════ */
.work {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.work .blob-w1 {
  width: 500px; height: 500px;
  background: var(--blue);
  bottom: -10%; left: -10%;
  opacity: 0.1;
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-item:hover {
  border-color: rgba(20,184,166,0.3);
  box-shadow: 0 8px 40px rgba(20,184,166,0.12);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-item:hover img { transform: scale(1.05); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.work-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.work-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.work-overlay .work-type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}

.work-item:nth-child(1) .work-type { background: var(--gradient-warm); color: #fff; }
.work-item:nth-child(2) .work-type { background: var(--gradient-cool); color: #fff; }
.work-item:nth-child(3) .work-type { background: var(--gradient-neon); color: #fff; }

.work-item.featured {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.work-item:hover .play-btn {
  background: var(--teal);
  border-color: var(--teal-light);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(20,184,166,0.5);
}

.play-btn svg { margin-left: 3px; }

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

.about .blob-a1 {
  width: 400px; height: 400px;
  background: var(--gold);
  top: 20%; right: 0;
  opacity: 0.1;
}

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

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--gradient-hero) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about-text .section-desc { margin-bottom: 40px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stats > div:nth-child(1) .stat-number { color: var(--teal-light); }
.about-stats > div:nth-child(2) .stat-number { color: var(--gold-light); }
.about-stats > div:nth-child(3) .stat-number { color: var(--blue); }

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   CHANNELS
   ═══════════════════════════════════════ */
.channels {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.channels .blob-c1 {
  width: 350px; height: 350px;
  background: var(--cyan);
  top: 30%; left: -5%;
  opacity: 0.1;
}

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

.channel-card {
  background: var(--bg-card);
  border: 1px solid rgba(20,184,166,0.1);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,184,166,0.06);
}

.channel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity var(--transition);
}

.channel-card:nth-child(1)::after { background: radial-gradient(circle at center, rgba(212,160,23,0.05) 0%, transparent 70%); }
.channel-card:nth-child(2)::after { background: radial-gradient(circle at center, rgba(20,184,166,0.05) 0%, transparent 70%); }
.channel-card:nth-child(3)::after { background: radial-gradient(circle at center, rgba(212,160,23,0.05) 0%, transparent 70%); }

.channel-card:hover::after { opacity: 1; }

.channel-card:hover {
  border-color: rgba(20,184,166,0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(20,184,166,0.1);
}

.channel-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.channel-card:nth-child(1) .channel-icon {
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.04));
}
.channel-card:nth-child(1) .channel-icon svg { fill: var(--gold); }

.channel-card:nth-child(2) .channel-icon {
  background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(20,184,166,0.04));
}
.channel-card:nth-child(2) .channel-icon svg { fill: var(--blue); }

.channel-card:nth-child(3) .channel-icon {
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.04));
}
.channel-card:nth-child(3) .channel-icon svg { fill: var(--teal); }

.channel-icon svg {
  width: 28px;
  height: 28px;
}

.channel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.channel-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.channel-link {
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.channel-card:nth-child(1) .channel-link { color: var(--gold); }
.channel-card:nth-child(2) .channel-link { color: var(--blue); }
.channel-card:nth-child(3) .channel-link { color: var(--teal); }

.channel-link:hover { gap: 10px; }

.channel-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ═══════════════════════════════════════
   CTA / CONTACT
   ═══════════════════════════════════════ */
.cta-section {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .blob-cta1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}

.cta-section .blob-cta2 {
  width: 350px; height: 350px;
  background: var(--blue);
  top: 20%; right: 10%;
  opacity: 0.08;
  animation-delay: -7s;
}

.cta-section .section-title {
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-section .section-desc {
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: center;
}

.cta-methods {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.cta-method { text-align: center; }

.cta-method-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  font-weight: 600;
}

.cta-method-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-method-value a {
  color: var(--text);
  transition: var(--transition);
}

.cta-method:nth-child(1) .cta-method-value a:hover { color: var(--teal-light); }
.cta-method:nth-child(2) .cta-method-value a:hover { color: var(--cyan); }
.cta-method:nth-child(3) .cta-method-value a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════
   BUDGET CALCULATOR
   ═══════════════════════════════════════ */
.calc-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.calc-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.calc-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.calc-tab {
  flex: 1;
  padding: 18px 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
}

.calc-tab:hover {
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.calc-tab.active {
  color: var(--teal-light);
}

.calc-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gradient-hero);
  border-radius: 2px;
}

.calc-body {
  padding: 40px 36px;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
}

.calc-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.calc-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.calc-option:hover {
  border-color: var(--teal);
  background: rgba(20,184,166,0.05);
}

.calc-option.selected {
  border-color: var(--teal);
  background: rgba(20,184,166,0.08);
  box-shadow: 0 0 20px rgba(20,184,166,0.1);
}

.calc-option-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-option-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.calc-option-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
  flex-shrink: 0;
}

.calc-option.selected .calc-option-radio {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--bg-card);
}

.calc-option.calc-free {
  border-style: dashed;
  border-color: var(--gold);
}

.calc-option.calc-free:hover {
  border-color: var(--gold-light);
  background: rgba(212,160,23,0.05);
}

.calc-option.calc-free.selected {
  border-color: var(--gold);
  background: rgba(212,160,23,0.08);
  box-shadow: 0 0 20px rgba(212,160,23,0.1);
}

.calc-option.calc-free.selected .calc-option-radio {
  border-color: var(--gold);
  background: var(--gold);
}

.calc-free-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(212,160,23,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.calc-result {
  display: none;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 16px;
}

.calc-result.show {
  display: block;
  animation: calcReveal 0.4s ease;
}

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

.calc-result-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.calc-result-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.calc-result-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

.calc-result-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: var(--gradient-hero);
  color: #fff;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.calc-result-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20,184,166,0.3);
}

.calc-days {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.calc-days-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-days-btn:hover {
  border-color: var(--teal);
  background: rgba(20,184,166,0.1);
}

.calc-days-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  min-width: 50px;
  text-align: center;
}

.calc-days-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 24px;
}

.calc-counter {
  display: none;
}

.calc-counter.show {
  display: block;
  animation: calcReveal 0.4s ease;
}

.calc-discount {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  min-height: 1.2em;
}

@media (max-width: 768px) {
  .calc-body { padding: 28px 20px; }
  .calc-tab { font-size: 0.7rem; padding: 14px 8px; }
  .calc-result-price { font-size: 2rem; }
}

/* ═══════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════ */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.marquee {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 40px;
  color: var(--text);
  opacity: 0.15;
}

.marquee-item .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 24px;
  vertical-align: middle;
}

.marquee-item:nth-child(odd) .dot { background: var(--teal); }
.marquee-item:nth-child(even) .dot { background: var(--blue); }

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

/* ═══════════════════════════════════════
   CLIENTS BAR
   ═══════════════════════════════════════ */
.clients-bar {
  padding: 60px 0 48px;
  overflow: hidden;
  position: relative;
}

.clients-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.clients-track {
  display: flex;
  animation: clientsScroll 35s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 32px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.client-name:hover {
  opacity: 1;
  color: var(--teal-light);
}

.client-name::after {
  content: '·';
  margin-left: 32px;
  color: var(--gold);
  opacity: 0.4;
}

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

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.footer-socials a {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
}

.footer-socials a:nth-child(1):hover { color: var(--teal); }
.footer-socials a:nth-child(2):hover { color: var(--gold); }
.footer-socials a:nth-child(3):hover { color: var(--blue); }
.footer-socials a:nth-child(4):hover { color: var(--teal-light); }
.footer-socials a:nth-child(5):hover { color: var(--text); }
.footer-socials a:nth-child(6):hover { color: var(--gold-light); }

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid,
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,14,20,0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }

  .hero h1 { font-size: 2.5rem; }

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

  .work-item.featured {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { aspect-ratio: 3/2; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-number { font-size: 1.8rem; }

  .work-header { flex-direction: column; align-items: flex-start; gap: 24px; }

  .cta-methods { flex-direction: column; gap: 24px; }

  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-left { flex-direction: column; gap: 8px; }

  .marquee-item { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bilingual toggle */
[data-lang="en"] [data-es],
[data-lang="es"] [data-en] {
  display: none;
}

/* Club Audiovisual is Spanish-only */
[data-lang="en"] .calc-free {
  display: none;
}

/* Channels section is Spanish-only */
[data-lang="en"] .channels {
  display: none;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  position: relative;
  overflow: hidden;
}

.faq .blob-f1 {
  width: 400px; height: 400px;
  background: var(--teal);
  top: 20%; left: -10%;
  opacity: 0.08;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(20,184,166,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(20,184,166,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--teal-light);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SERVICES TABLE
   ═══════════════════════════════════════ */
.services-comparison {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid rgba(20,184,166,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.services-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.services-comparison th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(20,184,166,0.03);
}

.services-comparison td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(20,184,166,0.06);
}

.services-comparison tr:last-child td {
  border-bottom: none;
}

.services-comparison td:first-child {
  font-weight: 600;
  color: var(--teal-light);
}

.check-mark { color: var(--teal-light); }
.dash-mark { color: var(--text-muted); opacity: 0.4; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .services-comparison { overflow-x: auto; }
  .services-comparison table { min-width: 500px; }
}
