/* ===== PKSIAM v2 — Modern & Impactful ===== */

/* -- Fonts -- */
@font-face {
  font-family: 'Archia';
  src: url('tipografias/Archia/ttf/Archia-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archia';
  src: url('tipografias/Archia/ttf/Archia-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archia';
  src: url('tipografias/Archia/ttf/Archia-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archia';
  src: url('tipografias/Archia/ttf/Archia-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -- Variables -- */
:root {
  --pk-primary: #00D7AC;
  --pk-dark: #07272D;
  --pk-primary-rgb: 0, 215, 172;
  --pk-dark-rgb: 7, 39, 45;
  --pk-light: #f0fdf9;
  --pk-gray: #6c757d;
  --pk-blue: #005ADD;
  --pk-cyan: #00BEEA;
  --pk-silver: #B7C9D3;
  --pk-surface: #0c3039;
  --pk-surface-light: #f7fdfb;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* -- Reset & Global -- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--pk-dark);
  background: #fff;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: var(--pk-primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #00b894;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Archia', 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--pk-dark);
}

::selection {
  background: rgba(var(--pk-primary-rgb), 0.3);
  color: var(--pk-dark);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== Buttons ===== */
.btn-pk {
  font-family: 'Archia', sans-serif;
  background: var(--pk-primary);
  color: var(--pk-dark);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-pk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00f5c4, #00b894);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  border-radius: 50px;
}

.btn-pk:hover {
  color: var(--pk-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--pk-primary-rgb), 0.4);
}

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

.btn-pk-outline {
  font-family: 'Archia', sans-serif;
  background: transparent;
  color: var(--pk-primary);
  font-weight: 600;
  border: 2px solid var(--pk-primary);
  border-radius: 50px;
  padding: 12px 34px;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pk-outline:hover {
  background: var(--pk-primary);
  color: var(--pk-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--pk-primary-rgb), 0.3);
}

.btn-pk-white {
  font-family: 'Archia', sans-serif;
  background: #fff;
  color: var(--pk-dark);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pk-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 0px 10px rgba(var(--pk-primary-rgb), 0.2);
  background: rgba(var(--pk-primary-rgb), 0.15);
  border: 1px solid rgba(var(--pk-primary-rgb), 0.3);
  color: var(--pk-primary);

}

.btn-pk-glass {
  font-family: 'Archia', sans-serif;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 34px;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pk-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Navbar ===== */
.navbar {
  background: transparent;
  padding: 1.25rem 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(7, 39, 45, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
  height: 34px;
  transition: height 0.3s;
}

.navbar.scrolled .navbar-brand img {
  height: 30px;
}

.navbar .nav-link {
  font-family: 'Archia', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.15rem !important;
  transition: all 0.3s;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pk-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 24px;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.65rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--pk-dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

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

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--pk-primary-rgb), 0.5), transparent);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-bg .orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 90, 221, 0.3), transparent);
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.hero-bg .orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 190, 234, 0.25), transparent);
  top: 40%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes orbFloat {

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

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(15px, 35px) scale(1.02);
  }
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--pk-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--pk-primary-rgb), 0.1);
  border: 1px solid rgba(var(--pk-primary-rgb), 0.2);
  color: var(--pk-primary);
  font-family: 'Archia', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--pk-primary), var(--pk-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-visual {
  position: relative;
}

.hero-visual .hero-logo-glow {
  position: relative;
  display: inline-block;
}

.hero-visual .hero-logo-glow img {
  width: 320px;
  filter: drop-shadow(0 0 60px rgba(var(--pk-primary-rgb), 0.3));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-visual .hero-logo-glow::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(var(--pk-primary-rgb), 0.15), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(0.2rem);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-family: 'Archia', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--pk-primary);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}

/* ===== Page Header ===== */
.page-header {
  background: var(--pk-dark);
  color: #fff;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--pk-primary-rgb), 0.12), transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: -0.5px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 600px;
}

.page-header .breadcrumb-custom {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 1rem;
}

.page-header .breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
}

.page-header .breadcrumb-custom a:hover {
  color: var(--pk-primary);
}

