/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: transparent;
  color: #ffffff;
  line-height: 1.6;
  padding-top: 0;
}

h1 {
  font-family: "Akira Expanded", sans-serif;
}
h2,
a,
p {
  font-family: "Zalando Sans Expanded", sans-serif;
}
h3 {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

main > section:not(.hero),
footer {
  background-color: #1a140c;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-1 {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 20px;
  z-index: 1000;
  max-width: 1160px;
  padding: 0 20px;
  margin: auto;
}

.navbar-content {
  background-color: #32302e;
  border-radius: 50px;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-logo img {
  max-height: 33px;
  max-width: 150px;
}

.navbar-logo {
  font-size: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-links a:hover {
  opacity: 0.7;
}
.navbar-links a:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .navbar {
    max-width: 100%;
    padding: 0 12px;
  }
  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #32302e;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }

  .navbar-links.active {
    right: 0;
  }
  .navbar-links a {
    font-size: 1.2rem;
    padding: 12px 24px;
    position: relative;
    z-index: 1002;
  }

  .navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
  }

  .navbar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  margin-top: -72px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  height: 100vh;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, transparent 0%, #1a140c 100%);
  z-index: 0;
}

.hero-content {
  display: grid;
  align-items: center;
}

.hero-text {
  text-align: center;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text .subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 250px;
  border-radius: 50px;
  height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background-color: #3b231b;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(59, 35, 27, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 35, 27, 0.6);
}
.btn-primary:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

.img-placeholder {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0.7;
  max-width: 300px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 48px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.testimonials-carousel {
  overflow: hidden;
  max-width: 100vw;
}

.testimonials-track {
  display: flex;
  gap: -19px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background-color: #310704;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex: 0 0 calc(33.333% - 16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

/* ── BEFORE / AFTER SLIDER ── */
.ba-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3b231b;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: ew-resize;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.ba-handle svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  pointer-events: none;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.ba-label--before {
  left: 12px;
  background: rgba(26, 20, 12, 0.85);
  color: rgba(255, 255, 255, 0.75);
}

.ba-label--after {
  right: 12px;
  background: #3b231b;
  color: #ffffff;
}

/* ── CARD BODY ── */
.card-body {
  padding: 18px 20px 22px;
}

.testimonial-author {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
  opacity: 1;
}

.testimonial-result {
  display: inline-block;
  background: rgba(59, 35, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
  color: #ffffff;
}

/* ── CAROUSEL CONTROLS ── */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  background-color: #3b231b;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: #4d2e23;
  transform: scale(1.1);
}
.carousel-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #3b231b;
  width: 32px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-dot:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== TARGET SECTION ===== */
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.target-card {
  background-color: #310704;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

.target-card:hover {
  transform: translateY(-4px);
}
.target-card .img-placeholder {
  height: 200px;
  margin-bottom: 20px;
}
.target-card .img-placeholder img {
  max-height: 200px;
  border-radius: 25px;
}
.target-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
.target-cta {
  text-align: center;
}

/* ===== PROCESS ===== */
.process-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  opacity: 0.9;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.process-step {
  background-color: #310704;
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  left: 40px;
  background-color: #3b231b;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(59, 35, 27, 0.4);
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 8px;
}
.process-step p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
}
.process-cta {
  text-align: center;
}

/* ===== PRICING ===== */
.pricing-features li {
  font-family: "Zalando Sans Expanded", sans-serif;
}

.pricing-grid {
  /*display: grid;
  grid-template-columns: 1fr;*/
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #310704;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.pricing-card.active {
  border: 2px solid #3b231b;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓ ";
  color: #3b231b;
  font-weight: 800;
  margin-right: 8px;
}

/* ===== Q&A ===== */
.qa-list {
  max-width: 800px;
  margin: 0 auto 48px;
}

details {
  background-color: #310704;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 24px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

details:hover {
  background-color: #3d0905;
}

summary {
  font-size: 1.2rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 32px;
  transition: color 0.3s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform 0.3s ease, color 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
  color: #ffffff;
}
summary:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 8px;
}

.qa-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}

details[open] .qa-answer {
  grid-template-rows: 1fr;
}
.qa-answer-inner {
  min-height: 0;
}

.qa-answer p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

.qa-cta {
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background-color: #32302e;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand p {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-links a:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 32px);
    margin: 0 16px;
  }

  .ba-wrap {
    height: 240px;
  }
}
@media (max-width: 1023px) {
  .testimonial-card {
    flex: 0 0 calc(98% - 32px);
    margin: 0 16px;
  }
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(95% - 32px);
    margin: 0 16px;
  }
}

@media (min-width: 350px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
  }
  .target-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-content {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
  }

  .target-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
