

:root {
  --kp-primary: #5C2E91;
  --kp-secondary: #FF9100;
  --kp-tertiary: #2E7D32;
  --kp-bg-light: #F5F3FF;
  --kp-bg-dark: #1A0033;
  --kp-text-primary: #1A1A2E;
  --kp-text-secondary: #4A4A68;
  --kp-accent: #D81B60;
  --kp-neutral: #E0E0E0;
  --kp-border: #CCBDFF;
  --kp-shadow: rgba(92, 46, 145, 0.2);
  --kp-font-main: 'Inter', sans-serif;
  --kp-font-mono: 'JetBrains Mono', monospace;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--kp-font-main);
  color: var(--kp-text-primary);
  background-color: var(--kp-bg-light);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--kp-font-mono);
  font-weight: 700;
  color: var(--kp-primary);
  text-wrap: balance;
}

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

a:hover, a:focus {
  color: var(--kp-accent);
  text-decoration: none;
}

p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

img {
  max-width: 100%;
  height: auto;
}


.kp-text-balance {
  text-wrap: balance;
}

.kp-section {
  padding: 5rem 0;
  position: relative;
}

.kp-section-sm {
  padding: 3rem 0;
}

.kp-mb-0 {
  margin-bottom: 0;
}

.kp-mb-1 {
  margin-bottom: 1rem;
}

.kp-mb-2 {
  margin-bottom: 2rem;
}

.kp-mb-3 {
  margin-bottom: 3rem;
}

.kp-mb-4 {
  margin-bottom: 4rem;
}

.kp-mb-5 {
  margin-bottom: 5rem;
}

.kp-mt-0 {
  margin-top: 0;
}

.kp-mt-1 {
  margin-top: 1rem;
}

.kp-mt-2 {
  margin-top: 2rem;
}

.kp-mt-3 {
  margin-top: 3rem;
}

.kp-mt-4 {
  margin-top: 4rem;
}

.kp-mt-5 {
  margin-top: 5rem;
}

.kp-py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.kp-py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.kp-py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.kp-circle {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--kp-bg-light);
  box-shadow: 0 8px 32px var(--kp-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kp-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px var(--kp-shadow);
}

.kp-circle-sm {
  width: 120px;
  height: 120px;
}

.kp-circle-md {
  width: 200px;
  height: 200px;
}

.kp-circle-lg {
  width: 300px;
  height: 300px;
}

.kp-circle-content {
  padding: 15%;
  text-align: center;
}


.kp-orbital-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 4rem auto;
}

.kp-orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.kp-orbital-item {
  position: absolute;
  transform-origin: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kp-orbital-item:hover {
  z-index: 20;
}


.kp-button {
  display: inline-block;
  font-family: var(--kp-font-mono);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.kp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: width 0.3s ease;
}

.kp-button:hover::before {
  width: 100%;
}

.kp-button-primary {
  background-color: var(--kp-primary);
  color: white;
}

.kp-button-primary:hover, .kp-button-primary:focus {
  background-color: darken(var(--kp-primary), 10%);
  color: white;
  box-shadow: 0 4px 12px var(--kp-shadow);
}

.kp-button-secondary {
  background-color: var(--kp-secondary);
  color: var(--kp-text-primary);
}

.kp-button-secondary:hover, .kp-button-secondary:focus {
  background-color: darken(var(--kp-secondary), 10%);
  color: var(--kp-text-primary);
  box-shadow: 0 4px 12px rgba(255, 145, 0, 0.3);
}

.kp-button-outline {
  background-color: transparent;
  border-color: var(--kp-primary);
  color: var(--kp-primary);
}

.kp-button-outline:hover, .kp-button-outline:focus {
  background-color: var(--kp-primary);
  color: white;
  box-shadow: 0 4px 12px var(--kp-shadow);
}


.kp-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px var(--kp-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

.kp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--kp-shadow);
}

.kp-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.kp-card-body {
  padding: 1.5rem;
}

.kp-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--kp-primary);
}

.kp-card-text {
  color: var(--kp-text-secondary);
  margin-bottom: 1.5rem;
}

