:root {
  --bg: #ffffff;
  --section-alt: #ece7de;
  --panel-bg: #e5dfd6;
  --surface: #f3f7ff;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --brand: #35684f;
  --brand-2: #e7d7b8;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(22, 22, 22, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 74px 0;
}

.sponsor-bar {
  background: rgba(243, 247, 255, 0.92);
  border-bottom: 1px solid #d7d1c7;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.sponsor-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

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

.author-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 20px rgba(11, 34, 58, 0.22);
}

.sponsor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3fbff 0%, #edf5ff 100%);
  border: 1px solid #cddceb;
  box-shadow: 0 8px 18px rgba(23, 72, 129, 0.12);
}

.sponsor-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.sponsor-badge p {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1f3778;
}

.soft {
  background: var(--section-alt);
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead {
  font-size: 1.06rem;
  max-width: 760px;
}

.hero {
  padding: 72px 0;
  background: linear-gradient(100deg, #0a1a78 0%, #3bc9ab 100%);
}

.hero h1,
.hero p {
  color: #f7f9ff;
}

.hero .btn {
  background: #f3f7ff;
  color: #1f3778;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.side-scroll-scene {
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.side-scroll-sticky {
  position: relative;
  height: auto;
  overflow: hidden;
}

.side-scroll-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.side-panel {
  width: 50%;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.side-panel.soft {
  background: linear-gradient(100deg, #0a1a78 0%, #3bc9ab 100%);
}

.side-panel.soft h2,
.side-panel.soft p {
  color: #f7f9ff;
}

.side-panel.soft .btn {
  background: #f3f7ff;
  color: #1f3778;
}

.hero-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.hero-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9;
}

.hero-indicators .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-indicators .dot.active {
  width: 30px;
  background: #19e2bb;
}

.card {
  min-height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.hero-slide-image {
  width: 100%;
  min-height: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.rustic-bg {
  background-image:
    linear-gradient(140deg, rgba(26, 44, 34, 0.42), rgba(26, 44, 34, 0.08)),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1200&q=80");
}

.path-bg {
  background-image:
    linear-gradient(140deg, rgba(26, 44, 34, 0.25), rgba(26, 44, 34, 0.06)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 11px 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.93;
}

.btn.ghost {
  background: #d8c5a3;
  color: #2d2b27;
}

.feature-grid,
.service-grid,
.product-grid,
.mini-grid,
.pricing-grid,
.team-grid,
.stats {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.qb_arim_title {
  display: flex;
  justify-content: center;
}

.qb_arim_title_inner {
  text-align: center;
  max-width: 760px;
}

.qb_arim_title_inner h2 {
  margin-bottom: 12px;
}

.qb_arim_title span {
  display: block;
  color: var(--muted);
  margin: 0 auto;
}

.qb_pro_general {
  margin-top: 30px;
  cursor: grab;
  touch-action: pan-y;
}

.qb_pro_viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.qb_pro_track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.qb_pro_detailds {
  min-width: calc(100% / 2);
  padding: 0 10px;
}

.qb_pro_ct {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.qb_pro_inside figure {
  margin: 0;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb_pro_inside img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

.qb_pro_inside strong {
  display: block;
  padding: 16px 18px 20px;
  text-align: center;
}

.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #bdbdbd;
  color: transparent;
  font-size: 0;
  padding: 0;
}

.slick-dots li.slick-active button {
  width: 34px;
  border-radius: 999px;
  background: #1ad6b2;
}

.side-scroll-scene.is-dragging,
.qb_pro_general.is-dragging {
  cursor: grabbing;
}

.feature,
.service,
.product,
.price-card,
.member,
blockquote,
.faq-list details {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
}

.feature,
.service,
.product,
.price-card {
  padding: 20px;
}

.card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature:hover,
.service:hover,
.product:hover,
.price-card:hover,
.member:hover,
blockquote:hover,
.faq-list details:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(22, 22, 22, 0.14);
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0 18px;
}

.inspire-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.inspire-section {
  background: var(--bg);
}

.inspire-main .lead {
  max-width: 100%;
}

.inspire-main .service-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.inspire-main .service {
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.inspire-main .service:hover {
  transform: none;
  box-shadow: none;
}

.service-icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #dfdfe2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
}

.service-icon i,
.stats-icon i {
  line-height: 1;
}

.service-content h3 {
  margin: 4px 0 6px;
}

.service-content p {
  margin: 0;
}

.inspire-main .btn {
  width: 320px;
  max-width: 100%;
  margin-top: 14px;
}

.inspire-media img {
  width: 100%;
  border-radius: 0;
  display: block;
}

.stats-showcase {
  background: var(--bg);
  padding-top: 14px;
}

.stats-panel {
  background: var(--panel-bg);
  padding: 30px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 46px;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stats-icon {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: #23c7a3;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  flex-shrink: 0;
}

.stats-content strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  margin-bottom: 10px;
  color: #23c7a3;
}

.stats-content span {
  color: #222;
  font-size: clamp(1.2rem, 2.3vw, 2.05rem);
  font-weight: 700;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.stats div {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand);
}

.stats span {
  color: #555;
  font-size: 0.95rem;
}

.product-grid {
  margin: 30px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 52px;
}

.product {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  min-height: auto;
  padding: 0;
  text-align: center;
}

.product:hover {
  transform: none;
  box-shadow: none;
}

.product img {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}

.product span {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
}

.product-showcase {
  background: var(--bg);
}

.product-showcase h2,
.product-showcase .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.product-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.product-actions .btn {
  justify-self: center;
  min-width: min(420px, 100%);
}

.scroll-top-btn {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 0;
  background: #23c7a3;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.mini-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-grid article {
  padding: 22px 20px 14px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.feature-services {
  background: #dfeefe;
}

.feature-services article:hover {
  transform: none;
  box-shadow: none;
}

.feature-services-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #20c7a2;
  font-size: 52px;
  margin-bottom: 14px;
}

.feature-services .mini-grid h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 800;
}

.feature-services .mini-grid p {
  margin: 0;
  color: #1f1f1f;
  max-width: 290px;
}

.pricing-showcase {
  background: var(--bg);
}

.pricing-showcase h2 {
  text-align: center;
  margin-bottom: 26px;
}

.pricing-carousel {
  margin-top: 10px;
}

.pricing-viewport {
  overflow: hidden;
}

.pricing-track {
  display: flex;
  width: 300%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-slide {
  width: calc(100% / 3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.price-card {
  background: #f2f2f2;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.price-card h3 {
  font-size: 2.65rem;
  font-size: clamp(1.5rem, 2.5vw, 2.65rem);
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2f2e2c;
}

.price-card .price-value {
  color: #20c7a2;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 800;
}

.price-card ul {
  list-style: none;
  margin: 16px 0 26px;
  padding: 18px 0 0;
  border-top: 1px solid #bcbcbc;
}

.price-card li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 8px;
  min-height: 34px;
  display: flex;
  align-items: center;
  color: #4f4f4f;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #20c7a2;
  font-size: 2rem;
  line-height: 1;
}

.price-card .btn {
  width: 100%;
}

ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: #545454;
}

.empty-holder {
  height: 70px;
}

.client-showcase {
  text-align: center;
}

.client-logos {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 20px;
}

.client-logo {
  height: 92px;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.team-showcase {
  background: linear-gradient(100deg, #0a1a78 0%, #31c9a7 100%);
}

.team-showcase h2,
.team-showcase .lead {
  color: #f6f8ff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.team-showcase .lead {
  max-width: 940px;
}

.team-photo-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.team-photo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
}

.team-photo-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.team-photo-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.team-photo-card:hover .team-photo-name {
  opacity: 1;
  transform: translateY(0);
}

.team-bottom-bar {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.team-dots {
  grid-column: 2;
}

.team-bottom-bar .scroll-top-btn {
  grid-column: 3;
  justify-self: end;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}

.member {
  padding: 20px;
  text-align: center;
}

.member img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

blockquote {
  margin: 18px 0 0;
  padding: 24px;
  font-size: 1.05rem;
}

blockquote footer {
  margin-top: 10px;
  font-weight: 700;
  color: #3d3d3d;
}

.testimonial-showcase {
  background: var(--bg);
}

.client-showcase.soft,
#faq {
  background: var(--bg);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 58px;
  align-items: center;
}

.testimonial-photo {
  width: 260px;
  height: 380px;
  object-fit: cover;
}

.testimonial-content {
  position: relative;
  min-height: 300px;
  padding-right: 70px;
}

.testimonial-content h2 {
  margin-bottom: 18px;
}

.testimonial-content p {
  color: #2e2e2e;
  max-width: 680px;
  font-size: 1.03rem;
}

.testimonial-content strong {
  display: block;
  margin-top: 22px;
  font-size: 2rem;
  font-size: clamp(1.2rem, 2.7vw, 2rem);
}

.testimonial-quote {
  position: absolute;
  right: 0;
  top: 0;
  color: #21c8a4;
  font-weight: 800;
  font-size: 6rem;
  line-height: 0.8;
}

.testimonial-line {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: #21c8a4;
}

.faq-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list details p {
  margin: 10px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.06s;
}

.reveal-delay-2 {
  transition-delay: 0.12s;
}

.reveal-delay-3 {
  transition-delay: 0.18s;
}

.btn.pulse {
  animation: pulse 0.85s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.footer {
  padding: 24px 0;
  border-top: 1px solid #ddd3c2;
  text-align: center;
  background: var(--section-alt);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .side-scroll-scene {
    height: auto;
  }

  .side-scroll-sticky {
    position: static;
    height: auto;
    overflow: visible;
  }

  .side-scroll-track {
    width: 100%;
    height: auto;
    display: block;
    transform: none !important;
  }

  .side-panel {
    width: 100%;
    min-height: 620px;
  }

  .hero-grid,
  .hero-grid.reverse {
    grid-template-columns: 1fr;
  }

  .qb_pro_detailds {
    min-width: 100%;
    padding: 0;
  }

  .feature-grid,
  .product-grid,
  .team-grid,
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .mini-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .pricing-track {
    width: 100%;
    transform: none !important;
  }

  .pricing-slide {
    width: 100%;
    grid-template-columns: 1fr;
    display: none;
  }

  .pricing-slide:first-child {
    display: grid;
  }

  .pricing-dots {
    display: none;
  }

  .inspire-layout {
    grid-template-columns: 1fr;
  }

  .inspire-media {
    order: -1;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .feature-grid,
  .service-grid,
  .product-grid,
  .team-grid,
  .team-photo-grid,
  .client-logos {
    grid-template-columns: 1fr;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-photo {
    width: 100%;
    max-width: 360px;
    height: 320px;
  }

  .testimonial-content {
    padding-right: 0;
  }

  .testimonial-quote,
  .testimonial-line {
    display: none;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .scroll-top-btn {
    justify-self: center;
  }

  .sponsor-inner {
    min-height: 66px;
    justify-content: space-between;
    gap: 10px;
  }

  .author-logo {
    width: 50px;
    height: 50px;
  }

  .sponsor-badge {
    padding: 7px 10px;
    gap: 8px;
  }

  .sponsor-logo {
    width: 28px;
    height: 28px;
  }

  .sponsor-badge p {
    font-size: 0.8rem;
  }
}
