.landing-home {
  --border-radius: 0.875rem;
  --primary-light-color: #84ffde;
  --primary-color: #00b685;
  --primary-hover: #00a478;
  --primary-hover-2: #008a65;
  --primary-disabled: #60c3cb;
  --primary-rgb: 0, 182, 133;
  --bg: #f6fbf9;
  --surface: #ffffff;
  --ink: #0e2420;
  --ink-soft: #52685f;
  --ink-faint: #8aa39a;
  --line: #dcebe6;
  --radius: var(--border-radius);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
}

.landing-home h1,
.landing-home h2,
.landing-home h3,
.landing-home h4 {
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

.landing-home p {
  color: var(--ink-soft);
}

.landing-home a {
  text-decoration: none;
}

.landing-home .container-narrow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.landing-home section {
  padding: 2rem 0;
}

@media (max-width: 767px) {
  .landing-home section {
    padding: 3.25rem 0;
  }
}

.landing-home .eyebrow {
  color: var(--primary-hover-2);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.landing-home .eyebrow i {
  font-size: 1.1rem;
}

.landing-home .section-title {
  font-size: 2rem;
  max-width: 640px;
}

.landing-home .section-lead {
  max-width: 560px;
  font-size: 1.05rem;
}

.landing-home .btn-brand {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.9rem;
  font-weight: 600;
  font-size: 1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.landing-home .btn-brand:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
}

.landing-home .btn-outline-brand {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1.7rem;
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.landing-home .btn-outline-brand:hover {
  border-color: var(--primary-color);
  background: #eefaf6;
  color: var(--ink);
}

.landing-home .browser-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(14, 36, 32, 0.25);
}

.landing-home .browser-frame .frame-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  background: #333;
  border-bottom: 1px solid var(--line);
}

.landing-home .browser-frame .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.landing-home .browser-frame .dot:nth-child(1) {
  background: #ffb199;
}

.landing-home .browser-frame .dot:nth-child(2) {
  background: #ffe08a;
}

.landing-home .browser-frame .dot:nth-child(3) {
  background: var(--primary-light-color);
}

.landing-home .hero {
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}

.landing-home .hero-blob {
  position: absolute;
  inset-inline-start: -140px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(132, 255, 222, 0.55),
    rgba(132, 255, 222, 0) 70%
  );
  z-index: 0;
}

.landing-home .hero-content,
.landing-home .hero-visual {
  position: relative;
  z-index: 1;
}

.landing-home .hero-scene {
  position: relative;
}

.landing-home .hero-visual .browser-frame {
  animation: landing-float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.landing-home .shop-screen {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0.85rem 0.9rem 1rem;
  min-height: 340px;
}

.landing-home .shop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.landing-home .shop-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.landing-home .shop-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light-color)
  );
}

.landing-home .shop-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.landing-home .shop-cart {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #eafaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover-2);
  font-size: 0.95rem;
}

.landing-home .shop-cart .count {
  position: absolute;
  top: -6px;
  inset-inline-start: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  animation: shop-badge 6.5s ease-in-out infinite;
}

.landing-home .shop-stage {
  position: relative;
  min-height: 250px;
}

.landing-home .shop-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.landing-home .shop-step-list {
  animation: shop-show-list 6.5s ease-in-out infinite;
}

.landing-home .shop-step-pay {
  animation: shop-show-pay 6.5s ease-in-out infinite;
}

.landing-home .shop-step-ok {
  animation: shop-show-ok 6.5s ease-in-out infinite;
}

.landing-home .shop-step-sms {
  animation: shop-show-sms 6.5s ease-in-out infinite;
}

.landing-home .shop-product {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.42rem 0.5rem;
  margin-bottom: 0.45rem;
}

.landing-home .shop-product:nth-child(2) {
  animation: shop-product-pick 6.5s ease-in-out infinite;
}

.landing-home .shop-thumb {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 8px;
}

