/* ===========================================
   KONDORY - MODERN DESIGN SYSTEM
   =========================================== */

:root {
  --k-primary: #111827;
  --k-primary-blue: #1e40af;
  --k-primary-light: #3b82f6;
  --k-accent: #60a5fa;
  --k-dark: #0f172a;
  --k-orange: #B33000;
  --k-bg-light: #f8fafc;
  --k-text: #334155;
  --k-text-light: #64748b;
  --k-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #061f73 100%);
  --k-gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

/* ===========================================
   TYPOGRAPHY SYSTEM
   =========================================== */
body {
  font-family: 'Open Sans', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--k-text);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--k-primary);
}

/* ===========================================
   STANDARDIZED BUTTON SYSTEM
   =========================================== */

/* Primary CTA - Blue gradient (Agendar DEMO, Solicitar demo) */
.btn-k-primary {
  background: linear-gradient(135deg, var(--k-primary-light) 0%, var(--k-primary-blue) 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-k-primary:hover,
.btn-k-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  color: #fff;
  background: linear-gradient(135deg, var(--k-primary-light) 0%, var(--k-primary-blue) 100%);
}
.btn-k-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

/* Secondary CTA - White fill (WhatsApp, Ver más) */
.btn-k-secondary {
  background: #ffffff;
  color: var(--k-primary-blue);
  border: 2px solid #e2e8f0;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-k-secondary:hover,
.btn-k-secondary:focus {
  background: var(--k-bg-light);
  border-color: var(--k-primary-blue);
  color: var(--k-primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

/* Outline - For dark backgrounds */
.btn-k-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-k-outline:hover,
.btn-k-outline:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

/* Dark - For light backgrounds (forms, contact) */
.btn-k-dark {
  background: var(--k-primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-k-dark:hover,
.btn-k-dark:focus {
  background: var(--k-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 24, 39, 0.3);
}

/* Alias: hero buttons map to k-system */
.btn-hero-primary,
.btn-k-primary { }
.btn-hero-outline,
.btn-k-outline { }

/* ===========================================
   STANDARDIZED SECTION BACKGROUNDS
   =========================================== */

/* Hero background for internal page headers */
.bg-k-hero {
  background: var(--k-gradient);
  background-image: var(--k-gradient), url('/assets/img/page-header-bg.svg');
  background-repeat: no-repeat;
  background-position: center, center right;
  background-size: cover, contain;
  color: #fff;
}
.bg-k-hero h1, .bg-k-hero h2, .bg-k-hero h3,
.bg-k-hero h4, .bg-k-hero h5, .bg-k-hero h6,
.bg-k-hero p, .bg-k-hero span, .bg-k-hero a:not(.btn-k-primary):not(.btn-k-secondary) {
  color: #fff;
}

/* Dark section */
.bg-k-dark {
  background-color: var(--k-dark);
  color: #fff;
}
.bg-k-dark h1, .bg-k-dark h2, .bg-k-dark h3,
.bg-k-dark h4, .bg-k-dark h5, .bg-k-dark h6,
.bg-k-dark p {
  color: #fff;
}

/* Light section */
.bg-k-light {
  background-color: var(--k-bg-light);
}

/* White section */
.bg-k-white {
  background-color: #ffffff;
}

/* Gradient section for CTA / benefits / features */
.bg-k-gradient {
  background: linear-gradient(to right, var(--k-dark), var(--k-primary-blue));
  color: #fff;
}


/* Compensar header fijo en secciones hero */
.hero-offset {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .hero-offset {
    padding-top: 90px;
  }
}

/* ===========================================
   CORPORATE HEADER SYSTEM
   =========================================== */

/* Navbar base */
.main-header .navbar {
  padding: 0;
  background: #fff;
  transition: all 0.3s ease;
}
.main-header .navbar .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Scrolled / affix state */
.main-header .sticky-header.affix {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(15, 23, 42, 0.06);
}
.main-header .sticky-header.affix .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Logo */
.main-header .navbar-brand {
  padding: 0;
  margin-right: 0;
}
.main-header .navbar-brand img {
  transition: height 0.3s ease;
}


/* Nav links */
.main-header .main-menu {
  gap: 4px;
}
.main-header .main-menu li a.nav-link {
  color: var(--k-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.main-header .main-menu li a.nav-link:hover,
.main-header .main-menu li a.nav-link:focus {
  color: var(--k-primary-blue);
  background: rgba(30, 64, 175, 0.05);
}

/* Active page indicator */
.main-header .main-menu li a.nav-link.active {
  color: var(--k-primary-blue);
  font-weight: 600;
  background: rgba(30, 64, 175, 0.08);
}
.main-header .dropdown-grid-item a.dropdown-link.active {
  background: var(--k-bg-light);
}
.main-header .dropdown-grid-item a.dropdown-link.active .drop-title {
  color: var(--k-primary-blue);
  font-weight: 600;
}
.main-header .dropdown-grid-item a.dropdown-link.active span {
  background: linear-gradient(135deg, var(--k-primary-blue), var(--k-primary-light));
  color: #fff;
}

/* Offcanvas active */
.main-header .offcanvas-body .main-menu li a.nav-link.active {
  color: var(--k-primary-blue);
  background: rgba(30, 64, 175, 0.06);
  font-weight: 600;
}

/* Dropdown toggle arrow */
.main-header .dropdown-toggle::after {
  border: none;
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  transition: transform 0.2s ease;
  vertical-align: 1px;
}
.main-header .nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
}

/* Mega dropdown panel */
.main-header .dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
  margin-top: 8px !important;
  animation: headerDropIn 0.25s ease;
}
@keyframes headerDropIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.main-header .dropdown-grid {
  border-radius: 14px;
  overflow: hidden;
}
.main-header .dropdown-grid-item {
  padding: 16px;
}
.main-header .dropdown-grid-item .drop-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--k-text-light);
  padding-left: 12px;
  margin-bottom: 8px;
}
.main-header .dropdown-grid-item a {
  padding: 10px 12px !important;
  border-radius: 10px;
  gap: 12px;
  transition: all 0.2s ease;
}
.main-header .dropdown-grid-item a:hover {
  background: var(--k-bg-light);
}
.main-header .dropdown-grid-item a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--k-bg-light);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--k-primary-blue);
  transition: all 0.2s ease;
}
.main-header .dropdown-grid-item a:hover span {
  background: linear-gradient(135deg, var(--k-primary-blue), var(--k-primary-light));
  color: #fff;
}
.main-header .dropdown-grid-item .drop-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--k-primary);
  transition: color 0.2s ease;
}
.main-header .dropdown-grid-item a:hover .drop-title {
  color: var(--k-primary-blue);
}

/* CTA button in header */
.main-header .action-btns .btn-k-primary {
  padding: 10px 22px;
  font-size: 0.875rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}
.main-header .action-btns .btn-k-primary:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

/* Mobile toggle */
.main-header .navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.main-header .navbar-toggler:hover {
  background: var(--k-bg-light);
}
.main-header .navbar-toggler i {
  font-size: 24px;
  color: var(--k-primary);
}

/* Offcanvas mobile menu */
.main-header .offcanvas {
  border-left: none;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.12);
}
.main-header .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
}
.main-header .offcanvas-header img {
  height: 40px;
  width: auto;
}
.main-header .offcanvas-header .close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fef2f2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.main-header .offcanvas-header .close-btn:hover {
  background: #fee2e2;
}
.main-header .offcanvas-header .close-btn i {
  font-size: 1.1rem;
  color: #ef4444;
  line-height: 1;
}
.main-header .offcanvas-body {
  padding: 16px 24px;
}
.main-header .offcanvas-body .main-menu li a.nav-link {
  color: var(--k-text);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.main-header .offcanvas-body .main-menu li a.nav-link:hover {
  color: var(--k-primary-blue);
  background: rgba(30, 64, 175, 0.05);
}
.main-header .offcanvas-body .action-btns {
  padding: 16px 0;
  border-top: 1px solid #f1f5f9;
  margin-top: 12px;
}
.main-header .offcanvas-body .action-btns .btn-k-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
}

/* === SKIP TO CONTENT === */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--k-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s ease;
}
.skip-to-content:focus {
  top: 0;
  color: #fff;
}

/* === HERO SECTION MODERN === */
.hero-section-modern {
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../img/fondo_index.webp') center center / cover no-repeat;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 10, 16, 0.88) 0%,
    rgba(2, 19, 66, 0.65) 50%,
    rgba(0, 7, 22, 0.8) 100%
  );
  z-index: 0;
}
.min-vh-75 { min-height: 75vh; }

.hero-badge {
  display: inline-flex;
  padding: 10px 22px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: #93bbfc;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-title-line {
  color: #fff;
  display: inline;
}
.hero-title-keyword {
  display: inline;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 40%, #60a5fa 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: keyword-shimmer 6s ease-in-out infinite;
  position: relative;
}
@keyframes keyword-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}
.hero-text-gradient {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #60a5fa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  color: #fff;
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.hero-features {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.hero-feature-tag:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hero-feature-tag i { color: #60a5fa; font-size: 0.9rem; }

/* Fondo oscuro para hero content */
.hero-content-wrap {
  background: linear-gradient(
    160deg,
    rgba(8, 12, 30, 0.6) 0%,
    rgba(15, 23, 60, 0.5) 50%,
    rgba(8, 12, 30, 0.6) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 52px 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Animacion hero sin depender de AOS */
.hero-animate {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-section-modern { min-height: auto; padding: 100px 0 50px; }
  .hero-title { font-size: clamp(2rem, 5vw, 2.5rem); }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-content-wrap { padding: 36px 28px; border-radius: 20px; }
}
@media (max-width: 575px) {
  .hero-section-modern { padding: 90px 0 40px; }
  .hero-title { font-size: 1.85rem; }
  .hero-feature-tag { font-size: 0.78rem; padding: 5px 10px; }
  .hero-content-wrap { padding: 28px 20px; border-radius: 16px; }
}

/* === STATS TRUST BAR === */
.stats-bar {
  background: var(--k-dark);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stats-bar-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-bar-icon i {
  font-size: 1.2rem;
  color: #60a5fa;
}
.stats-bar-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stats-bar-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .stats-bar { padding: 32px 0; }
  .stats-bar-item { flex-direction: column; text-align: center; gap: 10px; }
  .stats-bar-number { font-size: 1.5rem; }
  .stats-bar-label { font-size: 0.75rem; }
}

/* === STATS SECTION === */
.stats-section { background: var(--k-bg-light); }
.stats-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--k-primary-blue);
}
.stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--k-gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--k-primary) 0%, var(--k-primary-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-wrap i { font-size: 1.5rem; color: #fff; }

.stat-number {
  font-size: 2.8rem;
  color: var(--k-primary);
  display: inline;
  line-height: 1;
}
.stat-suffix {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--k-primary-blue);
}
.stat-title { color: var(--k-primary); font-size: 1rem; }
.stat-desc { color: var(--k-text-light); font-size: 0.9rem; }

/* === SOLUTIONS SECTION === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--k-primary-blue);
  padding: 6px 16px;
  background: rgba(30, 64, 175, 0.06);
  border-radius: 6px;
  border-left: 3px solid var(--k-primary-blue);
}
.bg-k-dark .section-label,
.feature-section-two .section-label {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.08);
  border-left-color: #60a5fa;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--k-text);
  line-height: 1.7;
}

.solutions-section {
  background: var(--k-bg-light);
}

.solution-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.solution-card-inner {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.solution-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--k-primary-blue), var(--k-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.solution-card:hover .solution-card-inner {
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  transform: translateY(-8px);
}
.solution-card:hover .solution-card-inner::before { transform: scaleX(1); }

/* Icon + tag row */
.solution-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.solution-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.solution-icon i {
  font-size: 1.3rem;
  color: var(--k-primary);
  transition: all 0.35s ease;
}
.solution-card:hover .solution-icon {
  background: linear-gradient(135deg, var(--k-primary-blue), var(--k-primary-light));
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}
.solution-card:hover .solution-icon i { color: #fff; }

.solution-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--k-primary-blue);
  background: rgba(30, 64, 175, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
}

.solution-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--k-primary);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}
.solution-card:hover .solution-title {
  color: var(--k-primary-blue);
}

.solution-desc {
  font-size: 0.88rem;
  color: var(--k-primary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 0;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--k-primary-blue);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  width: 100%;
}
.solution-link i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}
.solution-card:hover .solution-link { color: var(--k-primary-light); }
.solution-card:hover .solution-link i { transform: translateX(5px); }

