/* ====================================================================
   KVtools - Hoja de estilos principal
   Migración de Tailwind v4 (@theme + @utility) a CSS puro.
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens de diseño (antes en @theme) ---------- */
:root {
  --color-kv-black: #050505;
  --color-kv-dark: #0A0A0A;
  --color-kv-gray-dark: #1F1F1F;
  --color-kv-orange: #FF5A00;
  --color-kv-orange-hot: #FF3B00;
  --color-kv-white: #FFFFFF;
  --color-kv-gray-light: #A1A1AA;
  --color-kv-surface: #0A0A0A;
  --color-kv-card: #121212;
  --color-kv-border: #27272A;

  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-accent: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: var(--color-kv-black);
  color: var(--color-kv-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-kv-orange);
  color: var(--color-kv-black);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

img { max-width: 100%; display: block; }

h1, h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* Scrollbar personalizado */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-kv-dark); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-kv-orange); }

/* ---------- Utilidades de capa (antes @utility) ---------- */
.bg-kv-gradient-hero {
  background: radial-gradient(circle at top right, #2a1200 0%, #0d0d0d 60%);
}
.bg-kv-gradient-orange {
  background: linear-gradient(135deg, #F47920, #FF6B00);
}
.bg-kv-gradient-card {
  background: linear-gradient(180deg, #1E1E1E 0%, #141414 100%);
}

.glass-panel {
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.shadow-kv-glow {
  box-shadow: 0 0 40px rgba(244, 121, 32, 0.2);
}

.bg-grid-pattern {
  background-size: 32px 32px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.text-glow {
  text-shadow: 0 0 30px rgba(244, 121, 32, 0.4);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}
.animate-pulse { animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-kv-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn:hover { background: rgba(255, 255, 255, 0.1); }

.btn-primary {
  background: linear-gradient(135deg, #F47920, #FF6B00);
  color: var(--color-kv-black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(244, 121, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--color-kv-white);
  color: var(--color-kv-black);
  border-color: var(--color-kv-white);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 0.5rem 1.25rem; font-size: 12px; }

/* ---------- Reveal con IntersectionObserver ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===========================================================
   LAYOUT - NAVBAR
   =========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  overflow: hidden;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.navbar.scrolled {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 90, 0, 0.05) 0%, transparent 50%, rgba(255, 90, 0, 0.05) 100%);
  opacity: 0.5;
  pointer-events: none;
}
.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.navbar-links a {
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0.5rem;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--color-kv-orange);
}
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-kv-orange);
}
.navbar-mobile-btn {
  position: absolute;
  right: 1.5rem;
  color: var(--color-kv-white);
  transition: color 0.3s ease;
  z-index: 10;
}
.navbar-mobile-btn:hover { color: var(--color-kv-orange); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(48px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  text-align: center;
}
.mobile-menu a {
  display: block;
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-kv-orange);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-mobile-btn { display: none; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background: var(--color-kv-black);
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.hero-slide-bg.active { opacity: 1; }
.hero-slide-bg .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg .grad-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.4), transparent);
  mix-blend-mode: multiply;
}
.hero-slide-bg .grad-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-kv-black), transparent, transparent);
  opacity: 0.9;
}
.hero-slide-bg .grad-3 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8rem 1.5rem 2rem;
}
@media (min-width: 1024px) {
  .hero-content { padding: 8rem 4rem 2rem; }
}
.hero-text-wrap {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 64rem;
  position: relative;
  min-height: 400px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
  width: fit-content;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--color-kv-orange);
}
.hero-badge span:last-child {
  font-size: 10px;
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  color: var(--color-kv-orange);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.25rem, 6vw, 5rem);
  max-width: 60rem;
  text-transform: none;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.hero-controls {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
}
.hero-indicators {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
}
.hero-indicator-num {
  font-size: 10px;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}
.hero-indicator.active .hero-indicator-num { color: var(--color-kv-orange); }

.hero-indicator-bar {
  height: 4px;
  border-radius: 9999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  width: 2rem;
  transition: all 0.5s ease;
  display: none;
}
.hero-indicator.active .hero-indicator-bar { width: 6rem; }
@media (min-width: 640px) { .hero-indicator-bar { display: block; } }

.hero-indicator-fill {
  height: 100%;
  background: var(--color-kv-orange);
  width: 0;
  transition: none;
}
.hero-indicator.active .hero-indicator-fill {
  animation: heroFill 6s linear forwards;
}
@keyframes heroFill { from { width: 0; } to { width: 100%; } }

.hero-nav-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}
@media (min-width: 640px) {
  .hero-nav-btns { border-left: none; padding-left: 0; margin-left: 0; }
}
.hero-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.hero-nav-btn:hover {
  background: var(--color-kv-orange);
  border-color: var(--color-kv-orange);
  color: black;
}

.hero-trustbar {
  position: relative;
  z-index: 30;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}
@media (min-width: 768px) { .hero-trustbar { height: 90px; } }
.hero-trustbar-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) { .hero-trustbar-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.trust-item:hover { background: rgba(255, 255, 255, 0.05); }
.trust-item-title {
  font-size: 11px;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-kv-orange);
  margin-bottom: 0.25rem;
}
.trust-item-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  display: none;
}
@media (min-width: 768px) { .trust-item-sub { display: block; } }

.trust-item.hide-mobile { display: none; }
@media (min-width: 768px) { .trust-item.hide-mobile { display: flex; } }

.trust-item-cta {
  background: rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .trust-item-cta { background: transparent; }
}
.trust-item-cta .trust-item-title { color: white; transition: color 0.3s ease; }
.trust-item-cta:hover { background: rgba(255, 90, 0, 0.1); }
.trust-item-cta:hover .trust-item-title { color: var(--color-kv-orange); }

/* ===========================================================
   BRAND MARQUEE
   =========================================================== */
.brand-marquee {
  background: var(--color-kv-black);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 20;
}
.brand-marquee::before,
.brand-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 640px) {
  .brand-marquee::before, .brand-marquee::after { width: 12rem; }
}
.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-kv-black), transparent);
}
.brand-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-kv-black), transparent);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  min-width: 100%;
  align-items: center;
  animation: marquee 30s linear infinite;
}
.brand-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 2rem;
}
.brand-name {
  font-size: 12px;
  font-family: var(--font-accent);
  font-weight: 900;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}