.landing-home .shop-product:nth-child(1) .shop-thumb {
  background: linear-gradient(135deg, #b8ead6, #7ad8b3);
}

.landing-home .shop-product:nth-child(2) .shop-thumb {
  background: linear-gradient(135deg, #9fe0c8, #00b685);
}

.landing-home .shop-product:nth-child(3) .shop-thumb {
  background: linear-gradient(135deg, #d9f6ea, #a8e6cf);
}

.landing-home .shop-meta {
  flex: 1;
  min-width: 0;
}

.landing-home .shop-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

.landing-home .shop-price {
  font-size: 0.7rem;
  color: var(--primary-hover-2);
  font-weight: 700;
}

.landing-home .shop-add {
  flex: 0 0 auto;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.58rem;
  border-radius: 7px;
  white-space: nowrap;
}

.landing-home .shop-product:nth-child(2) .shop-add {
  animation: shop-add-click 6.5s ease-in-out infinite;
}

.landing-home .shop-pay-head {
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.landing-home .shop-pay-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  margin-bottom: 0.7rem;
}

.landing-home .shop-pay-item .shop-thumb {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  background: linear-gradient(135deg, #9fe0c8, #00b685);
}

.landing-home .shop-pay-sum {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
}

.landing-home .shop-pay-sum strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.landing-home .shop-pay-btn {
  display: block;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  animation: shop-pay-click 6.5s ease-in-out infinite;
}

.landing-home .shop-ok {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0.5rem;
}

.landing-home .shop-ok-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eafaf4;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  animation: shop-ok-pop 6.5s ease-in-out infinite;
}

.landing-home .shop-ok-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.landing-home .shop-ok-code {
  font-size: 0.72rem;
  color: var(--ink-faint);
}

.landing-home .shop-sms {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.landing-home .shop-sms-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.landing-home .shop-sms-head i {
  color: var(--primary-color);
  font-size: 1rem;
}

.landing-home .shop-sms-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.5rem 0.55rem;
  opacity: 0;
  transform: translateY(10px);
}

.landing-home .shop-sms-customer {
  animation: shop-sms-in 6.5s ease-out infinite;
}

.landing-home .shop-sms-admin {
  animation: shop-sms-in-2 6.5s ease-out infinite;
}

.landing-home .shop-sms-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: #eafaf4;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.landing-home .shop-sms-body {
  flex: 1;
  min-width: 0;
}

.landing-home .shop-sms-who {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink);
}

.landing-home .shop-sms-text {
  font-size: 0.66rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.landing-home .shop-sms-check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.landing-home .shop-cursor {
  position: absolute;
  top: 158px;
  left: 36px;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: var(--ink);
  box-shadow: 0 0 0 6px rgba(0, 182, 133, 0);
  z-index: 5;
  pointer-events: none;
  animation: shop-cursor 6.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.landing-home .hero-float {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 12px 24px -18px rgba(14, 36, 32, 0.4);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.landing-home .hero-float i {
  color: var(--primary-color);
}

.landing-home .hero-float-1 {
  top: 18%;
  inset-inline-start: -12px;
  animation: landing-float 5s ease-in-out infinite;
}

.landing-home .hero-float-2 {
  top: 58%;
  inset-inline-end: -10px;
  animation: landing-float 6.5s ease-in-out infinite reverse;
}

.landing-home .hero-float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 0 rgba(0, 182, 133, 0.45);
  animation: shop-pulse 2s ease-out infinite;
}

@keyframes shop-show-list {
  0%,
  16% {
    opacity: 1;
  }

  22%,
  100% {
    opacity: 0;
  }
}

@keyframes shop-show-pay {
  0%,
  18% {
    opacity: 0;
  }

  22%,
  36% {
    opacity: 1;
  }

  42%,
  100% {
    opacity: 0;
  }
}

@keyframes shop-show-ok {
  0%,
  38% {
    opacity: 0;
    transform: scale(0.96);
  }

  42%,
  54% {
    opacity: 1;
    transform: scale(1);
  }

  58%,
  100% {
    opacity: 0;
    transform: scale(0.96);
  }
}

@keyframes shop-show-sms {
  0%,
  54% {
    opacity: 0;
  }

  58%,
  90% {
    opacity: 1;
  }

  96%,
  100% {
    opacity: 0;
  }
}

@keyframes shop-sms-in {
  0%,
  56% {
    opacity: 0;
    transform: translateY(10px);
  }

  62%,
  90% {
    opacity: 1;
    transform: none;
  }

  96%,
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes shop-sms-in-2 {
  0%,
  64% {
    opacity: 0;
    transform: translateY(10px);
  }

  70%,
  90% {
    opacity: 1;
    transform: none;
  }

  96%,
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes shop-product-pick {
  0%,
  4% {
    border-color: var(--line);
    box-shadow: none;
  }

  8%,
  16% {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px -12px rgba(0, 182, 133, 0.5);
  }

  20%,
  100% {
    border-color: var(--line);
    box-shadow: none;
  }
}

@keyframes shop-add-click {
  0%,
  6% {
    transform: scale(1);
  }

  9% {
    transform: scale(0.88);
    background: var(--primary-hover);
  }

  13%,
  100% {
    transform: scale(1);
    background: var(--primary-color);
  }
}

@keyframes shop-pay-click {
  0%,
  24% {
    transform: scale(1);
  }

  28% {
    transform: scale(0.96);
    background: var(--primary-hover);
  }

  32%,
  100% {
    transform: scale(1);
    background: var(--primary-color);
  }
}

@keyframes shop-ok-pop {
  0%,
  40% {
    transform: scale(0.7);
  }

  46% {
    transform: scale(1.08);
  }

  52%,
  100% {
    transform: scale(1);
  }
}

@keyframes shop-cursor {
  0% {
    top: 148px;
    left: 78px;
    opacity: 0;
    transform: none;
  }

  2% {
    top: 158px;
    left: 36px;
    opacity: 1;
    transform: none;
  }

  8% {
    top: 158px;
    left: 36px;
    transform: scale(0.8);
    box-shadow: 0 0 0 10px rgba(0, 182, 133, 0.18);
  }

  12% {
    top: 158px;
    left: 36px;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 182, 133, 0);
    opacity: 0;
  }

  20% {
    top: 196px;
    left: calc(50% - 7px);
    opacity: 0;
    transform: none;
  }

  23% {
    top: 196px;
    left: calc(50% - 7px);
    opacity: 1;
    transform: none;
  }

  28% {
    top: 196px;
    left: calc(50% - 7px);
    transform: scale(0.8);
    box-shadow: 0 0 0 10px rgba(0, 182, 133, 0.18);
  }

  32% {
    top: 196px;
    left: calc(50% - 7px);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 182, 133, 0);
    opacity: 0;
  }

  100% {
    top: 148px;
    left: 78px;
    opacity: 0;
    transform: none;
  }
}

@keyframes shop-badge {
  0%,
  8% {
    transform: scale(0);
  }

  12% {
    transform: scale(1.2);
  }

  16%,
  88% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes shop-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 182, 133, 0.45);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 182, 133, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 182, 133, 0);
  }
}