@media (max-width: 767px) {
  .solution-card-inner {
    padding: 24px 20px 20px;
  }
  .solution-header {
    gap: 12px;
    margin-bottom: 16px;
  }
  .solution-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
  }
  .solution-icon i { font-size: 1.1rem; }
}

/* === FEATURE SECTION === */
.feature-item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(96, 165, 250, 0.15);
}
.feature-item-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(96, 165, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: all 0.3s ease;
}
.feature-item-icon i { font-size: 1.3rem; color: #60a5fa; }
.feature-item:hover .feature-item-icon {
  background: linear-gradient(135deg, var(--k-primary-blue), var(--k-primary-light));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}
.feature-item:hover .feature-item-icon i { color: #fff; }
.feature-item h5 { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }

/* === INTEGRATION SECTION === */
.integration-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.integration-card img {
  max-height: 80px;
  max-width: 90%;
  object-fit: contain;
}

/* === MODAL MODERN === */
.modal-modern .modal-header-modern {
  background: var(--k-gradient);
  position: relative;
}
.modal-modern .form-control:focus {
  border-color: var(--k-primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* === WHATSAPP BUTTON MODERN === */
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
  text-decoration: none;
  border: none;
}
.whatsapp i {
  color: #fff;
  line-height: 1;
}
.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: #fff;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* === OLD STYLES PRESERVED === */
.titulo {
  font-size: 38px;
}

.animacion {
  position: relative;
  animation-name: example;
  animation-duration: 1s;
  animation: mymove 1s infinite;
  animation-delay: 1s;
}

.animacion2 {
  position: relative;
  animation-name: example;
  animation-duration: 1s;
  animation: mymove2 1s infinite;
  animation-delay: 1s;
}

.modulos:hover {
  background-color: #111827;
  color: white;
}

.modulos span:hover {
  color: white;
}

@keyframes mymove {
  0% {
    left: 0px;
    top: 0px;
  }

  50% {
    left: 8px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

@keyframes mymove2 {
  0% {
    top: 0px;
  }

  50% {
    top: 8px;
  }

  100% {
    top: 0px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

h1,
h2,
h3,
h4,
h5 {
  color: #111929;
}


/*===========================
     CHAT BOOT MESSENGER
   ===========================*/

/* --- Floating Button --- */
.chat_on {
  position: fixed;
  z-index: 10;
  width: 60px;
  height: 60px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 0 0 0 3px rgba(59, 130, 246, 0.15);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: chatPulse 2.5s ease-in-out infinite;
}
.chat_on:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(30, 58, 138, 0.55), 0 0 0 5px rgba(59, 130, 246, 0.2);
}
.chat_on i {
  font-size: 28px;
  line-height: 1;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 0 0 0 3px rgba(59, 130, 246, 0.15); }
  50% { box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 0 0 0 8px rgba(59, 130, 246, 0.08); }
}

@media (max-width: 768px) {
  .chat_on {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
  .chat_on i {
    font-size: 24px;
  }
}

/* --- Tooltip --- */
#tooltip_chat {
  position: fixed;
  z-index: 10;
  width: auto;
  max-width: 220px;
  right: 20px;
  bottom: 90px;
  background: #0a1628;
  color: #e2e8f0;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#tooltip_chat span {
  line-height: 1.4;
}
#btnTool {
  position: absolute;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  top: -8px;
  right: -8px;
  font-size: 10px;
  border: none;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
}
#btnTool:hover {
  background: #dc2626;
}
@media (max-width: 768px) {
  #tooltip_chat {
    right: 14px;
    bottom: 76px;
    max-width: 180px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* --- Chat Window --- */
#Smallchat .Layout {
  pointer-events: auto;
  box-sizing: border-box !important;
  z-index: 999999999;
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 50px;
  max-width: 370px;
  max-height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 50px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.1);
  animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1) forwards;
  opacity: 0;
  transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
  background: #0d1526;
}

#Smallchat .Layout-right {
  right: 20px;
}

#Smallchat .Layout-open {
  overflow: hidden;
  min-width: 370px;
  max-width: 370px;
  height: 85%;
  max-height: 600px;
  border-radius: 20px;
  color: #fff;
  transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
}

#Smallchat .Layout-expand {
  height: 85%;
  min-height: 85%;
  display: none;
}

#Smallchat .Layout-mobile {
  bottom: 10px;
}
#Smallchat .Layout-mobile.Layout-open {
  width: calc(100% - 20px);
  min-width: calc(100% - 20px);
}
#Smallchat .Layout-mobile.Layout-expand {
  bottom: 0;
  height: 100%;
  min-height: 100%;
  width: 100%;
  min-width: 100%;
  border-radius: 0 !important;
}

@keyframes appear {
  0% { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

/* --- Messenger structure --- */
#Smallchat .Messenger_messenger {
  position: relative;
  height: 100%;
  width: 100%;
  min-width: 370px;
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
#Smallchat .Messenger_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0a1628 0%, #122044 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
}
#Smallchat .Messenger_id {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: calc(100% - 32px);
}
#Smallchat .Messenger_avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
#Smallchat .Messenger_titles {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}
#Smallchat .Messenger_status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #93c5fd;
  margin-top: 2px;
}
#Smallchat .Messenger_statusdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}
#Smallchat .Messenger_header h4 {
  opacity: 0;
  font-size: 14px;
  animation: slidein 0.15s 0.3s forwards;
}
#Smallchat .Messenger_prompt {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  letter-spacing: 0.01em;
}

.chat_close_icon {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.chat_close_icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@keyframes slidein {
  0% { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Content area --- */
#Smallchat .Messenger_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #f1f5f9;
  overflow: hidden;
}

/* --- Messages --- */
#Smallchat .Messages {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px;
  background: #f1f5f9;
  -webkit-overflow-scrolling: touch;
}
#Smallchat .Messages_list {
  flex-grow: 1;
}
/* Custom scrollbar */
#Smallchat .Messages::-webkit-scrollbar {
  width: 5px;
}
#Smallchat .Messages::-webkit-scrollbar-track {
  background: transparent;
}
#Smallchat .Messages::-webkit-scrollbar-thumb {
  background: rgba(30, 58, 138, 0.25);
  border-radius: 10px;
}
#Smallchat .Messages::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 58, 138, 0.4);
}

/* --- Message Bubbles --- */
.chat-msg-user {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 12px 16px;
  margin: 6px 0;
  max-width: 85%;
  align-self: flex-end;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.2);
  word-wrap: break-word;
}
.chat-msg-user .chat-msg-name {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-msg-user .chat-msg-name i {
  font-size: 13px;
}
.chat-msg-user .chat-msg-text {
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-msg-time {
  font-size: 9px;
  opacity: 0.5;
  margin-top: 5px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.chat-msg-user .chat-msg-time { text-align: right; }
.chat-msg-bot .chat-msg-time { text-align: left; color: #94a3b8; }

.chat-msg-bot {
  background: #fff;
  color: #1e293b;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  margin: 6px 0;
  max-width: 85%;
  align-self: flex-start;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  word-wrap: break-word;
}

/* --- Input area --- */
#Smallchat .Input {
  position: relative;
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
#Smallchat .Input-blank .Input_field {
  max-height: 80px;
}
#Smallchat .Input_field {
  flex: 1;
  resize: none;
  border: none;
  outline: none;
  padding: 10px 14px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.4;
  min-height: 20px !important;
  color: #1e293b;
  transition: background 0.2s ease;
}
#Smallchat .Input_field:focus {
  background: #e8edf4;
}
#Smallchat .Input_field::placeholder {
  color: #94a3b8;
}

#Smallchat .Input_button {
  position: relative;
  bottom: auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
  color: #64748b;
}
#Smallchat .Input_button:hover {
  background: #f1f5f9;
  color: #1e3a8a;
}

#Smallchat .Input_button-send {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
  color: #fff;
  right: auto;
}
#Smallchat .Input_button-send:hover {
  background: linear-gradient(135deg, #0f1e36 0%, #2548a8 100%);
  color: #fff;
  transform: scale(1.06);
}
#Smallchat .Input_button-send i {
  font-size: 16px;
}
#Smallchat .Input_button-emoji {
  right: auto;
}
#Smallchat .Input_button-emoji i {
  font-size: 18px;
}

