:root {
  --color1: #03a7fc;
  --color2: #06c1d5;
  --color3: #5ad594;
  --color4: #d6de81;
  --color5: #ffce99;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-primary {
  @apply inline-block px-8 py-3 bg-color1 text-white font-semibold rounded-lg shadow-md hover:bg-opacity-80 transition-all duration-300 transform hover:-translate-y-0.5;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.06);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-banner__text {
  flex: 1 1 auto;
  font-size: 15px;
  color: #111827;
  line-height: 1.5;
}
.cookie-banner__button {
  background: var(--color1);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.cookie-banner__button:hover {
  opacity: 0.9;
}
.cookie-banner__button:active {
  transform: translateY(1px);
}

.btn-secondary {
  @apply inline-block px-8 py-3 bg-gray-200 text-gray-800 font-semibold rounded-lg hover:bg-gray-300 transition-all duration-300;
}

.btn-primary-outline {
  @apply inline-block px-8 py-3 border-2 font-semibold rounded-lg transition-all duration-300 transform hover:-translate-y-0.5;
}

.form-input {
  @apply w-full px-4 py-3 bg-white border border-gray-300 rounded-lg text-lg text-gray-900 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-color1 focus:border-transparent;
}

.mobile-menu-hidden {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  z-index: 40;
}

.mobile-menu-visible {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-height: 80vh;
  opacity: 1;
  overflow: auto;
  z-index: 40;
}

#burger-btn.active svg path:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
#burger-btn.active svg path:nth-child(2) {
  opacity: 0;
}
#burger-btn.active svg path:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
#burger-btn svg path {
  transition: all 0.3s ease-in-out;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.15;
}

#hero .parallax-bg {
  opacity: 0.1;
}

.clip-path-hero {
  clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
}

.deco-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.3;
}

.deco-shape.shape-1 {
  width: 150px;
  height: 150px;
  background-color: var(--color1);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  filter: blur(20px);
}

.deco-shape.shape-2 {
  width: 200px;
  height: 200px;
  border: 10px solid var(--color2);
  bottom: -50px;
  right: -50px;
  z-index: 20;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.clip-path-philosophy {
  clip-path: polygon(
    0% 15%,
    15% 15%,
    15% 0%,
    85% 0%,
    85% 15%,
    100% 15%,
    100% 85%,
    85% 85%,
    85% 100%,
    15% 100%,
    15% 85%,
    0% 85%
  );
}

.clip-path-course1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.deco-shape.shape-3 {
  width: 120px;
  height: 120px;
  background-color: var(--color4);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: -1;
}

.clip-path-course2 {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}
.deco-shape.shape-4 {
  width: 150px;
  height: 150px;
  border: 12px solid var(--color1);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  z-index: -1;
}

#platform .parallax-bg {
  opacity: 0.3;
}

.clip-path-design {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#focus-meditation .parallax-bg {
  opacity: 0.05;
}
.clip-path-meditation {
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

#manifesto .parallax-bg {
  opacity: 0.1;
}

.clip-path-spotlight-main {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.deco-shape.shape-5 {
  width: 100px;
  height: 100px;
  background-color: var(--color2);
  border-radius: 50%;
  top: 10%;
  left: -50px;
  z-index: 20;
  opacity: 0.5;
}

.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.fade-in-up {
  transform: translateY(50px);
}
.reveal-on-scroll.fade-in-left {
  transform: translateX(-50px);
}
.reveal-on-scroll.fade-in-right {
  transform: translateX(50px);
}
.reveal-on-scroll.fade-in {
  transform: translateY(0);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-on-scroll[data-delay="100"].is-visible {
  transition-delay: 100ms;
}
.reveal-on-scroll[data-delay="200"].is-visible {
  transition-delay: 200ms;
}
.reveal-on-scroll[data-delay="300"].is-visible {
  transition-delay: 300ms;
}
.reveal-on-scroll[data-delay="400"].is-visible {
  transition-delay: 400ms;
}
.reveal-on-scroll[data-delay="500"].is-visible {
  transition-delay: 500ms;
}
.reveal-on-scroll[data-delay="600"].is-visible {
  transition-delay: 600ms;
}

#current-year {
  display: inline;
}

.clip-path-about1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.deco-shape.about-shape-1 {
  width: 200px;
  height: 200px;
  border: 12px solid var(--color2);
  opacity: 0.3;
  border-radius: 50%;
  top: -50px;
  left: -50px;
  z-index: 5;
}

.deco-shape.about-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color5);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -50px;
  right: -50px;
  z-index: 20;
  filter: blur(10px);
}