@keyframes landing-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991px) {
  .landing-home .hero-float-1 {
    inset-inline-start: 8px;
  }

  .landing-home .hero-float-2 {
    inset-inline-end: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-home .hero-visual .browser-frame,
  .landing-home .shop-step-list,
  .landing-home .shop-step-pay,
  .landing-home .shop-step-ok,
  .landing-home .shop-step-sms,
  .landing-home .shop-product:nth-child(2),
  .landing-home .shop-product:nth-child(2) .shop-add,
  .landing-home .shop-pay-btn,
  .landing-home .shop-ok-icon,
  .landing-home .shop-sms-customer,
  .landing-home .shop-sms-admin,
  .landing-home .shop-cursor,
  .landing-home .shop-cart .count,
  .landing-home .hero-float,
  .landing-home .hero-float-dot {
    animation: none !important;
  }

  .landing-home .shop-step-list,
  .landing-home .shop-step-pay,
  .landing-home .shop-step-ok {
    opacity: 0;
  }

  .landing-home .shop-step-sms,
  .landing-home .shop-sms-customer,
  .landing-home .shop-sms-admin {
    opacity: 1;
    transform: none;
  }

  .landing-home .shop-cart .count {
    transform: scale(1);
  }

  .landing-home .shop-cursor {
    display: none;
  }
}

.landing-home .hero h1 {
  font-size: 2.7rem;
  max-width: 620px;
}

@media (max-width: 767px) {
  .landing-home .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .landing-home .hero-content {
    text-align: center;
  }

  .landing-home .hero-content .section-lead,
  .landing-home .hero-content h1 {
    margin-inline: auto;
  }

  .landing-home .hero-actions,
  .landing-home .hero-content .stat-row {
    justify-content: center;
  }
}

.landing-home .stat-row {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.landing-home .stat-row > div {
  min-width: 0;
}

.landing-home .stat-row .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
}

.landing-home .stat-row .lbl {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

@media (max-width: 991px) {
  .landing-home .stat-row {
    gap: 0.5rem;
    margin-top: 1.35rem;
    flex-wrap: nowrap;
  }

  .landing-home .stat-row > div {
    flex: 1 1 0;
  }

  .landing-home .stat-row .num {
    font-size: 0.92rem;
  }

  .landing-home .stat-row .lbl {
    font-size: 0.66rem;
    line-height: 1.4;
  }
}

.landing-home .feature-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.landing-home .feature-row:last-child {
  border-bottom: none;
}

.landing-home .feature-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #eafaf4;
  color: var(--primary-hover-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.landing-home .feature-row h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.landing-home .feature-row p {
  font-size: 0.92rem;
  margin: 0;
}

.landing-home #why .feature-row {
  border-radius: 12px;
  padding: 1.15rem 0.75rem;
  margin: 0 -0.75rem;
  border: 1px solid transparent;
  animation: why-feat 12s ease-in-out infinite;
}

.landing-home #why .feature-icon {
  animation: why-icon 12s ease-in-out infinite;
}

.landing-home #why .col-lg-6:nth-child(1) .feature-row,
.landing-home #why .col-lg-6:nth-child(1) .feature-icon {
  animation-delay: 0s;
}