/* --- Barra de grabación de voz (inline, estilo WhatsApp) --- */
#contentAudio.Recorder {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
#contentAudio.Recorder.is-active { display: flex; }
.Recorder_cancel,
.Recorder_send {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  transition: transform 0.15s ease, background 0.2s ease;
}
.Recorder_cancel { background: #f1f5f9; color: #ef4444; }
.Recorder_cancel:hover { background: #fee2e2; transform: scale(1.05); }
.Recorder_send { background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%); color: #fff; }
.Recorder_send:hover { transform: scale(1.06); }
.Recorder_meta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.Recorder_dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: #ef4444;
  border-radius: 50%;
  animation: recPulse 1.2s ease-in-out infinite;
}
@keyframes recPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}
.Recorder_time {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.Recorder_hint {
  font-size: 12.5px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Burbuja de nota de voz --- */
.chat-msg-audio { padding: 8px 10px 10px; }
.chat-msg-audio .chat-audio-player {
  display: block;
  width: 220px;
  max-width: 100%;
  height: 38px;
  margin-top: 4px;
}

/* --- Respuestas rápidas (chips) --- */
.chat-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 2px 8px;
}
.chat-qr-chip {
  background: #fff;
  border: 1px solid #dbe3ee;
  color: #1e3a8a;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 16px;
  padding: 7px 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.chat-qr-chip:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  transform: translateY(-1px);
}
.chat-qr-chip i { font-size: 13px; opacity: 0.8; }

/* --- Etiqueta "transcribiendo" / error --- */
.chat-typing-label { font-size: 12px; color: #64748b; margin-left: 4px; }
.chat-typing--audio { gap: 6px; }
.chat-msg-error { border-left: 3px solid #ef4444; }
.chat-msg-error .chat-msg-name { color: #ef4444; }

/* --- Animación de entrada de mensajes --- */
.chat-msg-user,
.chat-msg-bot { animation: chatMsgIn 0.25s ease both; }
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Botón micrófono --- */
#Smallchat .Input_button-mic { color: #64748b; }
#Smallchat .Input_button-mic:hover { background: #f1f5f9; color: #1e3a8a; }
#Smallchat .Input_button-mic i { font-size: 19px; }

/* --- Chat footer --- */
#Smallchat .Messenger_content > .row:last-child {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 6px 12px;
  font-size: 11px;
  color: #94a3b8;
}
#Smallchat .Messenger_content > .row:last-child a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}
#Smallchat .Messenger_content > .row:last-child a:hover {
  color: #1e3a8a;
}

/* --- Typing indicator --- */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.chat-typing .spinner-grow {
  width: 8px;
  height: 8px;
  background: #1e3a8a;
}

/* --- Misc legacy support --- */
.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.textoNaranja {
  color: #B33000;
}
.iconoSoluciones {
  font-size: 100px;
}
.chat_on_icon {
  color: #fff;
  font-size: 25px;
  text-align: center;
}

/* --- Cookie consent --- */
.cookie-consent {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 95%;
  padding-top: 7px;
  color: #fff;
  max-width: 600px;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  background: #292929;
  z-index: 120;
  border-radius: 3px;
  text-align: center;
}
.allow-button {
  height: 30px;
  width: 110px;
  color: #fff;
  font-size: 15px;
  line-height: 10px;
  border-radius: 3px;
  border: 1px solid green;
  background-color: green;
}

/* --- Responsive chat window --- */
@media (max-width: 768px) {
  #Smallchat .Layout-open,
  #Smallchat .Messenger_messenger {
    min-width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
  #Smallchat .Layout {
    right: 12px;
    bottom: 12px;
  }
  #Smallchat .Layout-open {
    max-height: 80vh;
  }
  #Smallchat .Input_field {
    font-size: 16px; /* prevent iOS zoom */
  }
  .iconoSoluciones {
    font-size: 50px;
  }
  .iconSocial {
    font-size: 20px;
  }
}

/* ===========================================
   REQUEST DEMO PAGE
   =========================================== */

/* Hero */
.demo-hero {
  background: var(--k-gradient);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.demo-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.demo-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.demo-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.demo-hero .lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Benefit pills */
.demo-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.demo-benefit:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.demo-benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.2);
  color: var(--k-accent);
  font-size: 1.15rem;
}
.demo-benefit span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Stats card (right side) */
.demo-stats-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
}
.demo-stat {
  text-align: center;
  padding: 12px 0;
}
.demo-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.demo-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Testimonial */
.demo-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}
.demo-testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.demo-testimonial p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.demo-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-accent);
  font-size: 1.1rem;
}
.demo-testimonial-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.demo-testimonial-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Calendar section */
.demo-calendar-section {
  background: #fff;
  padding: 80px 0;
}
.demo-calendar-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--k-primary-blue);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.demo-calendar-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.demo-calendar-header {
  background: var(--k-dark);
  padding: 20px 24px;
  text-align: center;
}
.demo-calendar-header h4 {
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-size: 1.15rem;
}
.demo-calendar-body {
  padding: 16px;
}
.demo-calendar-body iframe {
  border-radius: 8px;
}
.demo-calendar-lead {
  color: var(--k-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.demo-calendar-section h2 {
  color: var(--k-dark);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.25;
}

/* Trust bar */
.demo-trust-bar {
  padding: 40px 0;
  background: var(--k-bg-light);
}
.demo-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
}
.demo-trust-item i {
  color: var(--k-primary-blue);
  font-size: 1.2rem;
}
.demo-trust-item span {
  color: var(--k-text);
  font-weight: 500;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .demo-hero {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .demo-hero h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  .demo-stats-card {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .demo-hero h1 {
    font-size: 1.85rem;
  }
  .demo-stat-value {
    font-size: 1.6rem;
  }
  .demo-calendar-body {
    padding: 8px;
  }
  .demo-calendar-body iframe {
    height: 500px;
  }
  .demo-calendar-section {
    padding: 48px 0;
  }
}

.svg-request {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}

/*Seguridad-salud-trabajo*/
.gradient-primary {
  background: var(--k-dark);
}

.gradient-success {
  background: var(--k-dark);
}

.gradient-info {
  background: var(--k-dark);
}

.card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 20px;
  background-color: var(--k-dark) !important;
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.wave-divider {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
  height: 80px;
  margin-top: -1px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: -30px;
  width: 2px;
  background: linear-gradient(180deg, var(--k-primary-light) 0%, transparent 100%);
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

svg {
  display: block;
  margin-bottom: -1px; 
}

/*Webs*/
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15) !important;
}
.transition-all {
  transition: all 0.3s ease;
}

/*fabrica-confecciones*/
.stats-number {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .card-hover {
        transition: all 0.3s ease;
    }

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        margin: 0 auto;
    }

    .backdrop-blur {
        backdrop-filter: blur(10px);
    }

    @media (max-width: 768px) {
        .stats-number {
            font-size: 2rem;
        }
        
        .display-4 {
            font-size: 2rem;
        }
        
        .display-5 {
            font-size: 1.75rem;
        }
    }

/*Cards Index.php*/
.card-fixed-height {
    height: 300px; 
    display: flex;
    flex-direction: column;
}

.card-fixed-height .connected-app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-fixed-height .text-black {
    flex: 1;
}

/*SECCIÓN MANTENIMIENTO GESTIÓN EQUIPOS start */
/* Estilos específicos solo para equipment-management-section */
.equipment-management-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-blue) 100%);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
.equipment-management-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.equipment-management-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: 0;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

/* Título y descripción principal */
.equipment-management-section .main-header {
  margin-bottom: 32px;
}

.equipment-management-section .main-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.equipment-management-section .main-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: 2px;
}

.equipment-management-section .main-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Línea divisoria moderna */
.equipment-management-section .divider-gradient {
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  border: none;
  margin: 32px 0;
}

/* Lista de características con iconos */
.equipment-management-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.equipment-management-section .feature-item {
  display: flex;
  align-items: start;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

.equipment-management-section .feature-item:hover {
  transform: translateX(8px);
}

.equipment-management-section .icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.equipment-management-section .feature-item:nth-child(1) .icon-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
}

.equipment-management-section .feature-item:nth-child(2) .icon-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 100%);
  backdrop-filter: blur(10px);
}

.equipment-management-section .feature-item:nth-child(3) .icon-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
}

.equipment-management-section .feature-item:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.equipment-management-section .icon-box i {
  font-size: 2rem;
  color: white;
}

.equipment-management-section .icon-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.equipment-management-section .feature-item:hover .icon-content h3 {
  color: rgba(255, 255, 255, 0.9);
}

.equipment-management-section .icon-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Botón de CTA */
.equipment-management-section .cta-button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.equipment-management-section .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.equipment-management-section .cta-button:hover::before {
  left: 100%;
}

.equipment-management-section .cta-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.equipment-management-section .cta-button svg {
  width: 20px;
  height: 20px;
}

/* Contenedor de mockup/imagen */
.equipment-management-section .mockup-container {
  position: relative;
  padding: 40px;
  transition: transform 0.4s ease;
}

.equipment-management-section .mockup-container:hover {
  transform: scale(1.05);
}

.equipment-management-section .mockup-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
  }
}

.equipment-management-section .mockup-container img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: filter 0.4s ease;
}

.equipment-management-section .mockup-container:hover img {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-up {
  animation: fadeInUp 0.6s ease backwards;
}

.animate-left {
  animation: fadeInLeft 0.6s ease backwards;
}

.animate-right {
  animation: fadeInRight 0.6s ease backwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 992px) {
  .equipment-management-section .main-header h2 {
    font-size: 1.8rem;
  }

  .equipment-management-section .main-header p {
    font-size: 1rem;
  }

  .equipment-management-section .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 16px;
  }

  .equipment-management-section .icon-box i {
    font-size: 1.5rem;
  }

  .equipment-management-section .icon-content h3 {
    font-size: 1.25rem;
  }

  .equipment-management-section .mockup-container {
    padding: 20px;
    margin-top: 40px;
  }

  .equipment-management-section .cta-button {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/*SECCIÓN MANTENIMIENTO GESTIÓN EQUIPOS END */

/*SECCIÓN REPORTES Y ESTADÍSTICAS START */
/* Estilos específicos solo para reports-statistics-section */
.reports-statistics-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-blue) 100%);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
.reports-statistics-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
  animation: float-reports 20s ease-in-out infinite;
}

.reports-statistics-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: 0;
  animation: float-reports 15s ease-in-out infinite reverse;
}

@keyframes float-reports {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

/* Título y descripción principal */
.reports-statistics-section .main-header {
  margin-bottom: 32px;
}

.reports-statistics-section .main-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.reports-statistics-section .main-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: 2px;
}

.reports-statistics-section .main-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Línea divisoria moderna */
.reports-statistics-section .divider-gradient {
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  border: none;
  margin: 32px 0;
}

