* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.decorative-circles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(40px);
}

.circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.circle-2 {
  width: 800px;
  height: 800px;
  bottom: -300px;
  left: -200px;
  animation: float 25s ease-in-out infinite reverse;
}

.circle-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 30s ease-in-out infinite;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(2px);
}

.bubble-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 10%;
  animation: float 15s ease-in-out infinite;
}
.bubble-2 {
  width: 40px;
  height: 40px;
  top: 30%;
  right: 15%;
  animation: float 18s ease-in-out infinite reverse;
}
.bubble-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation: float 22s ease-in-out infinite;
}
.bubble-4 {
  width: 50px;
  height: 50px;
  top: 60%;
  right: 25%;
  animation: float 17s ease-in-out infinite reverse;
}
.bubble-5 {
  width: 70px;
  height: 70px;
  bottom: 35%;
  right: 10%;
  animation: float 20s ease-in-out infinite;
}
.bubble-6 {
  width: 45px;
  height: 45px;
  top: 45%;
  left: 30%;
  animation: float 19s ease-in-out infinite reverse;
}
.bubble-7 {
  width: 55px;
  height: 55px;
  bottom: 50%;
  left: 50%;
  animation: float 21s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(-15px, 15px);
  }
  75% {
    transform: translate(15px, 10px);
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.search-input {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 14px;
  width: 220px;
  transition: all 0.3s;
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  width: 280px;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 12px 16px;
  color: #5b2a18;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(91, 42, 24, 0.1);
  transition: background 0.2s;
}

.search-result-item:hover {
  background: rgba(244, 124, 74, 0.1);
}

.search-result-item:last-child {
  border-bottom: none;
}

.btn-primary {
  background: #ffe2c7;
  color: #5b2a18;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ffd3a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-large {
  background: #ffe2c7;
  color: #5b2a18;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary-large:hover {
  background: #ffd3a8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary-large {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.mini-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.circle-portal {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 8px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.portal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soft-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.principle-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.diagnostic-question {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.radio-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.radio-card input[type="radio"]:checked + span {
  font-weight: 700;
}

.radio-card:has(input[type="radio"]:checked) {
  background: #ffe2c7;
  color: #5b2a18;
  border-color: #ffe2c7;
}

.diagnostic-result {
  background: rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: none;
}

.diagnostic-result.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.14);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.service-card-large {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .service-card-large {
    grid-column: span 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.portfolio-scroll::-webkit-scrollbar {
  height: 8px;
}

.portfolio-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.portfolio-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.portfolio-item {
  flex: 0 0 400px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  scroll-snap-align: start;
  transition: all 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 12px;
}

.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.process-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #ffe2c7;
  color: #5b2a18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.process-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.team-card {
  background: rgba(255, 255, 255, 0.14);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.9);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: white;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 16px;
  transition: all 0.3s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-select option {
  background: #f47c4a;
  color: white;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(244, 124, 74, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.3s;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(244, 124, 74, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
}

.cookie-settings.active {
  display: flex;
}

.cookie-settings-content {
  background: linear-gradient(135deg, #f47c4a 0%, #ffb56b 100%);
  padding: 32px;
  border-radius: 28px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-option {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-option:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cookie-option input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .circle-portal {
    max-width: 350px;
  }

  .process-timeline::before {
    left: 24px;
  }

  .process-marker {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .process-step {
    gap: 20px;
  }

  .portfolio-item {
    flex: 0 0 300px;
  }
}