.page-header .breadcrumb-custom .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.page-header .breadcrumb-custom .current {
  color: var(--pk-primary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--pk-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-light {
  background: var(--pk-surface-light);
}

.section-tag {
  font-family: 'Archia', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pk-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.section-subtitle {
  color: var(--pk-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Stats / Counters ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(var(--pk-primary-rgb), 0.05);
  border: 1px solid rgba(var(--pk-primary-rgb), 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  background: rgba(var(--pk-primary-rgb), 0.1);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Archia', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--pk-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--pk-gray);
  font-weight: 500;
}

/* ===== Glass Card ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--pk-primary-rgb), 0.2);
  transform: translateY(-4px);
}

#raw #row {
  height: 150px;
}

/* ===== Product Cards (Bento Style) ===== */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pk-primary), var(--pk-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(var(--pk-primary-rgb), 0.12);
  border-color: transparent;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card .card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  transition: transform 0.4s;
}

.product-card:hover .card-icon {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--pk-gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== Product Detail (productos page) ===== */
.product-detail {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.product-detail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--pk-primary), var(--pk-cyan));
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 2px 2px 0;
}

.product-detail:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.product-detail:hover::after {
  height: 100%;
}

.product-detail .product-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail:hover .product-logo {
  transform: scale(1.05);
}

.product-detail h3 {
  font-size: 1.5rem;
}

.product-detail .product-hospital {
  font-size: 0.85rem;
  color: var(--pk-primary);
  font-weight: 500;
}

.product-detail p {
  color: var(--pk-gray);
  line-height: 1.7;
}

.product-detail .badge {
  font-family: 'Archia', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(var(--pk-primary-rgb), 0.08) !important;
  color: var(--pk-dark) !important;
  border: 1px solid rgba(var(--pk-primary-rgb), 0.15) !important;
}

/* ===== Feature Grid ===== */
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: background 0.3s;
}

.feature-item:hover {
  background: rgba(var(--pk-primary-rgb), 0.04);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(var(--pk-primary-rgb), 0.1);
  color: var(--pk-primary);
  font-size: 1.3rem;
  transition: all 0.3s;
}

.feature-item:hover .feature-icon {
  background: var(--pk-primary);
  color: var(--pk-dark);
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-item p {
  color: var(--pk-gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Hospitals ===== */
.hospital-card {
  height: 15rem;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hospital-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.hospital-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--pk-primary-rgb), 0.08);
  color: var(--pk-primary);
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.hospital-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.hospital-card .city {
  font-size: 0.8rem;
  color: var(--pk-gray);
}

/* ===== Tech Section ===== */
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Archia', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tech-pill:hover {
  background: rgba(var(--pk-primary-rgb), 0.15);
  border-color: rgba(var(--pk-primary-rgb), 0.3);
  color: var(--pk-primary);
  transform: translateY(-2px);
}

.tech-pill i {
  font-size: 1.2rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--pk-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--pk-primary-rgb), 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 90, 221, 0.08), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

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

/* ===== Kit Digital ===== */
.kit-digital-content {
  max-width: 900px;
  margin: 0 auto;
}

.kit-digital-content h2 {
  margin-top: 2.5rem;
  font-size: 2rem;
}

.kit-digital-content h3 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.kit-area-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.kit-area-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.kit-area-card .area-number {
  font-family: 'Archia', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(var(--pk-primary-rgb), 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kit-area-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.kit-area-card p {
  color: var(--pk-gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

.kit-area-card .price-range {
  font-family: 'Archia', sans-serif;
  font-weight: 600;
  color: var(--pk-primary);
  font-size: 1rem;
}

/* ===== Contact Form ===== */
.contact-form .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  font-size: 0.95rem;
  background: #f8fafc;
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--pk-primary);
  box-shadow: 0 0 0 4px rgba(var(--pk-primary-rgb), 0.12);
  background: #fff;
}

.contact-form label {
  font-family: 'Archia', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--pk-dark);
}

.contact-info-card {
  background: var(--pk-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--pk-primary-rgb), 0.15), transparent 70%);
  border-radius: 50%;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.contact-info-card .info-item .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(var(--pk-primary-rgb), 0.15);
  color: var(--pk-primary);
  font-size: 1.1rem;
}

.contact-info-card .info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-size: 0.93rem;
}

.contact-info-card .info-item strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.contact-info-card .info-item a {
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-card .info-item a:hover {
  color: var(--pk-primary);
}

/* ===== Alert Messages ===== */
.alert-pk-success {
  background-color: rgba(var(--pk-primary-rgb), 0.08);
  border: 1px solid rgba(var(--pk-primary-rgb), 0.3);
  color: var(--pk-dark);
  border-radius: var(--radius-sm);
}

.alert-pk-error {
  background-color: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  border-radius: var(--radius-sm);
}

/* ===== Separator ===== */

.footer-separator {
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(var(--pk-primary-rgb), 0.3), transparent),
    linear-gradient(var(--pk-dark));
}

/* ===== Footer ===== */
.footer {
  background: var(--pk-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s;
}

.footer a:hover {
  color: var(--pk-primary);
  padding-left: 4px;
}

.footer .footer-brand img {
  height: 30px;
  margin-bottom: 1rem;
}

.footer .footer-links li {
  margin-bottom: 0.6rem;
}

.footer .footer-links a {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  margin-top: 3rem;
}

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

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

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

  .hero-visual {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .scroll-indicator {
    display: none;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 120px 0 60px;
  }

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

  .hero .lead {
    font-size: 1rem;
  }

  .page-header {
    padding: 130px 0 50px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .product-detail {
    text-align: center;
    padding: 2rem;
  }

  .product-detail .product-logo {
    margin-bottom: 1rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(7, 39, 45, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(var(--pk-primary-rgb), 0.2);
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text strong {
  font-family: 'Archia', sans-serif;
  color: #fff;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.35rem;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--pk-primary);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(var(--pk-primary-rgb), 0.15);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content h4 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--pk-gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content table {
  font-size: 0.9rem;
}

.legal-content table th {
  background: rgba(var(--pk-primary-rgb), 0.06);
  font-family: 'Archia', sans-serif;
  font-weight: 600;
  color: var(--pk-dark);
}

.legal-content table td,
.legal-content table th {
  padding: 0.75rem 1rem;
  border-color: #e2e8f0;
}

.legal-content code {
  background: rgba(var(--pk-primary-rgb), 0.08);
  color: var(--pk-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}