/* Lista de características con iconos */
.reports-statistics-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reports-statistics-section .feature-item {
  display: flex;
  align-items: start;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

.reports-statistics-section .feature-item:hover {
  transform: translateX(8px);
}

.reports-statistics-section .icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reports-statistics-section .feature-item:nth-child(1) .icon-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
}

.reports-statistics-section .feature-item:nth-child(2) .icon-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 100%);
  backdrop-filter: blur(10px);
}

.reports-statistics-section .feature-item:nth-child(3) .icon-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
}

.reports-statistics-section .feature-item:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.reports-statistics-section .icon-box i {
  font-size: 2rem;
  color: white;
}

.reports-statistics-section .icon-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.reports-statistics-section .feature-item:hover .icon-content h3 {
  color: rgba(255, 255, 255, 0.9);
}

.reports-statistics-section .icon-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Contenedor de mockup/imagen */
.reports-statistics-section .mockup-container {
  position: relative;
  padding: 40px;
  transition: transform 0.4s ease;
}

.reports-statistics-section .mockup-container:hover {
  transform: scale(1.05);
}

.reports-statistics-section .mockup-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-bg-reports 4s ease-in-out infinite;
}

@keyframes pulse-bg-reports {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
  }
}

.reports-statistics-section .mockup-container img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: filter 0.4s ease;
}

.reports-statistics-section .mockup-container:hover img {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.reports-statistics-section .animate-up {
  animation: fadeInUp 0.6s ease backwards;
}

.reports-statistics-section .animate-left {
  animation: fadeInLeft 0.6s ease backwards;
}

.reports-statistics-section .animate-right {
  animation: fadeInRight 0.6s ease backwards;
}

.reports-statistics-section .animate-delay-1 {
  animation-delay: 0.1s;
}

.reports-statistics-section .animate-delay-2 {
  animation-delay: 0.2s;
}

.reports-statistics-section .animate-delay-3 {
  animation-delay: 0.3s;
}

.reports-statistics-section .animate-delay-4 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .reports-statistics-section .main-header h2 {
    font-size: 1.8rem;
  }

  .reports-statistics-section .main-header p {
    font-size: 1rem;
  }

  .reports-statistics-section .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 16px;
  }

  .reports-statistics-section .icon-box i {
    font-size: 1.5rem;
  }

  .reports-statistics-section .icon-content h3 {
    font-size: 1.25rem;
  }

  .reports-statistics-section .mockup-container {
    padding: 20px;
    margin-top: 40px;
  }
}

/*SECCIÓN REPORTES Y ESTADÍSTICAS END */

/* Estilos específicos solo para reports-grid-right-title-section */
.reports-grid-right-title-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
.reports-grid-right-title-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
  animation: float-reports-grid 20s ease-in-out infinite;
}

.reports-grid-right-title-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: 0;
  animation: float-reports-grid 15s ease-in-out infinite reverse;
}

@keyframes float-reports-grid {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

/* Contenido derecho - Título centrado verticalmente */
.reports-grid-right-title-section .title-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 40px;
}

.reports-grid-right-title-section .title-right h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.reports-grid-right-title-section .title-right p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Grid de módulos cuadrados */
.reports-grid-right-title-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reports-grid-right-title-section .report-card {
  background: white;
  border-radius: 20px;
  padding: 3px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-top: 4px solid;
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reports-grid-right-title-section .report-card:nth-child(1) {
  border-top-color: #1e3a8a;
}

.reports-grid-right-title-section .report-card:nth-child(2) {
  border-top-color: var(--primary-blue);
}

.reports-grid-right-title-section .report-card:nth-child(3) {
  border-top-color: var(--accent-blue);
}

.reports-grid-right-title-section .report-card:nth-child(4) {
  border-top-color: var(--accent-blue);
}

/* Iconos */
.reports-grid-right-title-section .report-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
}

.reports-grid-right-title-section .report-card:nth-child(1) .report-icon {
  background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-blue) 100%);
}

.reports-grid-right-title-section .report-card:nth-child(2) .report-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
}

.reports-grid-right-title-section .report-card:nth-child(3) .report-icon {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-blue) 100%);
}

.reports-grid-right-title-section .report-card:nth-child(4) .report-icon {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-blue) 100%);
}

.reports-grid-right-title-section .report-icon i {
  font-size: 2.5rem;
  color: white;
}

/* Contenido de las cards */
.reports-grid-right-title-section .report-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.reports-grid-right-title-section .report-card p {
  font-size: 0.95rem;
  color: #1b1e22;
  line-height: 1.6;
  margin: 0;
}

.reports-grid-right-title-section .animate-left {
  animation: fadeInLeft 0.6s ease backwards;
}

.reports-grid-right-title-section .animate-right {
  animation: fadeInRight 0.6s ease backwards;
}

.reports-grid-right-title-section .animate-delay-1 {
  animation-delay: 0.1s;
}

.reports-grid-right-title-section .animate-delay-2 {
  animation-delay: 0.2s;
}

.reports-grid-right-title-section .animate-delay-3 {
  animation-delay: 0.3s;
}

.reports-grid-right-title-section .animate-delay-4 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .reports-grid-right-title-section .title-right {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .reports-grid-right-title-section .title-right h2 {
    font-size: 2.2rem;
  }

  .reports-grid-right-title-section .title-right p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .reports-grid-right-title-section .title-right h2 {
    font-size: 1.8rem;
  }

  .reports-grid-right-title-section .title-right p {
    font-size: 1rem;
  }

  .reports-grid-right-title-section .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reports-grid-right-title-section .report-card {
    aspect-ratio: auto;
  }

  .reports-grid-right-title-section .report-card h3 {
    font-size: 1.25rem;
  }
}

/*Sección multiusuario */
/* Estilos específicos solo para multiuser-left-title-section */
.multiuser-left-title-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
.multiuser-left-title-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 0;
}

.multiuser-left-title-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

/* Contenido izquierdo - Título centrado verticalmente */
.multiuser-left-title-section .title-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 40px;
}

.multiuser-left-title-section .title-left h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.multiuser-left-title-section .title-left p {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Cards verticales apiladas */
.multiuser-left-title-section .user-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 18px;
  padding: 28px 26px;
  margin-bottom: 20px;
  box-shadow: 0 6px 25px rgba(17, 24, 39, 0.08);
  border-left: 4px solid;
  position: relative;
  z-index: 1;
}

.multiuser-left-title-section .user-card:last-child {
  margin-bottom: 0;
}

.multiuser-left-title-section .user-card:nth-child(1) {
  border-left-color: var(--primary-dark);
}

.multiuser-left-title-section .user-card:nth-child(2) {
  border-left-color: var(--primary-blue);
}

.multiuser-left-title-section .user-card:nth-child(3) {
  border-left-color: var(--accent-blue);
}

/* Iconos */
.multiuser-left-title-section .user-icon {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.12);
}

.multiuser-left-title-section .user-card:nth-child(1) .user-icon {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

.multiuser-left-title-section .user-card:nth-child(2) .user-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
}

.multiuser-left-title-section .user-card:nth-child(3) .user-icon {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-blue) 100%);
}

.multiuser-left-title-section .user-icon i {
  font-size: 2.2rem;
  color: white;
}

/* Contenido del usuario */
.multiuser-left-title-section .user-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.multiuser-left-title-section .user-content p {
  font-size: 1rem;
  color: #1b1e22;
  line-height: 1.6;
  margin: 0;
}

.multiuser-left-title-section .animate-left {
  animation: fadeInLeft 0.6s ease backwards;
}

.multiuser-left-title-section .animate-right {
  animation: fadeInRight 0.6s ease backwards;
}

.multiuser-left-title-section .animate-delay-1 {
  animation-delay: 0.1s;
}

.multiuser-left-title-section .animate-delay-2 {
  animation-delay: 0.2s;
}

.multiuser-left-title-section .animate-delay-3 {
  animation-delay: 0.3s;
}

.multiuser-left-title-section .animate-delay-4 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .multiuser-left-title-section .title-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .multiuser-left-title-section .title-left h2 {
    font-size: 2.2rem;
  }

  .multiuser-left-title-section .title-left p {
    font-size: 1.1rem;
  }

  .multiuser-left-title-section .user-card {
    padding: 24px 22px;
  }

  .multiuser-left-title-section .user-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    margin-right: 20px;
  }

  .multiuser-left-title-section .user-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .multiuser-left-title-section .title-left h2 {
    font-size: 1.8rem;
  }

  .multiuser-left-title-section .title-left p {
    font-size: 1rem;
  }

  .multiuser-left-title-section .user-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .multiuser-left-title-section .user-icon {
    margin: 0 auto 16px;
  }

  .multiuser-left-title-section .user-content h3 {
    font-size: 1.35rem;
  }
}


/* Estilos específicos solo para cloud-software-list-section */
.cloud-software-list-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
.cloud-software-list-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  z-index: 0;
}

.cloud-software-list-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

/* Título y descripción principal - centrado */
.cloud-software-list-section .main-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cloud-software-list-section .main-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.cloud-software-list-section .main-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  border-radius: 2px;
}

.cloud-software-list-section .main-header p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 25px;
}

/* Lista de características - centrada */
.cloud-software-list-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cloud-software-list-section .feature-item {
  display: flex;
  align-items: start;
  margin-bottom: 40px;
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
  border: 2px solid rgba(59, 130, 246, 0.1);
}

.cloud-software-list-section .feature-item:hover {
  transform: translateX(12px);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.15);
  border-color: var(--accent-blue);
}

.cloud-software-list-section .icon-box {
  width: 85px;
  height: 85px;
  min-width: 85px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 28px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

.cloud-software-list-section .feature-item:nth-child(1) .icon-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

.cloud-software-list-section .feature-item:nth-child(2) .icon-box {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
}

.cloud-software-list-section .feature-item:nth-child(3) .icon-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-blue) 100%);
}

.cloud-software-list-section .feature-item:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.2);
}

.cloud-software-list-section .icon-box i {
  font-size: 2.5rem;
  color: white;
}

.cloud-software-list-section .icon-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.cloud-software-list-section .feature-item:hover .icon-content h3 {
  color: var(--primary-blue);
}

.cloud-software-list-section .icon-content p {
  font-size: 1.05rem;
  color: #1b1e22;
  line-height: 1.7;
  margin: 0;
}

.cloud-software-list-section .animate-up {
  animation: fadeInUp 0.6s ease backwards;
}

.cloud-software-list-section .animate-left {
  animation: fadeInLeft 0.6s ease backwards;
}

.cloud-software-list-section .animate-delay-1 {
  animation-delay: 0.1s;
}

.cloud-software-list-section .animate-delay-2 {
  animation-delay: 0.2s;
}