.kp-card-circle {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.kp-card-circle .kp-card-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.kp-navbar {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px var(--kp-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.3s ease;
}

.kp-navbar.scrolled {
  padding: 0.5rem 0;
}

.kp-navbar-brand {
  display: flex;
  align-items: center;
}

.kp-navbar-brand img {
  height: 50px;
  width: auto;
}

.kp-navbar-brand span {
  font-family: var(--kp-font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--kp-primary);
  margin-left: 0.5rem;
}

.kp-navbar-toggler {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.kp-navbar-toggler:focus {
  outline: none;
}

.kp-navbar-toggler-icon {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--kp-primary);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.kp-navbar-toggler.active .kp-navbar-toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.kp-navbar-toggler.active .kp-navbar-toggler-icon:nth-child(2) {
  opacity: 0;
}

.kp-navbar-toggler.active .kp-navbar-toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.kp-navbar-nav {
  display: flex;
  align-items: center;
}

.kp-nav-item {
  margin: 0 1rem;
}

.kp-nav-link {
  font-family: var(--kp-font-mono);
  font-weight: 500;
  color: var(--kp-text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.kp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--kp-accent);
  transition: width 0.3s ease;
}

.kp-nav-link:hover::after,
.kp-nav-link:focus::after,
.kp-nav-link.active::after {
  width: 100%;
}

.kp-nav-link:hover,
.kp-nav-link:focus,
.kp-nav-link.active {
  color: var(--kp-primary);
}


@media (max-width: 991.98px) {
  .kp-navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .kp-navbar-collapse.show {
    transform: translateX(0);
  }

  .kp-navbar-nav {
    flex-direction: column;
  }

  .kp-nav-item {
    margin: 1rem 0;
  }

  .kp-nav-link {
    font-size: 1.5rem;
    text-align: center;
    display: block;
  }
}


.kp-hero {
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.kp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

.kp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 0, 51, 0.7), rgba(92, 46, 145, 0.5));
  z-index: -1;
}

.kp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.kp-hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.kp-hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .kp-hero-title {
    font-size: 2.5rem;
  }
  
  .kp-hero-subtitle {
    font-size: 1.25rem;
  }
}


.kp-features {
  position: relative;
  padding: 5rem 0;
}

.kp-feature-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--kp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 24px var(--kp-shadow);
  transition: transform 0.3s ease;
}

.kp-feature-circle:hover {
  transform: scale(1.1);
}

.kp-feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.kp-feature-text {
  text-align: center;
  color: var(--kp-text-secondary);
}


.kp-quickstart {
  background-color: var(--kp-bg-light);
  padding: 5rem 0;
  position: relative;
}

.kp-quickstart-step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.kp-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--kp-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kp-font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.kp-step-content {
  padding-top: 0.5rem;
}

.kp-step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.kp-step-text {
  color: var(--kp-text-secondary);
}


.kp-resources {
  padding: 5rem 0;
  background-color: white;
  position: relative;
}

.kp-resource-icon {
  font-size: 2.5rem;
  color: var(--kp-primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.kp-resource-card:hover .kp-resource-icon {
  transform: translateY(-10px);
}

.kp-resource-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.kp-resource-text {
  color: var(--kp-text-secondary);
  margin-bottom: 1.5rem;
}


.kp-events {
  padding: 5rem 0;
  position: relative;
}

.kp-event-date {
  font-family: var(--kp-font-mono);
  font-weight: 700;
  color: var(--kp-accent);
  margin-bottom: 0.5rem;
}

.kp-event-location {
  font-style: italic;
  color: var(--kp-text-secondary);
  margin-bottom: 1rem;
}


.kp-faq {
  padding: 5rem 0;
  background-color: var(--kp-bg-light);
  position: relative;
}

.kp-accordion-item {
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--kp-shadow);
  background-color: white;
}

.kp-accordion-header {
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  position: relative;
  font-family: var(--kp-font-mono);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--kp-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.kp-accordion-header:hover {
  background-color: rgba(92, 46, 145, 0.05);
}

.kp-accordion-header::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.3s ease;
}

.kp-accordion-header.active::after {
  transform: rotate(180deg);
}

.kp-accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.kp-accordion-body.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}