.landing-home #why .col-lg-6:nth-child(2) .feature-row,
.landing-home #why .col-lg-6:nth-child(2) .feature-icon {
  animation-delay: 2s;
}

.landing-home #why .col-lg-6:nth-child(3) .feature-row,
.landing-home #why .col-lg-6:nth-child(3) .feature-icon {
  animation-delay: 4s;
}

.landing-home #why .col-lg-6:nth-child(4) .feature-row,
.landing-home #why .col-lg-6:nth-child(4) .feature-icon {
  animation-delay: 6s;
}

.landing-home #why .col-lg-6:nth-child(5) .feature-row,
.landing-home #why .col-lg-6:nth-child(5) .feature-icon {
  animation-delay: 8s;
}

.landing-home #why .col-lg-6:nth-child(6) .feature-row,
.landing-home #why .col-lg-6:nth-child(6) .feature-icon {
  animation-delay: 10s;
}

.landing-home .why-visual {
  min-height: 360px;
}

.landing-home .why-stage {
  position: relative;
  min-height: 340px;
  background: linear-gradient(180deg, #f6fbf9, #fff);
  overflow: hidden;
}

.landing-home .why-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  animation: why-scene 12s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.landing-home .why-scene-1 {
  animation-delay: 0s;
}

.landing-home .why-scene-2 {
  animation-delay: 2s;
}

.landing-home .why-scene-3 {
  animation-delay: 4s;
}

.landing-home .why-scene-4 {
  animation-delay: 6s;
}

.landing-home .why-scene-5 {
  animation-delay: 8s;
}

.landing-home .why-scene-6 {
  animation-delay: 10s;
}

.landing-home .why-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.2rem 0.4rem;
}

.landing-home .why-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-hover-2);
}

.landing-home .why-builder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.landing-home .why-block {
  height: 42px;
  border-radius: 10px;
  background: #eafaf4;
  border: 1px dashed #b9d9d0;
  animation: why-pop 12s ease-in-out infinite;
}

.landing-home .why-block.wide {
  width: 100%;
  animation-delay: 0.05s;
}

.landing-home .why-block.mid {
  width: 72%;
  animation-delay: 0.2s;
}

.landing-home .why-block.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  height: 78px;
  background: transparent;
  border: none;
  animation-delay: 0.35s;
}

.landing-home .why-block.split span {
  display: block;
  border-radius: 10px;
  background: #d9f6ea;
  border: 1px dashed #b9d9d0;
}

.landing-home .why-manage {
  width: 100%;
}

.landing-home .why-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.landing-home .why-toggle:last-child {
  border-bottom: none;
}

.landing-home .why-toggle-bar {
  flex: 1;
  height: 8px;
  border-radius: 99px;
  background: #dcebe6;
}