.brand-name:hover { color: rgba(255, 255, 255, 0.8); }
.brand-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.2);
  margin: 0 2rem;
  display: none;
}
@media (min-width: 640px) { .brand-dot { display: block; } }

/* ===========================================================
   SECCIONES generales
   =========================================================== */
.section {
  padding: 8rem 0;
  position: relative;
}
.section-surface { background: var(--color-kv-surface); }
.section-black   { background: var(--color-kv-black); }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-glow-1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 800px;
  height: 800px;
  background: rgba(255, 90, 0, 0.05);
  filter: blur(150px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.section-glow-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: rgba(255, 90, 0, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 5rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-kv-orange);
  box-shadow: 0 0 10px rgba(244, 121, 32, 0.8);
}
.badge-pill .text {
  font-size: 10px;
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  color: var(--color-kv-orange);
  text-transform: uppercase;
  font-weight: 700;
}

.h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  text-transform: none;
}
.h2-gradient {
  background: linear-gradient(90deg, var(--color-kv-white), var(--color-kv-gray-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 6rem;
  }
  .about-col { width: 50%; }
}
.about-text-h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  color: white;
  text-transform: none;
}
.about-para {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.about-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  font-size: 14px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-kv-gray-light);
  transition: color 0.3s ease;
}
.about-explore:hover { color: white; }
.about-explore-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.about-explore:hover .about-explore-arrow {
  background: var(--color-kv-orange);
  color: black;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
}
.bento-card {
  padding: 2.5rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, var(--color-kv-black), var(--color-kv-surface));
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: rgba(255, 90, 0, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(244, 121, 32, 0.2);
}
.bento-card-2 {
  background: linear-gradient(225deg, var(--color-kv-black), var(--color-kv-surface));
}
@media (min-width: 640px) { .bento-card-2 { transform: translateY(2rem); } }
.bento-card-2:hover { transform: translateY(calc(2rem - 8px)); }
@media (max-width: 639px) {
  .bento-card-2:hover { transform: translateY(-8px); }
}