.kp-contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--kp-shadow);
  position: relative;
}

.kp-form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--kp-text-primary);
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid var(--kp-border);
  border-radius: 50px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

textarea.kp-form-control {
  border-radius: 20px;
  min-height: 150px;
  resize: vertical;
}

.kp-form-control:focus {
  border-color: var(--kp-primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 46, 145, 0.25);
}

.kp-form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.kp-form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.kp-form-check-label {
  font-size: 0.9rem;
  color: var(--kp-text-secondary);
}

.iti {
  width: 100%;
  margin-bottom: 1.5rem;
}


.kp-contact-info {
  padding: 2.5rem;
  background-color: var(--kp-primary);
  color: white;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.kp-contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.kp-contact-info h2 {
  color: white;
}

.kp-contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.kp-contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--kp-secondary);
}

.kp-contact-info-text {
  flex: 1;
}

.kp-contact-info-text h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.kp-contact-info-text p {
  margin-bottom: 0;
  opacity: 0.9;
}


.kp-footer {
  background-color: var(--kp-bg-dark);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.kp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

.kp-footer-logo {
  margin-bottom: 1.5rem;
}

.kp-footer-logo img {
  height: 60px;
  width: auto;
}

.kp-footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.kp-footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.kp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.kp-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.kp-footer-links a:hover {
  color: var(--kp-secondary);
}

.kp-footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.kp-footer-contact-icon {
  color: var(--kp-secondary);
  font-size: 1.25rem;
  margin-right: 1rem;
}

.kp-footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
}

.kp-footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.kp-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0.5rem;
}

.kp-footer-bottom a:hover {
  color: var(--kp-secondary);
}


.kp-cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.kp-cookie-consent.hidden {
  transform: translate(-50%, 150%);
  opacity: 0;
}

.kp-cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.kp-cookie-text {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--kp-text-secondary);
}

.kp-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.kp-cookie-button {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--kp-font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.kp-cookie-accept {
  background-color: var(--kp-primary);
  color: white;
}

.kp-cookie-accept:hover {
  background-color: darken(var(--kp-primary), 10%);
}

.kp-cookie-reject {
  background-color: var(--kp-neutral);
  color: var(--kp-text-primary);
}

.kp-cookie-reject:hover {
  background-color: darken(var(--kp-neutral), 10%);
}

.kp-cookie-customize {
  background-color: transparent;
  border: 1px solid var(--kp-border);
  color: var(--kp-primary);
}

.kp-cookie-customize:hover {
  background-color: rgba(92, 46, 145, 0.05);
}

.kp-cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.kp-cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.kp-cookie-settings-content {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.kp-cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.kp-cookie-settings-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.kp-cookie-settings-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--kp-text-secondary);
  transition: color 0.3s ease;
}

.kp-cookie-settings-close:hover {
  color: var(--kp-primary);
}

.kp-cookie-settings-body {
  margin-bottom: 1.5rem;
}

.kp-cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--kp-border);
}

.kp-cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kp-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.kp-cookie-category-title {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.kp-cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.kp-cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.kp-cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--kp-neutral);
  transition: 0.3s;
  border-radius: 34px;
}

.kp-cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .kp-cookie-category-slider {
  background-color: var(--kp-primary);
}

input:disabled + .kp-cookie-category-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

input:checked + .kp-cookie-category-slider:before {
  transform: translateX(26px);
}

.kp-cookie-category-description {
  font-size: 0.9rem;
  color: var(--kp-text-secondary);
}

.kp-cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.kp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.kp-modal.show {
  opacity: 1;
  visibility: visible;
}

.kp-modal-content {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.kp-modal.show .kp-modal-content {
  transform: scale(1);
}

.kp-modal-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.kp-modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.kp-modal-body {
  margin-bottom: 1.5rem;
  text-align: center;
}

.kp-modal-footer {
  display: flex;
  justify-content: center;
}

.kp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--kp-text-secondary);
  transition: color 0.3s ease;
}

.kp-modal-close:hover {
  color: var(--kp-primary);
}