.landing-home .why-toggle-label {
  width: 58px;
  flex: 0 0 58px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink);
}

.landing-home .why-switch {
  width: 34px;
  height: 18px;
  border-radius: 99px;
  background: #cfe8df;
  position: relative;
}

.landing-home .why-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  animation: why-switch 12s ease-in-out infinite;
}

.landing-home .why-devices {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
}

.landing-home .why-desk {
  width: 148px;
  height: 100px;
  border-radius: 10px;
  border: 2px solid #cfe8df;
  background: #eafaf4;
  position: relative;
  animation: why-device 12s ease-out infinite;
  animation-delay: 4s;
}

.landing-home .why-desk::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 8px;
  margin-left: -20px;
  border-radius: 0 0 6px 6px;
  background: #cfe8df;
}

.landing-home .why-tablet {
  width: 72px;
  height: 92px;
  border-radius: 10px;
  border: 2px solid #9fe0c8;
  background: #f4fffb;
  animation: why-device 12s ease-out infinite;
  animation-delay: 4.18s;
}

.landing-home .why-phone {
  width: 42px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  background: #fff;
  box-shadow: 0 8px 16px -12px rgba(0, 182, 133, 0.5);
  animation: why-device 12s ease-out infinite;
  animation-delay: 4.36s;
}

.landing-home .why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
}

.landing-home .why-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.4rem;
  text-align: center;
  animation: why-stat 12s ease-out infinite;
}

.landing-home .why-stat:nth-child(1) {
  animation-delay: 6.05s;
}

.landing-home .why-stat:nth-child(2) {
  animation-delay: 6.2s;
}

.landing-home .why-stat:nth-child(3) {
  animation-delay: 6.35s;
}

.landing-home .why-stat i {
  display: block;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

.landing-home .why-stat b {
  display: block;
  font-size: 0.72rem;
  color: var(--ink);
}

.landing-home .why-speed {
  width: 100%;
  text-align: center;
}

.landing-home .why-bar {
  height: 10px;
  border-radius: 99px;
  background: #eafaf4;
  overflow: hidden;
  margin-top: 0.8rem;
}

.landing-home .why-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: var(--primary-color);
  animation: why-bar 12s ease-in-out infinite;
}

.landing-home .why-speed-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-hover-2);
  animation: why-speed-num 12s ease-out infinite;
  animation-delay: 8s;
}

.landing-home .why-shield {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #eafaf4;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  animation: why-shield 12s ease-out infinite;
  animation-delay: 10s;
}

.landing-home .why-shield-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 182, 133, 0.35);
  animation: why-ring 12s ease-out infinite;
  animation-delay: 10s;
}

@keyframes why-scene {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  4%,
  13% {
    opacity: 1;
    transform: none;
  }

  16.6% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  16.7%,
  100% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
}