.cloud-software-list-section .animate-delay-3 {
  animation-delay: 0.3s;
}

.cloud-software-list-section .animate-delay-4 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .cloud-software-list-section .main-header h2 {
    font-size: 2.2rem;
  }

  .cloud-software-list-section .main-header p {
    font-size: 1.1rem;
  }

  .cloud-software-list-section .feature-item {
    padding: 28px 24px;
  }

  .cloud-software-list-section .icon-box {
    width: 75px;
    height: 75px;
    min-width: 75px;
    margin-right: 20px;
  }

  .cloud-software-list-section .icon-box i {
    font-size: 2rem;
  }

  .cloud-software-list-section .icon-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .cloud-software-list-section .main-header h2 {
    font-size: 1.8rem;
  }

  .cloud-software-list-section .main-header p {
    font-size: 1rem;
  }

  .cloud-software-list-section .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .cloud-software-list-section .icon-box {
    margin: 0 auto 20px;
  }

  .cloud-software-list-section .icon-content h3 {
    font-size: 1.3rem;
  }

  .cloud-software-list-section .icon-content p {
    font-size: 1rem;
  }
}


/* === PAGINA CHATBOT CON IA === */
.chatbot-section h2 {
  color: #fdfdfd;
  font-weight: 700;
}

.chatbot-section p {
  color: #fdfdfd;
  font-size: 1.05rem;
}


/* === PAGINA GESTION  === */
.gestion-section h2 {
  color: #fff !important;
}

.gestion-section .feature-card p,
.gestion-section .card p {
  color: black;
}

/*Card soluciones*/
/* Solo hacer más ancho en pantallas grandes (escritorio) */
@media (min-width: 1200px) {
    .width-full-2 {
        min-width: 520px;
    }
}





.hero-card {
  background: var(--k-gradient);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-card h2 {
  font-weight: 800;
  font-size: 1.9rem;
  color: white;
}

.hero-card p {
  font-size: 1.3rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.9;
}

/* === Cards blancas con sombra suave === */
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 12px 30px rgba(15, 23, 51, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  font-size: 1.25rem;
}


.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 23, 51, 0.12);
}

/* === Íconos cuadrados con degradado azul === */
.icon-wrapper {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--k-primary-blue), #1e3a8a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 15px rgba(15, 23, 51, 0.15);
}

.feature-card h5 {
  font-weight: 700;
  color: #20293f;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 1.15rem;
  color: #6b7280;
  margin: 0;
}

/* === Fondo degradado del contenedor === */
.cloud-centered-section {
  background: linear-gradient(to bottom, #f9fafb 0%, #f1f5f9 100%);
}

.gradient-dark .card p,
.gradient-dark .card h5 {
  color: var(--k-primary) !important;
}

/* ===========================================
   CORPORATE FOOTER SYSTEM
   =========================================== */

/* Footer wrapper */
.footer-k {
  background: var(--k-dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}
.footer-k::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}
.footer-k::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- CTA Strip ---- */
.footer-k-cta {
  background: linear-gradient(135deg, var(--k-primary) 0%, var(--k-primary-blue) 100%);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.footer-k-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer-k-cta h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.footer-k-cta h3 i {
  margin-right: 6px;
}
.footer-k-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  font-size: 0.95rem;
}
.footer-k-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.btn-cta-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-cta-light {
  background: #fff;
  color: var(--k-primary-blue);
}
.btn-cta-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--k-primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-cta-wa {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-cta-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* ---- Footer Main ---- */
.footer-k-main {
  padding: 60px 0 48px;
}

/* Brand column */
.footer-k-brand a {
  display: inline-block;
}
.footer-k-tagline {
  color: var(--k-accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer-k-description {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Column titles */
.footer-k-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-k-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--k-primary-light);
  border-radius: 2px;
}

/* Link lists */
.footer-k-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-k-links li {
  margin-bottom: 3px;
}
.footer-k-links li a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-k-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact items */
.footer-k-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-k-contact li i {
  font-size: 1rem;
  min-width: 18px;
  text-align: center;
  margin-top: 2px;
}
.footer-k-contact li a,
.footer-k-contact li span {
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-k-contact li a:hover {
  color: #fff;
}

/* Social icons */
.footer-k-social {
  display: flex;
  gap: 10px;
}
.footer-k-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer-k-social a.social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}
.footer-k-social a.social-instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e6683c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.35);
}
.footer-k-social a.social-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.35);
}

/* ---- Footer Bottom ---- */
.footer-k-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-k-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-k-bottom-links {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.footer-k-bottom-links a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}
.footer-k-bottom-links a:hover {
  color: #fff;
}
.footer-k-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

/* ---- Footer Responsive ---- */
@media (max-width: 991px) {
  .footer-k-cta {
    text-align: center;
  }
  .footer-k-cta-buttons {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-k-cta {
    padding: 28px 0;
  }
  .footer-k-cta h3 {
    font-size: 1.15rem;
  }
  .footer-k-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-cta-footer {
    justify-content: center;
  }
  .footer-k-main {
    padding: 44px 0 28px;
  }
  .footer-k-brand {
    text-align: center;
    margin-bottom: 24px;
  }
  .footer-k-brand a {
    display: block;
    text-align: center;
  }
  .footer-k-brand img {
    margin: 0 auto 12px;
    display: block;
  }
  .footer-k-tagline,
  .footer-k-description {
    text-align: center;
  }
  .footer-k-social {
    justify-content: center;
  }
  .footer-k-title {
    text-align: center;
    margin-top: 8px;
  }
  .footer-k-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-k-links {
    text-align: center;
  }
  .footer-k-contact li {
    justify-content: center;
  }
  .footer-k-bottom {
    text-align: center;
  }
  .footer-k-bottom-links {
    justify-content: center;
    margin-top: 8px;
  }
}

/* ===========================================
   ABOUT US PAGE
   =========================================== */

/* --- Hero --- */
.about-hero {
  background: var(--k-gradient);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero .breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.about-hero .breadcrumb-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.about-hero .breadcrumb-nav a:hover {
  color: #fff;
}
.about-hero .breadcrumb-nav .separator {
  color: rgba(255,255,255,0.35);
}
.about-hero .breadcrumb-nav .current {
  color: var(--k-accent);
}
.about-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-hero .hero-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.about-hero .row .hero-lead {
  margin: 0;
}
.about-hero .row h1 {
  text-align: left;
}
.about-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* --- About Overview --- */
.about-overview {
  padding: 100px 0;
  background: #fff;
}
.about-overview .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-overview h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-overview p {
  color: var(--k-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-overview-image {
  position: relative;
}
.about-overview-image img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
.about-highlight-card {
  background: var(--k-bg-light);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.about-highlight-card .highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--k-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-highlight-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--k-primary);
}
.about-highlight-card p {
  font-size: 0.85rem;
  color: var(--k-text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Mission / Vision / Values --- */
.about-mvv {
  padding: 100px 0;
  background: var(--k-bg-light);
}
.about-mvv .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-mvv-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--k-gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.about-mvv-card:hover::before {
  opacity: 1;
}
.about-mvv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.about-mvv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-mvv-card p {
  color: var(--k-text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Stats Bar --- */
.about-stats {
  padding: 80px 0;
  background: var(--k-gradient);
  position: relative;
}
.about-stat-item {
  text-align: center;
  padding: 24px 16px;
}
.about-stat-item .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-item .stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.about-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin: 16px 0;
}

/* --- Sectors Grid --- */
.about-sectors {
  padding: 100px 0;
  background: #fff;
}
.about-sectors .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-sector-card {
  background: var(--k-bg-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
}
.about-sector-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(30,64,175,0.12);
}
.about-sector-card .sector-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.about-sector-card:hover .sector-icon {
  background: var(--k-gradient);
  color: #fff;
}
.about-sector-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--k-primary);
}

/* --- About Responsive --- */
@media (max-width: 991px) {
  .about-hero {
    padding: 50px 0 50px;
  }
  .about-hero .row h1 {
    text-align: center;
  }
  .about-hero-img {
    margin-top: 24px;
    max-width: 70%;
  }
  .about-overview {
    padding: 80px 0;
  }
  .about-overview-image {
    margin-bottom: 40px;
  }
  .about-mvv {
    padding: 80px 0;
  }
  .about-stats {
    padding: 60px 0;
  }
  .about-stat-divider {
    display: none;
  }
  .about-stat-item {
    padding: 16px;
  }
  .about-sectors {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .about-hero {
    padding: 50px 0 50px;
  }
  .about-hero h1 {
    font-size: 1.85rem;
  }
  .about-mvv-card {
    padding: 28px 24px;
  }
  .about-stat-item .stat-number {
    font-size: 1.75rem;
  }
}

/* ===========================================
   PORTFOLIO / CASES PAGE
   =========================================== */

/* --- Hero --- */
.portfolio-hero {
  background: var(--k-gradient);
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.portfolio-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.portfolio-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-hero .hero-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.portfolio-hero .hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.portfolio-hero .hero-stat {
  text-align: center;
}
.portfolio-hero .hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.portfolio-hero .hero-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 4px;
}
.portfolio-hero .hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* --- Portfolio Grid Wrapper --- */
.portfolio-grid {
  padding: 80px 0 40px;
  background: var(--k-bg-light);
}

/* --- Portfolio Card --- */
.portfolio-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.portfolio-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 2px;
  background: linear-gradient(135deg, var(--k-primary-light), var(--k-accent), var(--k-primary-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(30,64,175,0.12), 0 8px 20px rgba(0,0,0,0.06);
  border-color: transparent;
}
.portfolio-card:hover::before {
  opacity: 1;
}

/* Card header (title + number) */
.portfolio-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--k-primary);
  transition: background 0.35s ease;
}
.portfolio-card:hover .portfolio-card-header {
  background: var(--k-primary-blue);
}
.portfolio-card-header .card-number {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  transition: background 0.3s ease;
}
.portfolio-card:hover .portfolio-card-header .card-number {
  background: rgba(255,255,255,0.2);
}
.portfolio-card-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

/* Card image */
.portfolio-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
}
.portfolio-card:hover .portfolio-card-media img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.portfolio-card-media .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
.portfolio-card:hover .card-overlay {
  opacity: 1;
}
.card-overlay .overlay-btn {
  background: rgba(255,255,255,0.95);
  color: var(--k-primary-blue);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease, background 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(10px);
}
.portfolio-card:hover .card-overlay .overlay-btn {
  transform: translateY(0);
  opacity: 1;
}
.card-overlay .overlay-btn:hover {
  background: var(--k-primary-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,64,175,0.35);
}

/* Card body (description + link) */
.portfolio-card-body {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.portfolio-card-body .portfolio-card-desc {
  color: var(--k-text);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-card-body .portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--k-primary-blue);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}
.portfolio-card-body .portfolio-card-link:hover {
  gap: 14px;
  color: var(--k-primary-light);
}
.portfolio-card-body .portfolio-card-link i {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.portfolio-card-body .portfolio-card-link:hover i {
  transform: translateX(4px);
}

/* --- Portfolio Responsive --- */
@media (max-width: 991px) {
  .portfolio-hero {
    padding: 50px 0 50px;
  }
  .portfolio-hero .hero-stats {
    gap: 24px;
  }
  .portfolio-hero .hero-stat-number {
    font-size: 1.5rem;
  }
  .portfolio-grid {
    padding: 60px 0 20px;
  }
  .portfolio-card-header {
    padding: 16px 20px;
  }
  .portfolio-card-body {
    padding: 18px 22px 20px;
  }
  .portfolio-card-body .portfolio-card-desc {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
@media (max-width: 575px) {
  .portfolio-hero {
    padding: 50px 0 50px;
  }
  .portfolio-hero .hero-stats {
    gap: 16px;
  }
  .portfolio-hero .hero-stat-number {
    font-size: 1.3rem;
  }
  .portfolio-hero .hero-stat-label {
    font-size: 0.75rem;
  }
  .portfolio-hero .hero-stat-divider {
    height: 30px;
  }
  .portfolio-grid {
    padding: 48px 0 16px;
  }
  .portfolio-card-header h3 {
    font-size: 1rem;
  }
  .portfolio-card:hover {
    transform: translateY(-6px);
  }
  .portfolio-card-body {
    padding: 16px 18px 18px;
  }
  .portfolio-card-body .portfolio-card-desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    font-size: 0.86rem;
  }
}

/* ===========================================
   BLOG PAGE
   =========================================== */

/* --- Hero --- */
.blog-hero {
  background: var(--k-gradient);
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-hero .hero-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Blog Grid --- */
.blog-grid {
  padding: 80px 0;
  background: var(--k-bg-light);
}

/* --- Blog Card --- */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.blog-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body .blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--k-primary-blue);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card-body .blog-card-date i {
  font-size: 0.85rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--k-primary);
  line-height: 1.45;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-body h3 a:hover {
  color: var(--k-primary-blue);
}
.blog-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.blog-card-footer .author-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.blog-card-footer .author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--k-primary);
}

/* --- Blog Pagination --- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.blog-pagination .page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  color: var(--k-text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-pagination .page-btn:hover {
  background: var(--k-bg-light);
  border-color: var(--k-primary-blue);
  color: var(--k-primary-blue);
}
.blog-pagination .page-btn.active {
  background: var(--k-primary-blue);
  border-color: var(--k-primary-blue);
  color: #fff;
}
.blog-pagination .page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination .page-btn.nav-btn {
  width: auto;
  padding: 0 16px;
  gap: 6px;
  font-size: 0.85rem;
}
.blog-pagination .page-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-text-light);
  font-weight: 600;
  letter-spacing: 2px;
}

/* --- Blog Loader --- */
.blog-loader {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.blog-loader .spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--k-primary-blue);
}

/* --- Blog Responsive --- */
@media (max-width: 991px) {
  .blog-hero {
    padding: 50px 0 50px;
  }
  .blog-grid {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .blog-hero {
    padding: 50px 0 50px;
  }
  .blog-grid {
    padding: 48px 0;
  }
  .blog-pagination .page-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .blog-pagination .page-btn.nav-btn {
    padding: 0 12px;
  }
  .blog-pagination .page-ellipsis {
    width: 30px;
  }
}

/* ===========================================
   BLOG SINGLE / DETAIL PAGE
   =========================================== */

/* --- Article Hero --- */
.blog-single-hero {
  background: var(--k-gradient);
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-single-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-single-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto 24px;
}
.blog-single-hero .article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-single-hero .article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.blog-single-hero .article-meta span i {
  font-size: 1rem;
}

/* --- Article Content Section --- */
.blog-single-content {
  padding: 0 0 80px;
  background: var(--k-bg-light);
}
.blog-single-content .article-image {
  max-width: 900px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}
.blog-single-content .article-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  display: block;
}
.blog-single-content > .container > .row {
  margin-top: 48px;
}

/* --- Article Body --- */
.blog-single-content .article-body {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-single-content .article-body p,
.blog-single-content .article-body li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--k-text);
  margin-bottom: 1.2em;
}
.blog-single-content .article-body h2,
.blog-single-content .article-body h3,
.blog-single-content .article-body h4 {
  color: var(--k-primary);
  margin-top: 1.8em;
  margin-bottom: 0.8em;
  font-weight: 700;
}
.blog-single-content .article-body h2 { font-size: 1.6rem; }
.blog-single-content .article-body h3 { font-size: 1.3rem; }
.blog-single-content .article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5em 0;
}
.blog-single-content .article-body a {
  color: var(--k-primary-blue);
  text-decoration: underline;
}
.blog-single-content .article-body blockquote {
  border-left: 4px solid var(--k-primary-blue);
  padding: 16px 24px;
  margin: 2em 0;
  background: rgba(30,64,175,0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--k-text);
}
.blog-single-content .article-body ul,
.blog-single-content .article-body ol {
  padding-left: 1.5em;
}