.kp-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.kp-article-header {
  margin-bottom: 2rem;
}

.kp-article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.kp-article-meta {
  color: var(--kp-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.kp-article-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.kp-article-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
}

.kp-article-content h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.kp-article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.kp-article-content ul,
.kp-article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.kp-article-content blockquote {
  border-left: 4px solid var(--kp-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(92, 46, 145, 0.05);
}


.kp-page-header {
  padding: 5rem 0 3rem;
  background-color: var(--kp-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.kp-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
}

.kp-page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.kp-page-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}


.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: var(--kp-primary);
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 16px var(--kp-shadow);
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--kp-primary);
  color: white;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -25px;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 1.5rem;
}

.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--kp-neutral);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover {
  background-color: var(--kp-primary);
  transform: scale(1.2);
}

@media (max-width: 767.98px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }
  
  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}


.kp-thank-you {
  padding: 5rem 0;
  text-align: center;
}

.kp-thank-you-icon {
  font-size: 5rem;
  color: var(--kp-primary);
  margin-bottom: 2rem;
}

.kp-thank-you-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.kp-thank-you-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


.kp-legal {
  padding: 5rem 0;
}

.kp-legal-header {
  margin-bottom: 3rem;
}

.kp-legal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.kp-legal-date {
  color: var(--kp-text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

.kp-legal-section {
  margin-bottom: 3rem;
}

.kp-legal-section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--kp-border);
  padding-bottom: 0.75rem;
}

.kp-legal-subsection {
  margin-bottom: 2rem;
}

.kp-legal-subsection-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


@media (max-width: 991.98px) {
  .kp-section {
    padding: 4rem 0;
  }
  
  .kp-section-sm {
    padding: 2rem 0;
  }
  
  .kp-hero {
    height: 70vh;
  }
  
  .kp-hero-title {
    font-size: 3rem;
  }
  
  .kp-page-title {
    font-size: 2.5rem;
  }
  
  .kp-orbital-container {
    height: 500px;
  }
}

@media (max-width: 767.98px) {
  .kp-section {
    padding: 3rem 0;
  }
  
  .kp-hero {
    height: 60vh;
  }
  
  .kp-hero-title {
    font-size: 2.5rem;
  }
  
  .kp-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .kp-page-title {
    font-size: 2rem;
  }
  
  .kp-page-subtitle {
    font-size: 1.1rem;
  }
  
  .kp-article-title {
    font-size: 2rem;
  }
  
  .kp-thank-you-title {
    font-size: 2.5rem;
  }
  
  .kp-thank-you-text {
    font-size: 1.1rem;
  }
  
  .kp-orbital-container {
    height: 400px;
  }
}

@media (max-width: 575.98px) {
  .kp-section {
    padding: 2.5rem 0;
  }
  
  .kp-hero {
    height: auto;
    min-height: 500px;
  }
  
  .kp-hero-title {
    font-size: 2rem;
  }
  
  .kp-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .kp-page-title {
    font-size: 1.75rem;
  }
  
  .kp-article-title {
    font-size: 1.75rem;
  }
  
  .kp-cookie-buttons {
    flex-direction: column;
  }
  
  .kp-orbital-container {
    height: 300px;
  }
}


@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

::view-transition-old(root) {
  animation: 0.5s fade-out ease;
}

::view-transition-new(root) {
  animation: 0.5s fade-in ease;
}


@media print {
  .kp-navbar,
  .kp-footer,
  .kp-cookie-consent {
    display: none !important;
  }
  
  .kp-section {
    padding: 1rem 0 !important;
  }
  
  .kp-hero {
    height: auto !important;
    min-height: 0 !important;
  }
  
  .kp-hero-overlay {
    display: none !important;
  }
  
  .kp-hero-content {
    background: none !important;
    box-shadow: none !important;
    color: black !important;
  }
  
  .kp-hero-title,
  .kp-hero-subtitle {
    color: black !important;
  }
  
  .kp-button {
    display: none !important;
  }
  
  a {
    text-decoration: underline !important;
  }
  
  .kp-card,
  .kp-accordion-item {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}