@keyframes why-feat {
  0%,
  14% {
    background: #eafaf4;
    border-color: #cfe8df;
    box-shadow: 0 10px 22px -16px rgba(0, 182, 133, 0.55);
  }

  16.6%,
  100% {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
}

@keyframes why-icon {
  0%,
  14% {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
  }

  16.6%,
  100% {
    background: #eafaf4;
    color: var(--primary-hover-2);
    transform: none;
  }
}

@keyframes why-pop {
  0%,
  3% {
    opacity: 0;
    transform: translateY(10px);
  }

  10%,
  14% {
    opacity: 1;
    transform: none;
  }

  16.6%,
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes why-device {
  0%,
  3% {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

  12%,
  14% {
    opacity: 1;
    transform: none;
  }

  16.6%,
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes why-stat {
  0%,
  3% {
    opacity: 0;
    transform: translateY(12px);
  }

  12%,
  14% {
    opacity: 1;
    transform: none;
  }

  16.6%,
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes why-speed-num {
  0%,
  6% {
    opacity: 0.35;
    transform: scale(0.92);
  }

  12%,
  14% {
    opacity: 1;
    transform: scale(1);
  }

  16.6%,
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes why-shield {
  0%,
  3% {
    transform: scale(0.72);
    opacity: 0.4;
  }

  10% {
    transform: scale(1.08);
    opacity: 1;
  }

  14%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes why-ring {
  0%,
  6% {
    transform: scale(0.7);
    opacity: 0;
  }

  12% {
    transform: scale(1.15);
    opacity: 0.7;
  }

  16.6%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
}

@keyframes why-switch {
  0%,
  5% {
    right: 18px;
    background: #fff;
  }

  11%,
  14% {
    right: 2px;
    background: #fff;
  }

  16.6%,
  100% {
    right: 2px;
  }
}

.landing-home .why-scene-2 .why-switch {
  background: var(--primary-color);
}

.landing-home .why-scene-2 .why-toggle:nth-child(1) .why-switch::after {
  animation-delay: 2.05s;
}

.landing-home .why-scene-2 .why-toggle:nth-child(2) .why-switch::after {
  animation-delay: 2.22s;
}

.landing-home .why-scene-2 .why-toggle:nth-child(3) .why-switch::after {
  animation-delay: 2.4s;
}

.landing-home .why-scene-5 .why-bar span {
  animation-delay: 8.05s;
}

@keyframes why-bar {
  0%,
  3% {
    width: 10%;
  }

  14% {
    width: 92%;
  }

  16.6%,
  100% {
    width: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-home .why-scene,
  .landing-home #why .feature-row,
  .landing-home #why .feature-icon,
  .landing-home .why-block,
  .landing-home .why-switch::after,
  .landing-home .why-bar span,
  .landing-home .why-desk,
  .landing-home .why-tablet,
  .landing-home .why-phone,
  .landing-home .why-stat,
  .landing-home .why-speed-num,
  .landing-home .why-shield,
  .landing-home .why-shield-ring {
    animation: none !important;
  }

  .landing-home .why-scene-1 {
    opacity: 1;
    transform: none;
  }

  .landing-home .why-scene-2,
  .landing-home .why-scene-3,
  .landing-home .why-scene-4,
  .landing-home .why-scene-5,
  .landing-home .why-scene-6 {
    opacity: 0;
  }
}

.landing-home .capability-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.landing-home .capability-block h4 {
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.landing-home .capability-block h4 i {
  color: var(--primary-color);
}

.landing-home .capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-home .capability-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.landing-home .capability-list li:first-child {
  border-top: none;
}

.landing-home .capability-list i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.landing-home h2.text-primary {
  color: var(--primary-color);
}

.landing-home .example-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 36, 32, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.landing-home .example-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 18px 40px rgba(14, 36, 32, 0.12);
}

.landing-home .example-card-preview {
  position: relative;
  background: #111827;
}

.landing-home .example-card-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: #1f2937;
}

.landing-home .example-card-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
}

.landing-home .example-card-chrome span:nth-child(1) {
  background: #f87171;
}

.landing-home .example-card-chrome span:nth-child(2) {
  background: #fbbf24;
}

.landing-home .example-card-chrome span:nth-child(3) {
  background: #34d399;
}

.landing-home .example-card-shot {
  height: 210px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: background-position 2.8s ease;
}

.landing-home .example-card:hover .example-card-shot {
  background-position: bottom center;
}

.landing-home .example-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease;
}

.landing-home .example-card:hover .example-card-overlay {
  opacity: 1;
}

.landing-home .example-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.95rem 1rem 1.05rem;
}

.landing-home .example-card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.landing-home .example-card-body p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.82rem;
  line-height: 1.7;
}

.landing-home #examples-slider,
.landing-home #blogs-slider {
  margin-top: 1.5rem;
}

.landing-home #examples-slider .splide__track,
.landing-home #blogs-slider .splide__track {
  padding: 0.55rem 0 0.35rem;
}

.landing-home #examples-slider .splide__slide,
.landing-home #blogs-slider .splide__slide {
  display: flex;
  height: auto;
}

.landing-home #examples-slider .example-card,
.landing-home #blogs-slider .blog-card {
  width: 100%;
}

.landing-home #examples-slider .splide__arrow,
.landing-home #blogs-slider .splide__arrow {
  background: #fff;
  border: 1px solid var(--line);
  width: 2.4rem;
  height: 2.4rem;
  opacity: 1;
  box-shadow: 0 10px 20px -16px rgba(14, 36, 32, 0.45);
}

.landing-home #examples-slider .splide__arrow svg,
.landing-home #blogs-slider .splide__arrow svg {
  fill: var(--ink);
  width: 0.85rem;
  height: 0.85rem;
}