/* --- Share Bar --- */
.article-share {
  margin-top: 32px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.article-share .share-label {
  font-weight: 600;
  color: var(--k-primary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-share .share-label i {
  font-size: 1.1rem;
  color: var(--k-primary-blue);
}
.article-share .share-buttons {
  display: flex;
  gap: 10px;
}
.article-share .share-buttons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--k-bg-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-text);
  font-size: 1.1rem;
  transition: all 0.25s;
  text-decoration: none;
}
.article-share .share-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.article-share .share-buttons a.share-facebook:hover {
  background: #1877F2;
  color: #fff;
}
.article-share .share-buttons a.share-twitter:hover {
  background: #1DA1F2;
  color: #fff;
}
.article-share .share-buttons a.share-linkedin:hover {
  background: #0A66C2;
  color: #fff;
}
.article-share .share-buttons a.share-whatsapp:hover {
  background: #25D366;
  color: #fff;
}

/* --- Back to Blog --- */
.article-back {
  margin-top: 24px;
}
.article-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--k-primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.article-back a:hover {
  gap: 12px;
  color: var(--k-primary);
}

/* --- Sidebar --- */
.blog-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-sidebar .sidebar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--k-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--k-primary-blue);
  display: inline-block;
}
.sidebar-post {
  display: flex;
  gap: 14px;
  padding: 12px;
  margin: 0 -12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-post:hover {
  background: var(--k-bg-light);
}
.sidebar-post-img {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sidebar-post-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--k-primary);
  line-height: 1.4;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.sidebar-post:hover .sidebar-post-info h4 {
  color: var(--k-primary-blue);
}
.sidebar-post-info span {
  font-size: 0.75rem;
  color: var(--k-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Blog Single Responsive --- */
@media (max-width: 991px) {
  .blog-single-hero {
    padding: 110px 0 50px;
  }
  .blog-single-content .article-image {
    margin-top: -30px;
  }
  .blog-single-content > .container > .row {
    margin-top: 36px;
  }
  .blog-single-content .article-body {
    padding: 32px 28px;
  }
  .blog-sidebar {
    position: static;
    margin-top: 36px;
  }
}
@media (max-width: 575px) {
  .blog-single-hero {
    padding: 100px 0 40px;
  }
  .blog-single-hero h1 {
    font-size: 1.4rem;
  }
  .blog-single-hero .article-meta {
    gap: 12px;
    font-size: 0.82rem;
  }
  .blog-single-content .article-image {
    margin-top: -20px;
    padding: 0 8px;
  }
  .blog-single-content .article-body {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .blog-single-content .article-body p,
  .blog-single-content .article-body li {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .article-share {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .article-share .share-buttons {
    width: 100%;
    justify-content: flex-start;
  }
  .blog-sidebar {
    padding: 20px;
  }
  .sidebar-post-img {
    width: 60px;
    height: 45px;
  }
}

/* ===========================================
   CONTACT PAGE
   =========================================== */

/* --- Hero --- */
.contact-hero {
  background: var(--k-gradient);
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-hero .hero-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Contact Cards --- */
.contact-cards {
  padding: 80px 0;
  background: var(--k-bg-light);
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.contact-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.contact-card .card-icon.icon-whatsapp {
  background: rgba(37,211,102,0.1);
  color: #25D366;
}
.contact-card .card-icon.icon-email {
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
}
.contact-card .card-icon.icon-phone {
  background: rgba(245,158,11,0.1);
  color: #F59E0B;
}
.contact-card .card-icon.icon-location {
  background: rgba(239,68,68,0.1);
  color: #EF4444;
}
.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--k-primary);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 0.92rem;
  color: var(--k-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.contact-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--k-primary-blue);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.contact-card .card-link:hover {
  gap: 12px;
  color: var(--k-primary);
}

/* --- Demo Section --- */
.contact-demo {
  padding: 80px 0;
  background: #fff;
}
.contact-demo .demo-wrapper {
  background: var(--k-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.contact-demo .demo-info {
  padding: 48px 40px;
  color: #fff;
}
.contact-demo .demo-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.contact-demo .demo-info p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-demo .demo-info .demo-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-demo .demo-info .demo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding: 8px 0;
}
.contact-demo .demo-info .demo-features li i {
  color: var(--k-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-demo .demo-calendar {
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: stretch;
}
.contact-demo .demo-calendar iframe {
  border: 0;
  width: 100%;
  min-height: 550px;
  border-radius: 12px;
}

/* --- Contact Map --- */
.contact-map {
  padding: 0 0 80px;
  background: #fff;
}
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --- Contact Responsive --- */
@media (max-width: 991px) {
  .contact-hero {
    padding: 110px 0 60px;
  }
  .contact-cards {
    padding: 60px 0;
  }
  .contact-demo {
    padding: 60px 0;
  }
  .contact-demo .demo-info {
    padding: 36px 28px;
  }
  .contact-demo .demo-calendar {
    padding: 16px;
  }
}
@media (max-width: 575px) {
  .contact-hero {
    padding: 100px 0 50px;
  }
  .contact-cards {
    padding: 48px 0;
  }
  .contact-card {
    padding: 28px 20px;
  }
  .contact-demo .demo-info {
    padding: 28px 20px;
  }
  .contact-demo .demo-info h2 {
    font-size: 1.4rem;
  }
  .contact-demo .demo-calendar iframe {
    min-height: 450px;
  }
}

/* ===========================================
   404 ERROR PAGE
   =========================================== */
.error-page {
  background: var(--k-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.error-page-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.error-page-circle--1 {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
}
.error-page-circle--2 {
  bottom: -25%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
}
.error-page-logo {
  width: 80px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.error-page-logo:hover {
  opacity: 1;
}
.error-page-code {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--k-accent) 0%, var(--k-primary-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.error-page-title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.error-page-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}
.error-page-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.error-page-links {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.error-page-links-label {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 16px;
}
.error-page-links-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.error-page-links-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
}
.error-page-links-list a:hover {
  color: #fff;
}
.error-page-footer {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 575px) {
  .error-page {
    padding: 40px 0;
  }
  .error-page-actions {
    flex-direction: column;
    gap: 12px;
  }
  .error-page-actions .btn {
    width: 100%;
  }
  .error-page-links-list {
    gap: 16px;
  }
  .error-page-links-list a {
    font-size: 0.85rem;
  }
}

/* ===========================================
   PRIVACY PAGE
   =========================================== */

/* --- Hero --- */
.privacy-hero {
  background: var(--k-gradient);
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.privacy-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.privacy-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.privacy-hero .hero-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.privacy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--k-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.privacy-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.privacy-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.privacy-hero-meta i {
  color: var(--k-accent);
}

/* --- Content Layout --- */
.privacy-content {
  padding: 64px 0 80px;
  background: var(--k-bg-light);
}

/* --- Sidebar TOC --- */
.privacy-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.privacy-toc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--k-text-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--k-bg-light);
}
.privacy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.privacy-toc ul li a {
  display: block;
  padding: 8px 12px;
  color: var(--k-text);
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.privacy-toc ul li a:hover {
  background: var(--k-bg-light);
  color: var(--k-primary-blue);
  padding-left: 16px;
}

/* --- Article --- */
.privacy-article {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* --- Section --- */
.privacy-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.privacy-section:first-child {
  padding-top: 0;
}
.privacy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.privacy-section-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--k-primary-blue);
  background: rgba(30,64,175,0.08);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--k-primary);
  margin-bottom: 16px;
}
.privacy-section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--k-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}
.privacy-section p {
  color: var(--k-text);
  line-height: 1.75;
  margin-bottom: 12px;
}
.privacy-section a {
  color: var(--k-primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.privacy-section a:hover {
  color: var(--k-primary-light);
}

/* --- Info Card --- */
.privacy-info-card {
  background: var(--k-bg-light);
  border-radius: 14px;
  padding: 24px;
  margin-top: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}
.privacy-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}
.privacy-info-item i {
  font-size: 1.2rem;
  color: var(--k-primary-blue);
  margin-top: 2px;
  min-width: 20px;
}
.privacy-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--k-text-light);
  margin-bottom: 2px;
}
.privacy-info-item span {
  color: var(--k-text);
  font-size: 0.95rem;
}
.privacy-info-item span a {
  color: var(--k-primary-blue);
  text-decoration: none;
  font-weight: 600;
}
.privacy-info-item span a:hover {
  color: var(--k-primary-light);
}

/* --- Definitions --- */
.privacy-definitions {
  margin-top: 16px;
}
.privacy-definitions dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--k-primary);
  padding: 12px 0 4px;
  font-size: 0.95rem;
}
.privacy-definitions dt i {
  color: var(--k-primary-blue);
  font-size: 0.75rem;
}
.privacy-definitions dd {
  color: var(--k-text);
  line-height: 1.7;
  margin-left: 24px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.93rem;
}
.privacy-definitions dd:last-child {
  border-bottom: none;
}

/* --- Principle Cards --- */
.privacy-principle {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.privacy-principle:hover {
  border-color: rgba(30,64,175,0.15);
  box-shadow: 0 4px 16px rgba(30,64,175,0.06);
}
.privacy-principle strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--k-primary);
  margin-bottom: 8px;
}
.privacy-principle strong i {
  color: var(--k-primary-blue);
  font-size: 1rem;
}
.privacy-principle p {
  color: var(--k-text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Lists --- */
.privacy-list {
  padding-left: 0;
  list-style: none;
  margin-top: 12px;
}
.privacy-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--k-text);
  line-height: 1.65;
  font-size: 0.93rem;
}
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--k-primary-blue);
}
.privacy-list li strong {
  color: var(--k-primary);
}

/* Rights list */
.privacy-list-rights li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.privacy-list-rights li:last-child {
  border-bottom: none;
}

/* Ordered list */
.privacy-list-ordered {
  padding-left: 0;
  list-style: none;
  counter-reset: privacy-step;
  margin-top: 16px;
}
.privacy-list-ordered li {
  counter-increment: privacy-step;
  position: relative;
  padding: 16px 0 16px 48px;
  color: var(--k-text);
  line-height: 1.7;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.privacy-list-ordered li:last-child {
  border-bottom: none;
}
.privacy-list-ordered li::before {
  content: counter(privacy-step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 32px;
  height: 32px;
  background: rgba(30,64,175,0.08);
  color: var(--k-primary-blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Purpose cards --- */
.privacy-purpose {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--k-bg-light);
  border-radius: 12px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  transition: border-color 0.25s ease;
}
.privacy-purpose:hover {
  border-color: rgba(30,64,175,0.12);
}
.privacy-purpose > i {
  font-size: 1.5rem;
  color: var(--k-primary-blue);
  min-width: 28px;
  margin-top: 2px;
}
.privacy-purpose strong {
  display: block;
  font-size: 0.95rem;
  color: var(--k-primary);
  margin-bottom: 6px;
}
.privacy-purpose p {
  color: var(--k-text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Alert box --- */
.privacy-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(30,64,175,0.05);
  border-left: 3px solid var(--k-primary-blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-top: 20px;
}
.privacy-alert > i {
  font-size: 1.25rem;
  color: var(--k-primary-blue);
  min-width: 20px;
  margin-top: 2px;
}
.privacy-alert p {
  color: var(--k-text);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Privacy Responsive --- */
@media (max-width: 991px) {
  .privacy-toc {
    position: static;
    margin-bottom: 8px;
  }
  .privacy-article {
    padding: 32px 24px;
  }
}
@media (max-width: 767px) {
  .privacy-hero {
    padding: 90px 0 40px;
  }
  .privacy-hero h1 {
    font-size: 1.6rem;
  }
  .privacy-hero-meta {
    flex-direction: column;
    gap: 10px;
  }
  .privacy-content {
    padding: 40px 0 56px;
  }
  .privacy-article {
    padding: 24px 18px;
  }
  .privacy-section h2 {
    font-size: 1.25rem;
  }
  .privacy-info-card {
    padding: 16px;
  }
  .privacy-purpose {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .privacy-hero {
    padding: 100px 0 40px;
  }
  .privacy-article {
    padding: 20px 14px;
  }
  .privacy-section {
    padding: 24px 0;
  }
}

/* ===========================================
   SERVICES PAGE - MODERN CENTERED LAYOUT
   =========================================== */

/* --- Service Block --- */
.svc-block {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* --- Subtle divider between sections --- */
.svc-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.25), transparent);
}
.svc-block:last-of-type::after {
  display: none;
}

/* Services Hero - dark theme */
.svc-hero {
  background: linear-gradient(180deg, #050a14 0%, #080e1c 100%) !important;
}
.svc-hero h1 {
  color: #fff;
}
.svc-hero .hero-lead {
  color: white;
}

/* Backgrounds - unified dark blue */
.svc-block--light { background: var(--k-bg-light); }
.svc-block--dark { background: var(--k-dark); }
.svc-block--gradient {
  background: linear-gradient(160deg, #0c1222 0%, #111d3a 40%, #162044 100%);
}
/* Dark blue gradient variants (for all-dark pages) */
.svc-block--dk-deep {
  background: linear-gradient(180deg, #060b17 0%, #0c1424 50%, #0e1629 100%);
}
.svc-block--dk-blue {
  background: linear-gradient(160deg, #0c1222 0%, #111d3a 40%, #162044 100%);
}
.svc-block--dk-navy {
  background: linear-gradient(180deg, #081020 0%, #0e1a34 50%, #101e3a 100%);
}

/* --- Floating orbs (decorative) --- */
.svc-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.svc-orb--1 {
  width: 420px; height: 420px;
  top: -140px; right: -120px;
  background: rgba(59,130,246,0.07);
}
.svc-orb--2 {
  width: 320px; height: 320px;
  bottom: -100px; left: -80px;
  background: rgba(139,92,246,0.05);
}
.svc-block--dark .svc-orb--1,
.svc-block--dk-deep .svc-orb--1,
.svc-block--dk-navy .svc-orb--1 { background: rgba(59,130,246,0.12); }
.svc-block--dark .svc-orb--2,
.svc-block--dk-deep .svc-orb--2,
.svc-block--dk-navy .svc-orb--2 { background: rgba(139,92,246,0.08); }
.svc-block--gradient .svc-orb--1,
.svc-block--dk-blue .svc-orb--1 { background: rgba(96,165,250,0.14); }
.svc-block--gradient .svc-orb--2,
.svc-block--dk-blue .svc-orb--2 { background: rgba(167,139,250,0.1); }

/* --- Section label (number pill) --- */
.svc-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 8px;
  background: rgba(30,64,175,0.07);
  border: 1px solid rgba(30,64,175,0.1);
  border-radius: 100px;
  margin-bottom: 24px;
}
.svc-label-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--k-primary-blue), var(--k-primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
}
.svc-label-text {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--k-primary-blue);
}
/* Dark variant */
.svc-block--dark .svc-label,
.svc-block--gradient .svc-label {
  background: rgba(96,165,250,0.08);
  border-color: rgba(96,165,250,0.15);
}
.svc-block--dark .svc-label-num,
.svc-block--gradient .svc-label-num {
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.svc-block--dark .svc-label-text,
.svc-block--gradient .svc-label-text {
  color: #60a5fa;
}

/* --- Section heading --- */
.svc-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--k-primary);
}
.svc-block--dark .svc-heading,
.svc-block--gradient .svc-heading {
  color: #fff;
}
.svc-heading .svc-hl {
  background: linear-gradient(135deg, var(--k-primary-blue), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-block--dark .svc-heading .svc-hl,
.svc-block--gradient .svc-heading .svc-hl {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section description --- */
.svc-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--k-text);
  max-width: 520px;
  margin-bottom: 0;
}
.svc-block--dark .svc-desc,
.svc-block--gradient .svc-desc {
  color: rgba(255,255,255,0.78);
}

/* --- CTA link --- */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, var(--k-primary-blue), var(--k-primary-light));
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(30,64,175,0.25);
}
.svc-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,64,175,0.4);
  color: #fff;
}
.svc-link i {
  transition: transform 0.3s ease;
}
.svc-link:hover i {
  transform: translateX(4px);
}
.svc-block--dark .svc-link,
.svc-block--gradient .svc-link {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: none;
}
.svc-block--dark .svc-link:hover,
.svc-block--gradient .svc-link:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(96,165,250,0.3);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ============================
   SERVICE CARD - LIGHT (with visual header)
   ============================ */
.svc-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Top accent line */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--k-primary-blue), #60a5fa, #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 64px rgba(17,24,39,0.12), 0 0 0 1px rgba(59,130,246,0.06);
}

/* --- Visual header area (light) --- */
.svc-card-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 50%, #e0e7ff 100%);
  overflow: hidden;
}
/* Dot grid pattern */
.svc-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,64,175,0.06) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}
/* Glow orb behind icon */
.svc-card-visual::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.svc-card:hover .svc-card-visual::after {
  transform: translate(-50%, -50%) scale(1.7);
  background: radial-gradient(circle, rgba(59,130,246,0.32), transparent 70%);
}

/* --- Main icon (large, centered) --- */
.svc-vi-main {
  font-size: 4.2rem;
  color: var(--k-primary-blue);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  filter: drop-shadow(0 8px 20px rgba(30,64,175,0.22));
}
.svc-card:hover .svc-vi-main {
  transform: scale(1.12);
  filter: drop-shadow(0 12px 32px rgba(30,64,175,0.38));
}

/* --- Decorative orbit ring --- */
.svc-vi-ring {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1.5px dashed rgba(30,64,175,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: svcRingSpin 25s linear infinite;
  transition: all 0.5s ease;
}
.svc-card:hover .svc-vi-ring {
  width: 130px; height: 130px;
  border-color: rgba(59,130,246,0.25);
}

/* --- Floating contextual icons --- */
.svc-vi-float {
  position: absolute;
  font-size: 1.35rem;
  color: var(--k-primary-blue);
  opacity: 0.3;
  z-index: 3;
  transition: all 0.5s ease;
}
.svc-vi-f1 {
  top: 20%; right: 16%;
  animation: svcFloat1 3.5s ease-in-out infinite;
}
.svc-vi-f2 {
  bottom: 20%; left: 16%;
  animation: svcFloat2 4s ease-in-out infinite;
}
.svc-card:hover .svc-vi-float {
  opacity: 0.65;
}

@keyframes svcRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes svcFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes svcFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Card body --- */
.svc-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card-body h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--k-primary);
  margin-bottom: 10px;
}
.svc-card-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--k-text-light);
  margin: 0;
}