.bento-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-kv-orange);
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}
.bento-card:hover .bento-icon { transform: scale(1.1); }

.bento-tag {
  font-size: 10px;
  font-family: var(--font-accent);
  color: var(--color-kv-orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.bento-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}
.bento-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.bento-wide {
  padding: 2.5rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.5);
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-top: 2rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bento-wide:hover {
  border-color: rgba(255, 90, 0, 0.3);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
@media (min-width: 640px) {
  .bento-wide {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    transform: translateY(-1rem);
  }
  .bento-wide:hover {
    transform: translateY(calc(-1rem - 12px));
  }
}
.bento-wide-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: white;
  transition: color 0.3s ease;
}
.bento-wide:hover .bento-wide-title { color: var(--color-kv-orange); }
.bento-wide-tag {
  font-family: var(--font-accent);
  color: var(--color-kv-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 90, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 90, 0, 0.2);
  display: inline-block;
}
.bento-wide-decor {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: all 0.7s ease;
}
.bento-wide-decor:hover {
  transform: rotate(0);
  border-color: rgba(255, 90, 0, 0.5);
  background: rgba(5, 5, 5, 0.5);
  color: var(--color-kv-orange);
}

/* ===========================================================
   SERVICES
   =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  display: block;
  border-radius: 2rem;
  padding: 2.5rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-kv-black);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 0, 0.4);
  background: linear-gradient(135deg, var(--color-kv-surface), var(--color-kv-black));
  box-shadow: 0 20px 60px -15px rgba(244, 121, 32, 0.15);
}
.service-card.featured {
  border-color: rgba(255, 90, 0, 0.4);
  background: linear-gradient(180deg, var(--color-kv-surface), var(--color-kv-black));
  box-shadow: 0 20px 40px -15px rgba(244, 121, 32, 0.2);
  outline: 1px solid rgba(255, 90, 0, 0.2);
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-kv-orange);
  transition: all 0.5s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(6deg);
  background: var(--color-kv-orange);
  color: black;
  border-color: transparent;
}
.service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--color-kv-orange), #ff8f4a);
  color: black;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(244, 121, 32, 0.3);
}
.service-card.featured:hover .service-icon { transform: scale(1.1) rotate(6deg); }

.service-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}
.service-card.featured .service-badge {
  background: var(--color-kv-orange);
  color: black;
  border-color: var(--color-kv-orange);
  box-shadow: 0 0 15px rgba(244, 121, 32, 0.3);
}

.service-sub {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}
.service-card.featured .service-sub { color: var(--color-kv-orange); }

.service-title {
  font-size: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}
.service-card:hover .service-title { color: white; }
.service-card.featured .service-title { color: white; }

.service-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  margin-top: 1rem;
}

.service-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.service-stat {
  font-size: 10px;
  font-family: var(--font-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.service-card:hover .service-stat {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.service-card.featured .service-stat {
  background: rgba(255, 90, 0, 0.1);
  border-color: rgba(255, 90, 0, 0.2);
  color: var(--color-kv-orange);
}

.service-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.service-card:hover .service-arrow {
  background: var(--color-kv-orange);
  border-color: var(--color-kv-orange);
  color: black;
  transform: scale(1.1);
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: 1fr 1fr; } }

.testi-card {
  padding: 3rem;
  position: relative;
  border-radius: 2.5rem;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.testi-card:hover {
  border-color: rgba(255, 90, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(244, 121, 32, 0.15);
}
.testi-quote {
  position: absolute;
  top: -24px;
  right: -24px;
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
  font-weight: 900;
  transform: rotate(12deg);
  pointer-events: none;
  transition: color 0.5s ease;
}
.testi-card:hover .testi-quote { color: rgba(244, 121, 32, 0.1); }

.testi-stars {
  display: flex;
  gap: 0.375rem;
  color: var(--color-kv-orange);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.testi-stars svg {
  filter: drop-shadow(0 0 8px rgba(244, 121, 32, 0.5));
  transition: transform 0.3s ease;
}
.testi-card:hover .testi-stars svg { transform: scale(1.1); }

.testi-text {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 300;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease;
}
.testi-card:hover .testi-author { border-color: rgba(255, 90, 0, 0.2); }

.testi-avatar {
  width: 64px;
  height: 64px;
  background: var(--color-kv-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-kv-orange);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.testi-card:hover .testi-avatar {
  transform: scale(1.1);
  border-color: rgba(255, 90, 0, 0.3);
  background: rgba(255, 90, 0, 0.1);
}

.testi-name {
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
.testi-role {
  font-size: 10px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(244, 121, 32, 0.8);
  font-weight: 600;
}

/* ===========================================================
   PRICING
   =========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
}

.pricing-card {
  border-radius: 2.5rem;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 0, 0.4);
  background: rgba(5, 5, 5, 0.6);
  box-shadow: 0 20px 40px rgba(244, 121, 32, 0.05);
}

.pricing-card.highlight {
  border-color: rgba(255, 90, 0, 0.5);
  box-shadow: 0 30px 100px -20px rgba(244, 121, 32, 0.3);
  background: linear-gradient(135deg, var(--color-kv-black), var(--color-kv-surface), var(--color-kv-dark));
  outline: 1px solid rgba(255, 90, 0, 0.3);
}
@media (min-width: 768px) {
  .pricing-card.highlight { transform: translateY(-1rem); }
  .pricing-card.highlight:hover { transform: translateY(-1.5rem); }
}

.pricing-badge {
  position: absolute;
  top: -16px;
  right: 2.5rem;
  background: var(--color-kv-orange);
  color: black;
  font-size: 10px;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-accent);
  box-shadow: 0 0 20px rgba(244, 121, 32, 0.4);
  border-radius: 9999px;
}

.pricing-name {
  font-size: 1.875rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  color: white;
}
.pricing-period {
  font-size: 11px;
  font-family: var(--font-accent);
  color: var(--color-kv-orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 2.5rem;
  display: block;
}
.pricing-price-row {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-price {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pricing-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.pricing-card.highlight .pricing-check {
  background: rgba(255, 90, 0, 0.1);
  border-color: rgba(255, 90, 0, 0.2);
  color: var(--color-kv-orange);
}
.pricing-card:hover .pricing-check {
  border-color: rgba(255, 90, 0, 0.2);
  color: var(--color-kv-orange);
  background: rgba(255, 90, 0, 0.1);
}
.pricing-feature span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
  font-size: 15px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 14px;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-card {
  padding: 3.5rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.contact-card.fill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.wapp-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.contact-h3 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: 0.025em;
}
.contact-form-h3 {
  font-size: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: white;
}

.contact-card p.muted {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.wapp-btn {
  background: #25D366;
  color: black;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
  margin-bottom: 3rem;
}
.wapp-btn:hover {
  background: #128C7E;
  color: white;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.contact-schedule {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  width: 100%;
}
.contact-schedule-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-kv-orange);
}
.contact-schedule-label {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  color: white;
  font-family: inherit;
  font-weight: 300;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 90, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.contact-submit {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 14px;
  box-shadow: 0 0 40px rgba(244, 121, 32, 0.2);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--color-kv-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 6rem; } }

.footer-brand {
  font-size: 1.875rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 90, 0, 0.2);
  border: 1px solid rgba(255, 90, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand-icon span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-kv-orange);
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 15px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
}
.footer-social:hover {
  border-color: rgba(255, 90, 0, 0.5);
  color: var(--color-kv-orange);
  transform: translateY(-4px);
  background: var(--color-kv-black);
  box-shadow: 0 10px 20px -10px rgba(244, 121, 32, 0.4);
}

.footer-h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: white;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-accent);
  letter-spacing: 0.15em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.footer-list a {
  display: inline-block;
  transition: all 0.3s ease;
}
.footer-list a:hover {
  color: var(--color-kv-orange);
  transform: translateX(4px);
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-line span:first-child { color: var(--color-kv-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; text-align: left; }
}
.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ===========================================================
   FLOATING CONTACT
   =========================================================== */
.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}
.floating-contact > * { pointer-events: auto; }