.landing-home #examples-slider .splide__arrow:hover:not(:disabled),
.landing-home #blogs-slider .splide__arrow:hover:not(:disabled) {
  background: #eafaf4;
  border-color: var(--primary-color);
}

.landing-home #examples-slider .splide__arrow:disabled,
.landing-home #blogs-slider .splide__arrow:disabled {
  opacity: 0.35;
}

@media (max-width: 767px) {
  .landing-home #examples-slider .splide__arrow,
  .landing-home #blogs-slider .splide__arrow {
    display: none;
  }
}

.landing-home .process-track {
  position: relative;
}

.landing-home .process-track::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 6%;
  left: 6%;
  height: 2px;
  background: var(--line);
}

@media (max-width: 991px) {
  .landing-home .process-track::before {
    display: none;
  }
}

.landing-home .process-step {
  position: relative;
  text-align: center;
  padding: 0 0.6rem;
}

.landing-home .process-step .num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary-color);
  color: var(--primary-hover-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.landing-home .process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.landing-home .process-step p {
  font-size: 0.88rem;
}

.landing-home .audience-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  height: 100%;
  text-align: center;
}

.landing-home .audience-item i {
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  display: block;
}

.landing-home .audience-item h3 {
  font-size: 0.98rem;
  margin: 0;
}

.landing-home .testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.landing-home .testi-card p {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.landing-home .testi-who {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.landing-home .testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eafaf4;
  color: var(--primary-hover-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  object-fit: cover;
}

.landing-home .splide__pagination {
  position: static;
  margin-top: 1.5rem;
  padding: 0;
}

.landing-home .splide__pagination__page {
  background: var(--primary-disabled);
  width: 8px;
  height: 8px;
  opacity: 1;
}

.landing-home .splide__pagination__page.is-active {
  background: var(--primary-color);
  transform: none;
}

.landing-home .compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.landing-home .compare-table th,
.landing-home .compare-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.landing-home .compare-table th:first-child,
.landing-home .compare-table td:first-child {
  text-align: start;
  color: var(--ink-soft);
  font-weight: 500;
}

.landing-home .compare-table thead th {
  background: #f2faf7;
  font-weight: 700;
  color: var(--ink);
}

.landing-home .compare-table thead th.brand-col {
  color: var(--primary-hover-2);
}

.landing-home .compare-table tbody tr:last-child td {
  border-bottom: none;
}

.landing-home .compare-table i.bi-check-circle-fill {
  color: var(--primary-color);
}

.landing-home .compare-table i.bi-dash-circle {
  color: var(--ink-faint);
}

.landing-home #faq .eyebrow,
.landing-home #faq .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.landing-home #faq .eyebrow {
  display: flex;
  justify-content: center;
}

.landing-home #faqAccordion {
  max-width: 760px;
  margin: 1.6rem auto 0;
}

.landing-home .accordion-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 0.7rem;
  overflow: hidden;
  box-shadow: 0 10px 22px -18px rgba(14, 36, 32, 0.28);
}

.landing-home .accordion-button {
  background: var(--surface);
  font-weight: 600;
  color: var(--ink);
  padding: 1rem 1.2rem;
  font-size: 1rem;
  box-shadow: none !important;
  text-align: right;
}

.landing-home .accordion-button:not(.collapsed) {
  color: var(--primary-hover-2);
  background: #eafaf4;
}

.landing-home .accordion-button:focus {
  box-shadow: none !important;
}

.landing-home .accordion-body {
  padding: 0 1.2rem 1.1rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  background: #f7fbf9;
}

.accordion-button::after {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.landing-home .final-cta {
  background: linear-gradient(
    135deg,
    var(--primary-hover-2),
    var(--primary-color)
  );
  border-radius: calc(var(--radius) * 1.4);
  padding: 3.4rem 2.4rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-home .final-cta h2 {
  color: #fff;
}

.landing-home .final-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.landing-home .final-cta .btn-light-cta {
  background: #fff;
  color: var(--primary-hover-2);
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  font-weight: 700;
}

.landing-home .final-cta .btn-ghost-cta {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 0.8rem 1.8rem;
  font-weight: 600;
}

.landing-home .blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.landing-home .blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 14px 28px -18px rgba(14, 36, 32, 0.2);
}