/* ============================
   SERVICE CARD - DARK (glassmorphism with visual header)
   ============================ */
.svc-card-dk {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Top accent glow line */
.svc-card-dk::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}
.svc-card-dk:hover::after {
  transform: scaleX(1);
}
.svc-card-dk:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 28px 64px rgba(0,0,0,0.4), 0 0 48px rgba(59,130,246,0.1);
  border-color: rgba(255,255,255,0.14);
}

/* --- Visual header area (dark) --- */
.svc-card-dk .svc-card-visual {
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(139,92,246,0.08) 50%, rgba(30,64,175,0.12) 100%);
}
.svc-card-dk .svc-card-visual::before {
  background-image: radial-gradient(circle, rgba(96,165,250,0.08) 1.2px, transparent 1.2px);
}
.svc-card-dk .svc-card-visual::after {
  background: radial-gradient(circle, rgba(96,165,250,0.22), transparent 70%);
}
.svc-card-dk:hover .svc-card-visual::after {
  background: radial-gradient(circle, rgba(96,165,250,0.4), transparent 70%);
}
/* Dark variant - main icon */
.svc-card-dk .svc-vi-main {
  color: #60a5fa;
  filter: drop-shadow(0 8px 24px rgba(96,165,250,0.3));
}
.svc-card-dk:hover .svc-vi-main {
  filter: drop-shadow(0 12px 36px rgba(96,165,250,0.5));
}
/* Dark variant - ring */
.svc-card-dk .svc-vi-ring {
  border-color: rgba(96,165,250,0.12);
}
.svc-card-dk:hover .svc-vi-ring {
  border-color: rgba(96,165,250,0.3);
}
/* Dark variant - floating icons */
.svc-card-dk .svc-vi-float {
  color: #60a5fa;
  opacity: 0.25;
}
.svc-card-dk:hover .svc-vi-float {
  opacity: 0.55;
}