.clip-path-about2 {
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.deco-shape.about-shape-3 {
  width: 300px;
  height: 300px;
  background-color: var(--color4);
  opacity: 0.1;
  border-radius: 50%;
  top: 10%;
  left: 5%;
  z-index: -1;
  filter: blur(50px);
}

.deco-shape.about-shape-4 {
  width: 200px;
  height: 200px;
  background-color: var(--color1);
  opacity: 0.1;
  border-radius: 50%;
  bottom: 15%;
  right: 10%;
  z-index: -1;
  filter: blur(50px);
}

#vision .parallax-bg {
  opacity: 0.15;
  filter: invert(1);
}

.clip-path-service1 {
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.deco-shape.service-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color1);
  opacity: 0.1;
  border-radius: 50%;
  top: 5%;
  left: -100px;
  z-index: -1;
  filter: blur(50px);
}

.deco-shape.service-shape-2 {
  width: 150px;
  height: 150px;
  border: 10px solid var(--color5);
  opacity: 0.3;
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: 5;
}

.clip-path-service2 {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.deco-shape.service-shape-3 {
  width: 250px;
  height: 250px;
  background-color: var(--color4);
  opacity: 0.05;
  border-radius: 50%;
  top: 15%;
  right: 5%;
  z-index: -1;
  filter: blur(40px);
}

.deco-shape.service-shape-4 {
  width: 200px;
  height: 200px;
  border: 10px solid var(--color2);
  opacity: 0.1;
  border-radius: 50%;
  bottom: 10%;
  left: 10%;
  z-index: -1;
}
.clip-path-faq1 {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}

.deco-shape.faq-shape-1 {
  width: 100px;
  height: 100px;
  background-color: var(--color1);
  opacity: 0.2;
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: 5;
  filter: blur(10px);
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  background-color: #ffffff;
  cursor: pointer;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color1);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  background-color: #f9fafb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-active {
  border-color: var(--color1);
}
.faq-item-active .faq-question {
  color: var(--color1);
}
.faq-item-active .faq-icon {
  transform: rotate(180deg);
}

.deco-shape.faq-shape-2 {
  width: 400px;
  height: 400px;
  background-color: var(--color3);
  opacity: 0.05;
  border-radius: 50%;
  top: 10%;
  left: -150px;
  z-index: -1;
  filter: blur(50px);
}
.deco-shape.faq-shape-3 {
  width: 300px;
  height: 300px;
  background-color: var(--color2);
  opacity: 0.05;
  border-radius: 50%;
  bottom: 10%;
  right: -100px;
  z-index: -1;
  filter: blur(50px);
}

.clip-path-faq2 {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
}

.deco-shape.faq-shape-4 {
  width: 120px;
  height: 120px;
  border: 10px solid var(--color5);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -40px;
  right: -40px;
  z-index: 5;
}

.deco-shape.contact-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color1);
  opacity: 0.05;
  border-radius: 50%;
  top: 10%;
  left: -150px;
  z-index: -1;
  filter: blur(50px);
}

.deco-shape.contact-shape-2 {
  width: 400px;
  height: 400px;
  background-color: var(--color2);
  opacity: 0.05;
  border-radius: 50%;
  bottom: 5%;
  right: -150px;
  z-index: -1;
  filter: blur(50px);
}

.form-input {
  @apply w-full px-4 py-3 bg-white border border-gray-300 rounded-lg text-lg text-gray-900 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-color1 focus:border-transparent;
}

.btn-primary {
  @apply inline-block px-8 py-3 bg-color1 text-white font-semibold rounded-lg shadow-md hover:bg-opacity-80 transition-all duration-300 transform hover:-translate-y-0.5;
}