.fc-top-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-kv-gray-light);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  pointer-events: none;
}
.fc-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fc-top-btn:hover {
  color: white;
  border-color: rgba(255, 90, 0, 0.5);
  background: var(--color-kv-black);
}

.fc-wrap { position: relative; }

.fc-panel {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 320px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: bottom right;
}
.fc-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fc-panel-head {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.fc-panel-head h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}
.fc-panel-head p {
  font-size: 14px;
  font-weight: 300;
  margin-top: 0.25rem;
  color: var(--color-kv-gray-light);
}
.fc-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-kv-gray-light);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.fc-close:hover { background: rgba(255, 255, 255, 0.1); color: white; }

.fc-panel-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.fc-item.wapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.2);
}
.fc-item.wapp:hover { background: rgba(37, 211, 102, 0.2); }
.fc-item.email {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}
.fc-item.email:hover { background: rgba(255, 255, 255, 0.1); }
.fc-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.fc-item.wapp .fc-item-icon { background: rgba(37, 211, 102, 0.2); }
.fc-item.email .fc-item-icon { background: rgba(255, 255, 255, 0.1); color: var(--color-kv-orange); }
.fc-item:hover .fc-item-icon { transform: scale(1.1); }
.fc-item-text { display: block; }
.fc-item-text .title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.3s ease;
}
.fc-item:hover .title { color: white; }
.fc-item-text .sub {
  display: block;
  font-size: 12px;
  font-weight: 300;
  margin-top: 0.125rem;
}
.fc-item.wapp .sub { color: rgba(37, 211, 102, 0.8); }
.fc-item.email .sub { color: rgba(255, 255, 255, 0.5); }