/* --- Dark card body --- */
.svc-card-dk .svc-card-body h4 {
  color: #fff;
}
.svc-card-dk .svc-card-body p {
  color: white;
}

/* --- Centered section header --- */
.svc-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.svc-center .svc-desc {
  max-width: 100%;
  margin: 0 auto;
}
.svc-center .svc-link {
  margin-top: 24px;
}

/* --- Card Grid --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Stagger animation --- */
.svc-card, .svc-card-dk {
  animation: svcFadeUp 0.6s ease both;
}
.svc-grid > :nth-child(1) { animation-delay: 0s; }
.svc-grid > :nth-child(2) { animation-delay: 0.12s; }
.svc-grid > :nth-child(3) { animation-delay: 0.24s; }

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

/* --- Services Responsive --- */
@media (max-width: 991px) {
  .svc-block { padding: 72px 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .svc-center { margin-bottom: 40px; }
  .svc-card-visual { height: 170px; }
  .svc-vi-main { font-size: 3.4rem; }
  .svc-vi-ring { width: 90px; height: 90px; }
  .svc-vi-float { font-size: 1.15rem; }
}
@media (max-width: 767px) {
  .svc-grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; margin: 0 auto; }
  .svc-card-visual { height: 160px; }
}
@media (max-width: 575px) {
  .svc-block { padding: 52px 0; }
  .svc-heading { font-size: 1.55rem; }
  .svc-card-body,
  .svc-card-dk .svc-card-body { padding: 22px 20px 26px; }
  .svc-card:hover, .svc-card-dk:hover { transform: translateY(-6px); }
  .svc-link { width: 100%; justify-content: center; }
  .svc-card-visual { height: 140px; }
  .svc-vi-main { font-size: 2.8rem; }
  .svc-vi-ring { width: 80px; height: 80px; }
  .svc-vi-float { font-size: 1rem; }
  .svc-vi-f1 { top: 15%; right: 12%; }
  .svc-vi-f2 { bottom: 15%; left: 12%; }
}

/* ===========================================
   CTA BANNER - CORPORATE
   =========================================== */
.cta-banner-section {
  padding: 80px 0;
  background: transparent;
}
.cta-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050a14 0%, #0a1628 35%, #0e1e3d 70%, #162044 100%);
  z-index: 0;
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96,165,250,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner-bg::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  padding: 56px 52px;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 100px;
  color: #93bbfd;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-badge i {
  color: #fbbf24;
  font-size: 0.85rem;
}

/* Title & desc */
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* Buttons row */
.cta-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--k-primary-blue);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.2);
  color: var(--k-primary-blue);
  background: #fff;
}
.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  background: #22c55e;
  color: #fff;
}

/* Trust items */
.cta-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.cta-trust span i {
  color: #60a5fa;
  font-size: 0.8rem;
}

/* CTA Responsive */
@media (max-width: 991px) {
  .cta-banner-content {
    padding: 44px 36px;
    text-align: center;
  }
  .cta-desc {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta-actions {
    justify-content: center;
  }
  .cta-trust {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cta-banner-section {
    padding: 48px 0;
  }
  .cta-banner-content {
    padding: 36px 24px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .btn-cta-primary,
  .btn-cta-whatsapp {
    justify-content: center;
    width: 100%;
  }
  .cta-trust {
    gap: 12px;
  }
}

/* ════════════════════════════════════════════════════════════════
   ESTILOS POR PÁGINA  (extraídos del HTML para mantenerlo limpio)
   ════════════════════════════════════════════════════════════════ */

/* ── Portfolio / Casos de éxito ─────────────────────────────────── */
.portfolio-filter-section {
    background: #f8fafc;
    padding: 36px 0 0;
    border-bottom: 1px solid #e2e8f0;
}
.portfolio-filter-wrap { display: flex; justify-content: center; }
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-bottom: 28px;
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: .84rem;
    font-weight: 600;
    font-family: 'Poppins', system-ui, sans-serif;
    cursor: pointer;
    transition: all .22s;
    white-space: nowrap;
    line-height: 1;
}
.filter-pill:hover {
    border-color: #3b82f6;
    color: #1e40af;
    background: #eff6ff;
    transform: translateY(-1px);
}
.filter-pill.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30,64,175,.3);
}
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    font-size: .7rem;
    font-weight: 700;
    background: rgba(255,255,255,.22);
    transition: background .22s;
}
.filter-pill:not(.active) .filter-count {
    background: #f1f5f9;
    color: #94a3b8;
}
.portfolio-cat-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.cat-software-medida { background: #dcfce7; color: #166534; }
.cat-erp             { background: #dbeafe; color: #1e40af; }
.cat-pagina-web      { background: #f3e8ff; color: #6b21a8; }
.cat-tienda-virtual  { background: #ffedd5; color: #c2410c; }
.portfolio-item { transition: opacity .25s, transform .25s; }
.portfolio-item.pf-hidden { display: none; }
.portfolio-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 48px 20px;
    color: #94a3b8;
    font-size: .95rem;
    text-align: center;
}
.portfolio-empty i { font-size: 2.5rem; }
@media (max-width: 480px) {
    .filter-pill { padding: 9px 16px; font-size: .78rem; }
    .filter-count { min-width: 18px; height: 18px; font-size: .65rem; }
}

/* ── Feature-section (gestion, studio, créditos, federaciones) ──── */
.page-gestion .feature-section .row,
.page-studio .feature-section .row,
.page-creditos .feature-section .row,
.page-federaciones .feature-section .row {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.page-gestion .feature-section .row { min-height: auto !important; }
@media (max-width: 991.98px) {
    .page-gestion .feature-section .row,
    .page-studio .feature-section .row,
    .page-creditos .feature-section .row,
    .page-federaciones .feature-section .row {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* ── Index · tarjetas "¿Por qué Kondory?" ───────────────────────── */
.why-feature-icon  { font-size: 2.5rem; }
.why-feature-title { font-size: 1.05rem; }
