:root {
  --bg-color: #fffbf5;
  --primary: #ff6b6b;
  --secondary: #4ecdc4;
  --dark: #2d3142;
  --soft-yellow: #ffe66d;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-color);
  color: var(--dark);
  scroll-behavior: smooth;
}
h1,
h2,
h3,
.brand-font {
  font-family: "Fredoka", sans-serif;
}

.quest-map-item {
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  top: 0;
  border: 2px solid transparent;
}
.quest-map-item:hover {
  top: -4px;
  background-color: white;
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.15);
  border-color: var(--primary);
}
.quest-map-item:active {
  top: 2px;
  transform: scale(0.97);
}

.progress-bar {
  height: 12px;
  background: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--soft-yellow));
  width: 0%;
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.skill-btn {
  transition: all 0.2s ease;
  position: relative;
  background: white;
  border: 2px solid #f1f5f9;
}
.skill-btn:hover:not(.active) {
  border-color: var(--secondary);
  transform: translateY(-2px);
}
.skill-btn.active {
  background-color: white;
  color: var(--primary);
  box-shadow: 0 8px 16px rgba(255, 107, 107, 0.1);
  border-color: var(--primary);
}
.skill-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: 4px;
}
.skill-btn.active::after {
  width: 50%;
}

.review-card {
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}

.transform-tab {
  transition: all 0.3s ease;
  cursor: pointer;
}
.transform-tab.active {
  background-color: var(--primary);
  color: white;
}

.img-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  opacity: 0;
}
.image-container:hover .img-nav {
  opacity: 1;
}
.img-nav:hover {
  background: var(--primary);
  color: white;
}

.btn-main {
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}
.btn-main:hover {
  top: -3px;
  filter: brightness(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}
.btn-main:active {
  top: 1px;
  transform: scale(0.98);
}

.input-focus:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
  outline: none;
}
.scribble {
  position: absolute;
  z-index: -1;
  opacity: 0.6;
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.95);
  z-index: 1000;
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}
#lightbox.active {
  display: flex;
}

.skill-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.skill-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.price-card {
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-8px);
}

.step-connector {
  position: relative;
}
@media (min-width: 768px) {
  .step-connector:not(:last-child)::after {
    content: "→";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--secondary);
    font-weight: bold;
    opacity: 0.5;
  }
}

details summary::-webkit-details-marker {
  display: none;
}
summary {
  list-style: none;
}
details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child {
  border-bottom: none;
}