.fc-main-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-kv-orange);
  color: black;
  border: 1px solid var(--color-kv-orange);
  box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
  transition: all 0.5s ease;
}
.fc-main-btn:hover { transform: scale(1.1); }
.fc-main-btn.is-open {
  background: var(--color-kv-black);
  color: var(--color-kv-white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(0.9);
}
.fc-main-btn-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-kv-orange);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
  pointer-events: none;
}
.fc-main-btn.is-open .fc-main-btn-ping { display: none; }

/* ===========================================================
   ADMIN (página /admin)
   =========================================================== */
.admin-shell {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  background: var(--color-kv-dark);
}
.admin-left {
  width: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-kv-border);
  background: #111;
}
.admin-header {
  padding: 1rem;
  border-bottom: 1px solid var(--color-kv-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.125rem;
  color: white;
}
.admin-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-header-icon {
  color: var(--color-kv-orange);
  background: rgba(255, 90, 0, 0.1);
  padding: 0.375rem;
  border-radius: 4px;
  display: flex;
}
.admin-status {
  padding: 0.5rem 1rem;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid black;
}
.admin-status-file {
  color: var(--color-kv-gray-light);
  font-family: var(--font-mono);
}
.admin-status-msg { display: flex; align-items: center; gap: 0.25rem; }
.admin-status-msg.success { color: #4ade80; }
.admin-status-msg.error { color: #f87171; }
.admin-status-msg.idle { color: var(--color-kv-orange); animation: pulse-soft 2s infinite; }

.admin-textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  color: #d4d4d4;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  padding: 1rem;
  border: none;
  resize: none;
}
.admin-textarea:focus { outline: none; }

.admin-right {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-kv-black);
}
.admin-preview-bar {
  height: 48px;
  border-bottom: 1px solid var(--color-kv-border);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.admin-preview-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-kv-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-kv-border);
}
.admin-preview-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-soft 2s infinite;
}
.admin-preview-pill .label {
  font-size: 10px;
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  color: var(--color-kv-gray-light);
  text-transform: uppercase;
}
.admin-preview-open {
  position: absolute;
  right: 1rem;
  font-size: 12px;
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  color: var(--color-kv-gray-light);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.admin-preview-open:hover { color: var(--color-kv-orange); }
.admin-preview-frame {
  flex: 1;
  width: 100%;
  border: none;
  background: var(--color-kv-black);
}

/* Responsive del admin: panel apilado en pantallas pequeñas */
@media (max-width: 900px) {
  .admin-shell { flex-direction: column; height: auto; min-height: 100vh; }
  .admin-left { width: 100%; height: 60vh; }
  .admin-right { height: 60vh; }
}

/* Mensaje de carga */
.app-loading {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-kv-black);
  color: var(--color-kv-orange);
  font-family: var(--font-mono);
}
