
@charset "UTF-8";
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: "Inter", sans-serif;
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at top, rgba(122, 43, 255, 0.025), transparent 45%);
  color: #081225;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
body ::selection {
  background-color: rgba(79, 70, 229, 0.2);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #081225;
  margin-bottom: 1.5rem;
}
.section-header p {
  font-size: 1.125rem;
  color: #475569;
}

.flag-img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}

.neon-border {
  position: relative;
}
.neon-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, #7A2BFF, #4F46E5, #C4B5FD);
  z-index: -1;
  border-radius: inherit;
  opacity: 0.15;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
}
.nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 18px rgba(124, 13, 242, 0.18);
}
.nav__logo-icon .material-symbols-outlined {
  font-size: 1.5rem;
}
.nav__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #081225;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: #7A2BFF;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__login {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: #334155;
  transition: color 0.2s;
}
.nav__login:hover {
  color: #7A2BFF;
}
@media (min-width: 640px) {
  .nav__login {
    display: block;
  }
}
.nav__cta {
  background: #7A2BFF;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.nav__cta:hover {
  box-shadow: 0 0 18px rgba(124, 13, 242, 0.18);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 7rem;
  background: #FFFFFF;
}
.hero__bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 800px;
  background: radial-gradient(circle at top, rgba(122, 43, 255, 0.05), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(122, 43, 255, 0.05);
  color: #7A2BFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(122, 43, 255, 0.2);
  width: fit-content;
}
.hero__ping {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}
.hero__ping-outer {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #7A2BFF;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero__ping-inner {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #7A2BFF;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #081225;
}
.hero__title--sora {
  font-family: "Sora", sans-serif;
}
.hero__title--space {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.hero__title--clash {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.hero__title--cabinet {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.hero__title--satoshi {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.hero__title-gradient {
  background: linear-gradient(to right, #7A2BFF, #4F46E5, #C4B5FD);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 4s ease infinite;
}
.hero__description {
  font-size: 1.25rem;
  color: #475569;
  max-width: 36rem;
  line-height: 1.75;
}
.hero__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}
.hero__btn-primary {
  padding: 0.75rem 2rem;
  background: #7A2BFF;
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(122, 43, 255, 0.2);
  transition: transform 0.2s;
}
.hero__btn-primary:hover {
  transform: scale(1.05);
}
.hero__btn-secondary {
  padding: 0.75rem 2rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #081225;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.hero__btn-secondary:hover {
  background: #F8FAFF;
}
.hero__btn-secondary .material-symbols-outlined {
  color: #7A2BFF;
}
.hero__mockup-wrap {
  position: relative;
}
.hero__mockup-wrap-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, #7A2BFF, #4F46E5, #C4B5FD);
  border-radius: 2.5rem;
  filter: blur(8px);
  opacity: 0.1;
  transition: opacity 1s;
}
.hero__mockup-wrap:hover .hero__mockup-wrap-glow {
  opacity: 0.3;
}
.hero__chat-card {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 28px 70px rgba(8, 18, 37, 0.14);
  border: 1px solid #EEF2FF;
  padding: 1rem;
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
  animation: float 4s ease-in-out infinite;
}
.hero__chat-header {
  background: linear-gradient(to right, #7A2BFF, #4F46E5);
  padding: 1.25rem;
  border-radius: 2rem 2rem 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.hero__chat-avatar {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero__chat-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.hero__chat-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: #34d399;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}
.hero__chat-status-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.05em;
}
.hero__chat-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__bubble {
  padding: 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  max-width: 85%;
}
.hero__bubble--bot {
  background: #EEF2FF;
  border-radius: 0 2rem 2rem 2rem;
  align-self: flex-start;
  color: #334155;
}
.hero__bubble--user {
  background: #7A2BFF;
  border-radius: 2rem 2rem 0 2rem;
  align-self: flex-end;
  color: #fff;
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.1);
}
.hero__bubble--upsell {
  background: linear-gradient(to right, rgba(122, 43, 255, 0.05), rgba(196, 181, 253, 0.05));
  border: 1px solid rgba(122, 43, 255, 0.1);
  border-radius: 0 2rem 2rem 2rem;
  align-self: flex-start;
  max-width: 90%;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.hero__bubble--upsell .material-symbols-outlined {
  color: #7A2BFF;
  font-size: 0.875rem;
  margin-top: 2px;
}
.hero__bubble--upsell b {
  color: #7A2BFF;
}
.hero__chat-input-row {
  margin-top: 1rem;
  border-top: 1px solid #EEF2FF;
  padding-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
}
.hero__chat-input {
  height: 3rem;
  flex: 1;
  background: #F8FAFF;
  border-radius: 1.5rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  color: #94A3B8;
  font-size: 0.875rem;
  font-style: italic;
  border: 1px solid #EEF2FF;
}
.hero__chat-send {
  width: 3rem;
  height: 3rem;
  background: #4F46E5;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.2);
}

.problem {
  padding: 6rem 0;
  background: #EEF2FF;
}
.problem__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.problem__card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.problem__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.problem__card--purple:hover {
  border-color: #7A2BFF;
}
.problem__card--pink:hover {
  border-color: #4F46E5;
}
.problem__card--teal:hover {
  border-color: rgba(79, 70, 229, 0.45);
}
.problem__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.problem__icon .material-symbols-outlined {
  font-size: 1.875rem;
  font-weight: 700;
}
.problem__icon--purple {
  background: rgba(122, 43, 255, 0.1);
  color: #7A2BFF;
}
.problem__card--purple:hover .problem__icon--purple {
  background: #7A2BFF;
  color: #fff;
}
.problem__icon--pink {
  background: rgba(196, 181, 253, 0.14);
  color: #4F46E5;
}
.problem__card--pink:hover .problem__icon--pink {
  background: #4F46E5;
  color: #fff;
}
.problem__icon--teal {
  background: rgba(125, 211, 252, 0.14);
  color: #4F46E5;
}
.problem__card--teal:hover .problem__icon--teal {
  background: #4F46E5;
  color: #fff;
}
.problem__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #081225;
}
.problem__stat {
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.problem__stat--purple {
  color: #7A2BFF;
}
.problem__stat--pink {
  color: #4F46E5;
}
.problem__stat--teal {
  color: #4F46E5;
}
.problem__desc {
  color: #64748B;
  font-weight: 500;
  line-height: 1.75;
}

.why {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(122, 43, 255, 0.02);
  z-index: -1;
}
.why__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why__card {
  background: #EEF2FF;
  border: 1px solid #EEF2FF;
  padding: 2.5rem;
  border-radius: 2rem;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.why__card:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.why__card--purple:hover {
  border-color: rgba(122, 43, 255, 0.3);
}
.why__card--teal:hover {
  border-color: rgba(79, 70, 229, 0.22);
}
.why__card--pink:hover {
  border-color: rgba(79, 70, 229, 0.22);
}
.why__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 2rem;
  transition: transform 0.2s;
}
.why__card:hover .why__icon {
  transform: scale(1.1);
}
.why__icon .material-symbols-outlined {
  font-size: 1.5rem;
}
.why__icon--purple {
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.2);
}
.why__icon--teal {
  background: linear-gradient(135deg, #4F46E5, #7DD3FC);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.16);
}
.why__icon--indigo {
  background: linear-gradient(135deg, #6366f1, #7A2BFF);
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.2);
}
.why__icon--pink {
  background: linear-gradient(135deg, #7A2BFF, #C4B5FD);
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.16);
}
.why__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #081225;
  margin-bottom: 0.75rem;
}
.why__card-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
  font-weight: 500;
}

.how {
  padding: 6rem 1.5rem;
  background: #FFFFFF;
  border-top: 1px solid #EEF2FF;
  border-bottom: 1px solid #EEF2FF;
  overflow: hidden;
}
.how__connector {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #CBD5E1, transparent);
}
@media (min-width: 1024px) {
  .how__connector {
    display: block;
  }
}
.how__steps {
  position: relative;
}
.how__grid {
  display: grid;
  gap: 3rem;
  position: relative;
}
@media (min-width: 1024px) {
  .how__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.how__num {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  border: 4px solid #E2E8F0;
  color: #94A3B8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
  transition: border-color 0.5s, color 0.5s;
}
.how__num--purple:hover {
  border-color: #7A2BFF;
  color: #7A2BFF;
}
.how__num--pink:hover {
  border-color: #4F46E5;
  color: #4F46E5;
}
.how__num--teal:hover {
  border-color: rgba(79, 70, 229, 0.45);
  color: #7DD3FC;
}
.how__num--vibrant:hover {
  border-color: #4F46E5;
  color: #4F46E5;
}
.how__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #081225;
}
.how__step-desc {
  font-size: 0.875rem;
  color: #64748B;
  padding: 0 1rem;
  line-height: 1.75;
  font-weight: 500;
}

.agents {
  padding: 6rem 1.5rem;
  background: #F8FAFF;
}
.agents__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .agents__header {
    flex-direction: row;
  }
}
.agents__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .agents__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.agents__card {
  position: relative;
  background: #fff;
  border: 1px solid #E2E8F0;
  padding: 2.5rem;
  border-radius: 2.5rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agents__card--purple:hover {
  border-color: rgba(122, 43, 255, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.agents__card--pink:hover {
  border-color: rgba(196, 181, 253, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.agents__card--teal:hover {
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.agents__card-glow {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  filter: blur(48px);
}
.agents__card-glow--purple {
  background: rgba(122, 43, 255, 0.05);
}
.agents__card-glow--pink {
  background: rgba(196, 181, 253, 0.05);
}
.agents__card-glow--teal {
  background: rgba(125, 211, 252, 0.05);
}
.agents__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s;
}
.agents__icon .material-symbols-outlined {
  font-size: 2.5rem;
  color: #fff;
}
.agents__card:hover .agents__icon {
  transform: rotate(0deg) !important;
}
.agents__icon--purple {
  background: linear-gradient(135deg, #7A2BFF, #4338ca);
  transform: rotate(3deg);
}
.agents__icon--pink {
  background: linear-gradient(135deg, #C4B5FD, #7A2BFF);
  transform: rotate(-3deg);
}
.agents__icon--teal {
  background: linear-gradient(135deg, #7DD3FC, #4F46E5);
  transform: rotate(6deg);
}
.agents__card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1rem;
}
.agents__card-desc {
  color: #475569;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.75;
}
.agents__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.agents__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}
.agents__feature .material-symbols-outlined {
  font-size: 1.25rem;
  font-weight: 900;
}
.agents__feature--purple .material-symbols-outlined {
  color: #7A2BFF;
}
.agents__feature--pink .material-symbols-outlined {
  color: #4F46E5;
}
.agents__feature--teal .material-symbols-outlined {
  color: #7DD3FC;
}

.intel {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, #F8FAFF, #FFFFFF);
}
.intel__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .intel__inner {
    flex-direction: row;
  }
}
.intel__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .intel__text {
    width: 50%;
  }
}
.intel__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #081225;
}
.intel__desc {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.75;
  font-weight: 500;
}
.intel__insights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intel__insight {
  background: #fff;
  padding: 1.5rem;
  border-radius: 2rem;
  border: 1px solid #EEF2FF;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(226, 232, 240, 0.5);
  transform: translateX(0);
  transition: transform 0.2s;
}
.intel__insight:hover {
  transform: translateX(-8px);
}
.intel__insight p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1E293B;
}
@media (min-width: 768px) {
  .intel__insight p {
    font-size: 1rem;
  }
}
.intel__insight-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.intel__insight-icon .material-symbols-outlined {
  font-weight: 900;
}
.intel__insight-icon--teal {
  background: rgba(125, 211, 252, 0.14);
  color: #4F46E5;
}
.intel__insight-icon--purple {
  background: rgba(122, 43, 255, 0.1);
  color: #4F46E5;
}
.intel__card-wrap {
  position: relative;
}
@media (min-width: 1024px) {
  .intel__card-wrap {
    width: 50%;
  }
}
.intel__card-wrap-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5, #C4B5FD);
  border-radius: 2rem;
  filter: blur(16px);
  opacity: 0.1;
}
.intel__card {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid #EEF2FF;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  width: 100%;
}
.intel__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EEF2FF;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.intel__card-header h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #081225;
}
.intel__streaming-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(196, 181, 253, 0.14);
  border-radius: 9999px;
}
.intel__streaming-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #4F46E5;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}
.intel__streaming-text {
  font-size: 0.625rem;
  color: #4F46E5;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intel__activities {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intel__activity {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.intel__activity-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intel__activity-icon--gray {
  background: #EEF2FF;
}
.intel__activity-icon--gray .material-symbols-outlined {
  color: #94A3B8;
  font-size: 0.875rem;
}
.intel__activity-icon--purple {
  background: rgba(122, 43, 255, 0.1);
  color: #7A2BFF;
}
.intel__activity-icon--purple .material-symbols-outlined {
  font-size: 1.25rem;
}
.intel__activity-time {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.intel__activity-time--gray {
  color: #94A3B8;
}
.intel__activity-time--purple {
  color: #7A2BFF;
}
.intel__activity-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  color: #334155;
}
.intel__activity-text b {
  font-weight: 700;
}

.global {
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: #FFFFFF;
}
.global__inner {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}
.global__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #081225;
  margin-bottom: 4rem;
}
.global__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.global__chip {
  padding: 0.875rem 1.5rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: default;
  transition: border-color 0.2s;
}
.global__chip span {
  font-weight: 900;
  color: #475569;
  transition: color 0.2s;
}
.global__chip:hover span {
  color: #081225;
}
.global__chip--purple:hover {
  border-color: #7A2BFF;
}
.global__chip--pink:hover {
  border-color: #4F46E5;
}
.global__chip--teal:hover {
  border-color: rgba(79, 70, 229, 0.45);
}
.global__chip--orange:hover {
  border-color: #4F46E5;
}
.global__chip--violet:hover {
  border-color: #A78BFA;
}
.global__chip--more {
  background: rgba(122, 43, 255, 0.05);
  border-color: rgba(122, 43, 255, 0.2);
}
.global__chip--more span {
  color: #7A2BFF;
}
.global__chip--more:hover {
  border-color: rgba(122, 43, 255, 0.2);
}
.global__globe-wrap {
  margin-top: 5rem;
  position: relative;
}
.global__globe-card {
  width: 100%;
  height: 20rem;
  background: #F8FAFF;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #EEF2FF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}
.global__globe-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(122, 43, 255, 0.05), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.global__globe-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: -5%;
  left: -5%;
  object-fit: cover;
  object-position: center;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.global__globe-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(122, 43, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}
.global__globe-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 50%, rgba(122, 43, 255, 0.03) 100%);
}
.global__globe-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.global__globe-icon-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid #EEF2FF;
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.1);
}
.global__globe-icon-wrap .material-symbols-outlined {
  font-size: 3rem;
  color: #7A2BFF;
  animation: pulse 2s infinite;
}
.global__globe-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #081225;
  letter-spacing: -0.025em;
}
.global__globe-sub {
  color: #64748B;
  margin-top: 0.5rem;
  font-weight: 500;
}
.global__payment-badge {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.global__payment-badge .material-symbols-outlined {
  color: #4F46E5;
  font-size: 0.875rem;
}
.global__payment-badge p {
  font-size: 0.75rem;
  font-weight: 900;
  color: #475569;
}

.pricing {
  padding: 6rem 1.5rem;
  background: #F8FAFF;
}
.pricing__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pricing__card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing__card:hover {
  border-color: rgba(122, 43, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.pricing__card--featured {
  border: 4px solid #7A2BFF;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1024px) {
  .pricing__card--featured {
    transform: translateY(-1.5rem);
  }
}
.pricing__badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #7A2BFF, #4F46E5);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.pricing__tier {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #94A3B8;
}
.pricing__tier--featured {
  color: #7A2BFF;
}
.pricing__price {
  font-size: 2.25rem;
  font-weight: 900;
  color: #081225;
  margin-bottom: 2rem;
}
.pricing__price span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #94A3B8;
}
.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex: 1;
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
}
.pricing__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing__feature .material-symbols-outlined {
  color: #7A2BFF;
  font-weight: 900;
  font-size: 1.125rem;
}
.pricing__feature--disabled {
  color: #CBD5E1;
  text-decoration: line-through;
}
.pricing__feature--disabled .material-symbols-outlined {
  font-size: 0.875rem;
  color: currentColor;
}
.pricing__btn {
  width: 100%;
  padding: 1rem;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pricing__btn--outline {
  border: 2px solid #7A2BFF;
  color: #7A2BFF;
  background: transparent;
}
.pricing__btn--outline:hover {
  background: #7A2BFF;
  color: #fff;
}
.pricing__btn--filled {
  background: #7A2BFF;
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.2);
}
.pricing__btn--filled:hover {
  transform: scale(1.05);
}
.pricing__btn--dark {
  background: #081225;
  color: #fff;
  border: none;
}
.pricing__btn--dark:hover {
  background: #1E293B;
}

/* =========================================
   FAQ — Soft premium colorful version
========================================= */

.faq {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(122, 43, 255, 0.08), transparent 28%),
    radial-gradient(circle at 86% 90%, rgba(79, 70, 229, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
}

.faq .container--narrow {
  position: relative;
  z-index: 1;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(122, 43, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 43, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 82%);
  pointer-events: none;
}

.faq__title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  position: relative;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(122, 43, 255, 0.10);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.faq__item:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 43, 255, 0.16);
  box-shadow: 0 22px 60px rgba(91, 33, 182, 0.09);
}

/* soft glow wash */
.faq__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.26), transparent 26%),
    linear-gradient(135deg, rgba(122, 43, 255, 0.035), rgba(79, 70, 229, 0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.faq__item:hover::before,
.faq__item[open]::before {
  opacity: 1;
}

.faq__item summary {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 24px 26px;
  cursor: pointer;
  font-size: 1.06rem;
  line-height: 1.45;
  font-weight: 800;
  color: #081225;
  transition: color 0.3s ease;
}

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

.faq__item[open] summary {
  color: #5b21b6;
}

.faq__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #7A2BFF;
  font-size: 1.25rem;
  line-height: 1;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.35s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq__item:hover .faq__icon {
  box-shadow: 0 12px 28px rgba(122, 43, 255, 0.12);
}

.faq__item[open] .faq__icon {
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  border-color: transparent;
  color: #ffffff;
  transform: rotate(45deg);
  box-shadow: 0 16px 34px rgba(122, 43, 255, 0.26);
}

.faq__answer {
  padding: 0 26px 24px 26px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #526072;
  max-width: 95%;
}

/* optional divider feel between title and answer */
.faq__item[open] .faq__answer {
  position: relative;
}

.faq__item[open] .faq__answer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(to right, rgba(122, 43, 255, 0.14), rgba(79, 70, 229, 0.04));
}

/* subtle first-item emphasis if you want it to feel curated */
.faq__item:first-child {
  border-color: rgba(122, 43, 255, 0.14);
}

/* responsive */
@media (max-width: 767px) {
  .faq {
    padding: 88px 0;
  }

  .faq__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .faq__list {
    gap: 14px;
  }

  .faq__item {
    border-radius: 22px;
  }

  .faq__item summary {
    padding: 20px 20px 20px 20px;
    font-size: 0.98rem;
    gap: 14px;
  }

  .faq__icon {
  color: #94A3B8;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.3s;
}

  .faq__answer {
    padding: 0 20px 20px 20px;
    font-size: 0.94rem;
    line-height: 1.72;
    max-width: 100%;
  }

  .faq__item[open] .faq__answer::before {
    margin-bottom: 14px;
  }
}

.cta {
  padding: 8rem 1.5rem;
  background: #FFFFFF;
  color: #081225;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.07), transparent, rgba(79, 70, 229, 0.05));
  z-index: -1;
}
.cta__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #CBD5E1, transparent);
}
.cta__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.cta__title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #081225;
}
.cta__desc {
  font-size: 1.5rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.75;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 640px) {
  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.cta__btn-primary {
  height: 4rem;
  padding: 0 3rem;
  background: #7A2BFF;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(122, 43, 255, 0.2);
  transition: transform 0.2s;
}
.cta__btn-primary:hover {
  transform: scale(1.05);
}
.cta__btn-secondary {
  height: 4rem;
  padding: 0 3rem;
  border: 2px solid #E2E8F0;
  background: #fff;
  color: #081225;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cta__btn-secondary:hover {
  background: #F8FAFF;
}
.cta__trust {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  .cta__trust {
    flex-direction: row;
    justify-content: center;
  }
}
.cta__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta__trust-item .material-symbols-outlined {
  font-weight: 900;
}
.cta__trust-item--purple .material-symbols-outlined {
  color: #7A2BFF;
}
.cta__trust-item--pink .material-symbols-outlined {
  color: #4F46E5;
}
.cta__trust-item--teal .material-symbols-outlined {
  color: #7DD3FC;
}

.footer {
  background: #F8FAFF;
  padding: 6rem 1.5rem;
  border-top: 1px solid #E2E8F0;
}
.footer__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    gap: 6rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #7A2BFF;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(122, 43, 255, 0.2);
}
.footer__logo-icon .material-symbols-outlined {
  font-size: 1.5rem;
  font-weight: 700;
}
.footer__brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #081225;
}
.footer__brand-desc {
  font-size: 1rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.75;
}
.footer__col-title {
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #081225;
  margin-bottom: 2rem;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1rem;
  color: #64748B;
  font-weight: 700;
}
.footer__col-links a {
  transition: color 0.2s;
}
.footer__col-links a:hover {
  color: #7A2BFF;
}
.footer__bottom {
  max-width: 80rem;
  margin: 6rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: center;
  }
}
.footer__bottom a {
  transition: color 0.2s;
}
.footer__bottom a:hover {
  color: #081225;
}
.footer__bottom-links {
  display: flex;
  gap: 2.5rem;
}

.problem-story {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(168, 85, 247, 0.24), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.20), transparent 22%),
    radial-gradient(circle at 76% 78%, rgba(196, 181, 253, 0.20), transparent 24%),
    radial-gradient(circle at 28% 82%, rgba(122, 43, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f5ff 0%, #ffffff 100%);
}

/* remove the heavy white overlay */
.problem-story::before,
.problem-story::after {
  content: none;
}

.problem-story .container {
  position: relative;
  z-index: 1;
}
.problem-story__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}
.problem-story__pattern::before, .problem-story__pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(122, 43, 255, 0.08);
  border-radius: 999px;
}
.problem-story__pattern::before {
  width: 30rem;
  height: 18rem;
  top: 8%;
  left: -6%;
  transform: rotate(-18deg);
}
.problem-story__pattern::after {
  width: 26rem;
  height: 16rem;
  right: -4%;
  top: 36%;
  transform: rotate(18deg);
}
.problem-story .container {
  position: relative;
  z-index: 1;
}
.problem-story__header {
  max-width: 48rem;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.problem-story__eyebrow {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.14);
  color: #7a2bff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.problem-story__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #081225;
  margin-bottom: 1.25rem;
}
.problem-story__subtitle {
  font-size: 1.125rem;
  color: #52607a;
  line-height: 1.8;
}
.problem-story__timeline {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.problem-story__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(122, 43, 255, 0.08), rgba(79, 70, 229, 0.2), rgba(122, 43, 255, 0.08));
  display: none;
}
.problem-story__card {
  display: flex;
}
.problem-story__card--left {
  justify-content: flex-start;
}
.problem-story__card--right {
  justify-content: flex-end;
}
.problem-story__content {
  width: min(100%, 32rem);
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.75rem;
  border: 1px solid rgba(122, 43, 255, 0.08);
  box-shadow: 0 10px 30px rgba(8, 18, 37, 0.06);
  transition: all 0.3s ease;
}
.problem-story__icon-wrap {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 43, 255, 0.08);
  color: #7a2bff;
}
.problem-story__text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.problem-story__text p {
  color: #5b6780;
  line-height: 1.7;
}
.problem-story__label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #7a2bff;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.problem-story {
  /* desktop only hover */
}
@media (min-width: 992px) {
  .problem-story__line {
    display: block;
  }
  .problem-story__card--left {
    padding-right: calc(50% + 2rem);
  }
  .problem-story__card--right {
    padding-left: calc(50% + 2rem);
  }
  .problem-story__card:hover .problem-story__content {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(8, 18, 37, 0.1);
  }
}

/* scroll animation */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-story {
  position: relative;
  isolation: isolate;
  padding: 7rem 0;
  background: linear-gradient(180deg, #f6f7ff 0%, #ffffff 100%);
  overflow: hidden;
}
.problem-story::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 28%, rgba(168, 85, 247, 0.22), transparent 22%), radial-gradient(circle at 82% 22%, rgba(96, 165, 250, 0.2), transparent 24%), radial-gradient(circle at 58% 78%, rgba(196, 181, 253, 0.24), transparent 26%), radial-gradient(circle at 35% 72%, rgba(122, 43, 255, 0.12), transparent 20%);
  filter: blur(70px);
  opacity: 1;
  transform: scale(1.05);
}
.problem-story .container {
  position: relative;
  z-index: 1;
}
.problem-story__header {
  max-width: 48rem;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.problem-story__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.14);
  color: #7a2bff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.problem-story__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1.25rem;
}
.problem-story__subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #52607a;
  max-width: 42rem;
  margin: 0 auto;
}
.problem-story__timeline {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.problem-story__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(122, 43, 255, 0.08), rgba(79, 70, 229, 0.2), rgba(122, 43, 255, 0.08));
  display: none;
}
.problem-story__card {
  position: relative;
  width: 100%;
  display: flex;
}
.problem-story__card--left {
  justify-content: flex-start;
}
.problem-story__card--right {
  justify-content: flex-end;
}
.problem-story__marker {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #ffffff;
  border: 4px solid #7a2bff;
  box-shadow: 0 0 0 10px rgba(122, 43, 255, 0.06);
  z-index: 2;
}
.problem-story__content {
  width: min(100%, 32rem);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(248, 249, 255, 0.9);
  border: 1px solid rgba(122, 43, 255, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 10px 30px rgba(8, 18, 37, 0.06), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.problem-story__card:hover .problem-story__content {
  transform: translateY(-6px);
  border-color: rgba(122, 43, 255, 0.18);
  box-shadow: 0 20px 50px rgba(8, 18, 37, 0.1), 0 0 0 1px rgba(122, 43, 255, 0.04) inset;
}
.problem-story__icon-wrap {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* DARK BRAND GRADIENT */
  background: linear-gradient(135deg, #4f46e5, #7a2bff);
  color: #ffffff;
}
.problem-story__icon-wrap .material-symbols-outlined {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}
.problem-story__text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #081225;
  margin-bottom: 0.7rem;
}
.problem-story__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5b6780;
  margin: 0;
}
.problem-story__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a2bff;
}
@media (min-width: 992px) {
  .problem-story__line {
    display: block;
  }
  .problem-story__marker {
    display: block;
  }
  .problem-story__card {
    min-height: 13rem;
    align-items: center;
  }
  .problem-story__card--left {
    padding-right: calc(50% + 2rem);
  }
  .problem-story__card--right {
    padding-left: calc(50% + 2rem);
  }
  .problem-story__content {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .problem-story__timeline {
    gap: 1.5rem;
  }
  .problem-story__content {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  .problem-story__icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
  }
  .problem-story__text h3 {
    font-size: 1.25rem;
  }
  .problem-story__text p {
    font-size: 0.95rem;
  }
}
@media (max-width: 575.98px) {
  .problem-story {
    padding: 5rem 0;
  }
  .problem-story::before {
    filter: blur(55px);
    opacity: 0.85;
  }
  .problem-story__header {
    margin-bottom: 3rem;
  }
  .problem-story__subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }
  .problem-story__content {
    flex-direction: column;
    gap: 1rem;
  }
}

/* scroll animation */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .problem-story__marker {
    display: block;
  }
}
.value-steps {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at top center, rgba(122, 43, 255, 0.05), transparent 38%), #f8f8ff;
  overflow: hidden;
}
.value-steps__header {
  max-width: 46rem;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.value-steps__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.14);
  color: #7a2bff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.value-steps__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1.25rem;
}
.value-steps__subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #55627d;
  margin: 0;
}
.value-steps__grid {
  max-width: 68rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-steps__row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.value-steps__row--reverse {
  grid-template-columns: 1fr 10rem;
}
.value-steps__tile, .value-steps__card {
  border-radius: 1.75rem;
  border: 1px solid rgba(122, 43, 255, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(8, 18, 37, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value-steps__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  background: linear-gradient(135deg, #7a2bff 0%, #4f46e5 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(122, 43, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.value-steps__number {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.value-steps__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
}
.value-steps__icon {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.12), rgba(79, 70, 229, 0.12));
  color: #7a2bff;
}
.value-steps__icon .material-symbols-outlined {
  font-size: 1.5rem;
  font-weight: 600;
}
.value-steps__content h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 800;
  color: #081225;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.value-steps__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6782;
  margin: 0;
  max-width: 34rem;
}
@media (hover: hover) and (pointer: fine) {
  .value-steps__tile:hover, .value-steps__card:hover {
    transform: translateY(-6px);
    border-color: rgba(122, 43, 255, 0.16);
    box-shadow: 0 22px 44px rgba(8, 18, 37, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 991.98px) {
  .value-steps__row, .value-steps__row--reverse {
    grid-template-columns: 1fr;
  }
  .value-steps__tile {
    min-height: 7.5rem;
  }
  .value-steps__row--reverse .value-steps__tile {
    order: -1;
  }
}
@media (max-width: 575.98px) {
  .value-steps {
    padding: 5rem 0;
  }
  .value-steps__header {
    margin-bottom: 3rem;
  }
  .value-steps__subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }
  .value-steps__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  .value-steps__tile {
    border-radius: 1.5rem;
  }
  .value-steps__content h3 {
    font-size: 1.2rem;
  }
  .value-steps__content p {
    font-size: 0.95rem;
  }
}

.how {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 10rem;
  /* 🎨 GRADIENT BACKGROUND */
  background: linear-gradient(135deg, #7a2bff 0%, #4f46e5 50%, #3b82f6 100%);
  /* ✨ SOFT LIGHT GLOW */
}
.how__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 30%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 35%), radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.08), transparent 30%);
  filter: blur(60px);
  opacity: 0.6;
}
.how {
  /* 🔠 BIG BACKGROUND TEXT */
}
.how__brand-text {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%) scale(1.1);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-size: clamp(12rem, 34vw, 36rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.08);
}
.how .container {
  position: relative;
  z-index: 2;
}
.how__header {
  position: relative;
  z-index: 1;
}
.how {
  /* 🏷 EYEBROW */
}
.how__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.how {
  /* 🧠 HEADER */
}
.how .section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.how .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.how .section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 44rem;
  margin: 0 auto;
  line-height: 1.8;
}
.how__steps {
  position: relative;
  z-index: 1;
}
.how {
  /* ➖ CONNECTOR */
}
.how__connector {
  display: none;
  position: absolute;
  top: 2.6rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35), transparent);
}
.how__grid {
  display: grid;
  gap: 2rem;
  position: relative;
}
.how {
  /* 🧱 SOLID WHITE CARDS */
}
.how__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border-radius: 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(8, 18, 37, 0.06);
  box-shadow: 0 18px 40px rgba(8, 18, 37, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.how {
  /* 🔢 NUMBER BADGES */
}
.how__num {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.how__num--purple {
  background: linear-gradient(135deg, #7a2bff, #4f46e5);
}
.how__num--pink {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}
.how__num--teal {
  background: linear-gradient(135deg, #4f46e5, #60a5fa);
}
.how__num--vibrant {
  background: linear-gradient(135deg, #7a2bff, #6366f1);
}
.how {
  /* ✍ TEXT */
}
.how__step-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #081225;
  letter-spacing: -0.02em;
}
.how__step-desc {
  font-size: 0.95rem;
  color: #5b6780;
  line-height: 1.8;
  max-width: 17rem;
  margin: 0 auto;
}
.how {
  /* ✨ HOVER */
}
@media (hover: hover) and (pointer: fine) {
  .how__step:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(8, 18, 37, 0.18);
  }
}
.how {
  /* 💻 DESKTOP */
}
@media (min-width: 1024px) {
  .how__connector {
    display: block;
  }
  .how__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .how__step {
    min-height: 100%;
  }
}
.how {
  /* 📱 TABLET */
}
@media (max-width: 1023.98px) {
  .how__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how__brand-text {
    font-size: clamp(8rem, 26vw, 18rem);
  }
}
.how {
  /* 📱 MOBILE */
}
@media (max-width: 767.98px) {
  .how__grid {
    grid-template-columns: 1fr;
  }
  .how__step-desc {
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  .how {
    padding: 5rem 1rem;
  }
  .how__brand-text {
    font-size: clamp(5rem, 28vw, 9rem);
  }
  .how .section-header {
    margin-bottom: 3rem;
  }
  .how .section-header p {
    font-size: 1rem;
    line-height: 1.75;
  }
  .how__step {
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
  }
  .how__num {
    width: 4.25rem;
    height: 4.25rem;
    font-size: 1.2rem;
  }
  .how__step-title {
    font-size: 1.12rem;
  }
  .how__step-desc {
    font-size: 0.92rem;
  }
}

.agents {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at top left, rgba(122, 43, 255, 0.05), transparent 26%), linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  overflow: hidden;
}
.agents__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.75rem;
}
.agents__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.14);
  color: #7a2bff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.agents__title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1.25rem;
}
.agents__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #55627d;
  max-width: 42rem;
  margin: 0 auto;
}
.agents__journey {
  max-width: 76rem;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
  border-radius: 2rem;
  background: rgba(248, 249, 255, 0.9);
  border: 1px solid rgba(122, 43, 255, 0.08);
  box-shadow: 0 14px 32px rgba(8, 18, 37, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.agents__journey-track {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.agents__journey-side {
  padding: 1.25rem;
  border-radius: 1.35rem;
}
.agents__journey-side--muted {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 18, 37, 0.05);
}
.agents__journey-side--active {
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.08), rgba(79, 70, 229, 0.08));
  border: 1px solid rgba(122, 43, 255, 0.12);
}
.agents__journey-label {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a2bff;
}
.agents__journey-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.agents__journey-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.agents__journey-pill--muted {
  background: rgba(15, 23, 42, 0.06);
  color: #55627d;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.agents__journey-pill--active {
  background: rgba(122, 43, 255, 0.12);
  color: #5b3df5;
  border: 1px solid rgba(122, 43, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.agents__journey-arrow {
  color: rgba(15, 23, 42, 0.28);
  font-weight: 800;
  font-size: 1rem;
}
.agents__journey-arrow--active {
  color: rgba(122, 43, 255, 0.55);
}
.agents__journey-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem 0;
}
.agents__journey-stop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #7a2bff);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.18);
}
.agents__journey-stop-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
}
.agents__journey-caption {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #5a6782;
}
.agents__grid {
  display: grid;
  gap: 1.25rem;
}
.agents__feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: rgba(249, 250, 255, 0.92);
  border: 1px solid rgba(122, 43, 255, 0.08);
  box-shadow: 0 14px 32px rgba(8, 18, 37, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.agents__feature-icon {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #7a2bff);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.agents__feature-icon .material-symbols-outlined {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.agents__feature-body h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
  color: #081225;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}
.agents__feature-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6782;
  margin: 0 0 1rem;
}
.agents__feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.agents__feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #32405a;
}
.agents__feature-list li .material-symbols-outlined {
  font-size: 1.05rem;
  color: #7a2bff;
}
@media (hover: hover) and (pointer: fine) {
  .agents__feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(122, 43, 255, 0.16);
    box-shadow: 0 22px 48px rgba(8, 18, 37, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }
}
@media (min-width: 1024px) {
  .agents__journey-track {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.3fr);
    gap: 1.25rem;
  }
  .agents__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .agents {
    padding: 5rem 0;
  }
  .agents__journey, .agents__feature-card {
    border-radius: 1.5rem;
  }
  .agents__feature-card {
    flex-direction: column;
    padding: 1.5rem;
  }
  .agents__feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
  }
  .agents__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .agents__subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.comparison {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at top center, rgba(122, 43, 255, 0.05), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  overflow: hidden;
}
.comparison__header {
  max-width: 46rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.comparison__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.14);
  color: #7a2bff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.comparison__title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1.25rem;
}
.comparison__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #55627d;
  max-width: 40rem;
  margin: 0 auto;
}
.comparison__panel {
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 2rem;
  background: rgba(248, 249, 255, 0.88);
  border: 1px solid rgba(122, 43, 255, 0.08);
  box-shadow: 0 14px 32px rgba(8, 18, 37, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.comparison__side {
  padding: 1.5rem;
  border-radius: 1.5rem;
}
.comparison__side--muted {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 18, 37, 0.05);
}
.comparison__side--active {
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.08), rgba(79, 70, 229, 0.08));
  border: 1px solid rgba(122, 43, 255, 0.12);
}
.comparison__label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a2bff;
}
.comparison__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.comparison__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.comparison__item--muted {
  background: rgba(15, 23, 42, 0.06);
  color: #55627d;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.comparison__item--active {
  background: rgba(122, 43, 255, 0.12);
  color: #5b3df5;
  border: 1px solid rgba(122, 43, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.comparison__copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #5a6782;
}
.comparison__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.25rem 0;
}
.comparison__divider-line {
  width: 2px;
  height: 3.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(122, 43, 255, 0.12), rgba(122, 43, 255, 0.45), rgba(122, 43, 255, 0.12));
}
.comparison__divider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #7a2bff);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.18);
}
.comparison__divider-note {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
  max-width: 7rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .comparison__panel {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .comparison__divider-line {
    height: 4.75rem;
  }
}
@media (max-width: 767.98px) {
  .comparison {
    padding: 5rem 0;
  }
  .comparison__panel {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }
  .comparison__side {
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
  .comparison__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .comparison__subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }
  .comparison__items {
    gap: 0.6rem;
  }
  .comparison__item {
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }
}

@keyframes blob-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(28px, -18px) scale(1.06);
  }
  66% {
    transform: translate(-18px, 14px) scale(0.96);
  }
}
@keyframes blob-drift2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-22px, 18px) scale(1.05);
  }
  66% {
    transform: translate(18px, -10px) scale(0.97);
  }
}
@keyframes blob-drift3 {
  0%, 100% {
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    transform: translate(-50%, 20px) scale(1.07);
  }
}
@keyframes gradient-text {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}
@keyframes underline-grow {
  to {
    transform: scaleX(1);
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes float-card {
  0%, 100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--r, 0deg));
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  background: #ffffff;
}
.hero__gradient-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 55% at 10% 0%, rgba(122, 43, 255, 0.28) 0%, transparent 65%), radial-gradient(ellipse 60% 50% at 92% 0%, rgba(196, 181, 253, 0.32) 0%, transparent 60%), radial-gradient(ellipse 80% 40% at 50% 100%, rgba(79, 70, 229, 0.15) 0%, transparent 65%), linear-gradient(160deg, #f3eeff 0%, #faf8ff 40%, #eef4ff 100%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  z-index: 1;
}
.hero__blob--1 {
  width: 500px;
  height: 420px;
  top: -60px;
  left: -80px;
  background: radial-gradient(circle, rgba(122, 43, 255, 0.22), rgba(196, 181, 253, 0.14) 55%, transparent);
  animation: blob-drift 15s ease-in-out infinite;
}
.hero__blob--2 {
  width: 440px;
  height: 380px;
  top: -40px;
  right: -60px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.28), rgba(125, 211, 252, 0.12) 55%, transparent);
  animation: blob-drift2 18s ease-in-out infinite;
}
.hero__blob--3 {
  width: 380px;
  height: 320px;
  bottom: 80px;
  left: 50%;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.18), transparent 70%);
  animation: blob-drift3 21s ease-in-out infinite;
}
.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(122, 43, 255, 0.2) 1.2px, transparent 1.2px), radial-gradient(circle, rgba(79, 70, 229, 0.11) 0.8px, transparent 0.8px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(122, 43, 255, 0.22);
  color: #7A2BFF;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px 6px 10px;
  border-radius: 9999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(122, 43, 255, 0.1);
  animation: slide-up 0.5s ease both;
}
.hero__eyebrow-new {
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 0.5rem;
}
.hero__ping {
  position: relative;
  display: flex;
  width: 7px;
  height: 7px;
}
.hero__ping-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #7A2BFF;
  opacity: 0.55;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero__ping-inner {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #7A2BFF;
}
.hero__title {
  font-size: clamp(3.2rem, 6.8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #081225;
  margin-bottom: 1.5rem;
  animation: slide-up 0.55s ease 0.08s both;
}
.hero__title-gradient {
  background: linear-gradient(90deg, #7A2BFF 0%, #4F46E5 40%, #818cf8 70%, #C4B5FD 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 6s linear infinite;
}
.hero__title-highlight {
  position: relative;
  display: inline-block;
  color: #7A2BFF;
  -webkit-text-fill-color: #7A2BFF;
}
.hero__title-highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7A2BFF, #C4B5FD);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  animation: underline-grow 1s ease forwards 0.5s;
}
.hero__desc-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 44px;
  width: 100%;
  max-width: 760px;
  margin-bottom: 2rem;
  animation: slide-up 0.5s ease 0.16s both;
}
.hero__description {
  font-size: 0.96875rem;
  color: #64748B;
  line-height: 1.8;
  max-width: 310px;
  text-align: left;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-shrink: 0;
}
.hero__stat {
  text-align: left;
}
.hero__stat-num {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: count-up 0.6s ease 0.6s both;
}
.hero__stat-label {
  font-size: 0.71875rem;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 0.25rem;
  line-height: 1.4;
}
.hero__buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  animation: slide-up 0.5s ease 0.24s both;
}
.hero__btn-primary {
  padding: 13px 28px;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.90625rem;
  box-shadow: 0 8px 26px rgba(122, 43, 255, 0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(122, 43, 255, 0.42);
}
.hero__btn-secondary {
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(122, 43, 255, 0.18);
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.90625rem;
  color: #081225;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(122, 43, 255, 0.38);
  box-shadow: 0 4px 16px rgba(122, 43, 255, 0.1);
}
.hero__btn-secondary .material-symbols-outlined {
  color: #7A2BFF;
  font-size: 17px;
}
.hero__cards {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 840px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slide-up 0.6s ease 0.32s both;
}
.hero__mcard {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 43, 255, 0.12);
  border-radius: 1.5rem;
  padding: 18px 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(8, 18, 37, 0.08), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 210px;
  flex: 1;
  max-width: 265px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero__mcard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  pointer-events: none;
  background: linear-gradient(108deg, transparent 38%, rgba(255, 255, 255, 0.45) 50%, transparent 62%);
  background-size: 200% 100%;
  animation: shimmer 5s ease-in-out infinite var(--fd, 0s);
}
.hero__mcard--1 {
  --fd: 0s;
  --r: -1.5deg;
  transform: rotate(-1.5deg);
  animation: float-card 6s ease-in-out infinite 0s;
}
.hero__mcard--2 {
  --fd: 0.9s;
  --r: 0deg;
  animation: float-card 6s ease-in-out infinite 0.9s;
}
.hero__mcard--3 {
  --fd: 1.7s;
  --r: 1.5deg;
  transform: rotate(1.5deg);
  animation: float-card 6s ease-in-out infinite 1.7s;
}
.hero__mcard:hover {
  transform: translateY(-8px) rotate(var(--r, 0deg)) !important;
  box-shadow: 0 28px 60px rgba(122, 43, 255, 0.14), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.hero__mcard-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__mcard-icon .material-symbols-outlined {
  font-size: 19px;
}
.hero__mcard-icon--purple {
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.14), rgba(79, 70, 229, 0.1));
  color: #7A2BFF;
}
.hero__mcard-icon--teal {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.18), rgba(79, 70, 229, 0.1));
  color: #4F46E5;
}
.hero__mcard-icon--pink {
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.22), rgba(122, 43, 255, 0.08));
  color: #7A2BFF;
}
.hero__mcard-body {
  display: flex;
  flex-direction: column;
}
.hero__mcard-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.25rem;
}
.hero__mcard-value {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #081225;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}
.hero__mcard-sub {
  font-size: 0.71875rem;
  color: #94A3B8;
  line-height: 1.5;
}
.hero__mcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 3px 9px;
  font-size: 0.625rem;
  font-weight: 700;
  margin-top: 0.5rem;
  width: fit-content;
}
.hero__mcard-badge--green {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.hero__mcard-badge--purple {
  background: rgba(122, 43, 255, 0.1);
  color: #7A2BFF;
}
.hero__trust {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 2rem;
  animation: slide-up 0.6s ease 0.42s both;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.71875rem;
  font-weight: 600;
  color: #94A3B8;
}
.hero__trust-item .material-symbols-outlined {
  font-size: 14px;
  color: #4F46E5;
}
.hero__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(122, 43, 255, 0.2);
}
.hero__scroll-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5%;
  border-top: 1px solid rgba(122, 43, 255, 0.08);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.hero__scroll-label {
  font-size: 0.59375rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(122, 43, 255, 0.35);
}
.hero__scroll-label--center {
  flex: 1;
  text-align: center;
}
.hero__scroll-down {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.59375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
}
.hero__scroll-down .material-symbols-outlined {
  font-size: 14px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.logo-bar {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid rgba(122, 43, 255, 0.06);
  padding: 1.25rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.logo-bar__label {
  font-size: 0.65625rem;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-bar__logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-bar__logo {
  font-size: 0.84375rem;
  font-weight: 800;
  color: #CBD5E1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}
.logo-bar__logo:hover {
  color: #64748B;
}

@media (max-width: 1024px) {
  .hero__desc-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero__description {
    text-align: center;
    max-width: 480px;
  }
  .hero__stats {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 6rem;
  }
  .hero__cards {
    flex-direction: column;
    align-items: center;
  }
  .hero__mcard {
    max-width: 100%;
    width: 100%;
  }
  .hero__mcard--1, .hero__mcard--3 {
    transform: rotate(0deg);
  }
  .hero__scroll-strip {
    display: none;
  }
  .hero__trust {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .logo-bar {
    gap: 1.5rem;
  }
  .logo-bar__logos {
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }
  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero__btn-primary, .hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
.zoru-setup {
  position: relative;
  overflow: hidden;
  padding: 72px 20px;
  background: radial-gradient(circle at top left, rgba(122, 43, 255, 0.12), transparent 28%), radial-gradient(circle at bottom right, rgba(125, 211, 252, 0.12), transparent 24%), linear-gradient(180deg, #fbfbff 0%, #f4f7ff 100%);
  min-height: 100vh;
  font-family: "Satoshi", "Inter", sans-serif;
  color: #0f172a;
}
.zoru-setup__bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}
.zoru-setup__bg--1 {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -80px;
  background: rgba(122, 43, 255, 0.18);
}
.zoru-setup__bg--2 {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: 40px;
  background: rgba(125, 211, 252, 0.18);
}
.zoru-setup__shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.zoru-setup__intro, .zoru-setup__panel {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.zoru-setup__intro {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.08);
  position: sticky;
  top: 24px;
}
.zoru-setup__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.zoru-setup__logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  box-shadow: 0 0 40px rgba(122, 43, 255, 0.12);
}
.zoru-setup__logo .material-symbols-outlined {
  font-size: 24px;
}
.zoru-setup__brand-name {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.zoru-setup__brand-sub {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 2px;
}
.zoru-setup__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  color: #4F46E5;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.zoru-setup__title {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.zoru-setup__desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #475569;
  max-width: 44ch;
  margin-bottom: 28px;
}
.zoru-setup__benefits {
  display: grid;
  gap: 14px;
}
.zoru-setup__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.97rem;
}
.zoru-setup__benefit .material-symbols-outlined {
  font-size: 20px;
  color: #7A2BFF;
}
.zoru-setup__panel {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 28px;
}
.zoru-setup__panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.zoru-setup__step-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4F46E5;
  margin-bottom: 8px;
}
.zoru-setup__panel-title {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.zoru-setup__progress {
  width: 100%;
  height: 10px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.zoru-setup__progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7A2BFF 0%, #4F46E5 100%);
}
.zoru-setup__assistant {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 26px;
}
.zoru-setup__assistant-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.14), rgba(79, 70, 229, 0.14));
  color: #4F46E5;
}
.zoru-setup__assistant-avatar .material-symbols-outlined {
  font-size: 22px;
}
.zoru-setup__assistant-bubble {
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(122, 43, 255, 0.06), rgba(79, 70, 229, 0.03));
  border: 1px solid rgba(122, 43, 255, 0.1);
  border-radius: 20px;
  color: #475569;
  line-height: 1.65;
}
.zoru-setup__assistant-name {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.zoru-setup__content {
  display: grid;
  gap: 24px;
}
.zoru-setup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(99, 102, 241, 0.12);
}
.zoru-setup__footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.zoru-setup__primary-btn, .zoru-setup__secondary-btn, .zoru-setup__ghost-btn, .zoru-setup__link-btn,
.zoru-setup .zoru-chip,
.zoru-setup .zoru-review-card__edit {
  transition: 0.25s ease;
}
.zoru-setup__primary-btn {
  border: none;
  border-radius: 16px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.18);
}
.zoru-setup__primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(79, 70, 229, 0.22);
}
.zoru-setup__secondary-btn, .zoru-setup__ghost-btn {
  border: 1px solid rgba(99, 102, 241, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #0f172a;
  font-weight: 700;
}
.zoru-setup__secondary-btn {
  padding: 13px 18px;
  border-radius: 16px;
}
.zoru-setup__ghost-btn {
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
}
.zoru-setup__link-btn {
  border: none;
  background: transparent;
  color: #64748b;
  font-weight: 700;
  padding: 10px 8px;
}
.zoru-setup__link-btn:hover {
  color: #7A2BFF;
}

.zoru-field-group {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(99, 102, 241, 0.08);
}
.zoru-field-group__header {
  margin-bottom: 16px;
}

.zoru-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.zoru-helper {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.zoru-schedule {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.zoru-schedule__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #f7f8ff;
  border: 1px solid rgba(99, 102, 241, 0.08);
}
.zoru-schedule__row--disabled {
  opacity: 0.72;
}
.zoru-schedule__day {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}
.zoru-schedule__day input {
  width: 18px;
  height: 18px;
  accent-color: #7A2BFF;
}
.zoru-schedule__day label {
  font-weight: 700;
  color: #0f172a;
}
.zoru-schedule__time {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.zoru-schedule__time span {
  color: #64748b;
  font-size: 0.92rem;
}
.zoru-schedule__time select {
  min-width: 120px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.12);
  background: #ffffff;
  padding: 0 14px;
  color: #0f172a;
  font-weight: 600;
  outline: none;
}
.zoru-schedule__closed {
  color: #64748b;
  font-weight: 600;
  font-size: 0.94rem;
}

.zoru-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.zoru-chip {
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #475569;
  font-weight: 700;
}
.zoru-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 43, 255, 0.24);
  color: #7A2BFF;
}
.zoru-chip--active {
  background: linear-gradient(135deg, rgba(122, 43, 255, 0.12), rgba(79, 70, 229, 0.12));
  border-color: rgba(122, 43, 255, 0.2);
  color: #4F46E5;
}

.zoru-review-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(122, 43, 255, 0.06), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(122, 43, 255, 0.1);
}
.zoru-review-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.zoru-review-card__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4F46E5;
  margin-bottom: 6px;
}
.zoru-review-card__title {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.zoru-review-card__edit {
  border: none;
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #0f172a;
  font-weight: 700;
}
.zoru-review-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.zoru-review-card__item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(99, 102, 241, 0.08);
}
.zoru-review-card__item strong {
  display: block;
  color: #0f172a;
  line-height: 1.55;
  font-size: 0.98rem;
}
.zoru-review-card__label {
  display: block;
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .zoru-setup__shell {
    grid-template-columns: 1fr;
  }
  .zoru-setup__intro {
    position: relative;
    top: auto;
  }
}
@media (max-width: 767px) {
  .zoru-setup {
    padding: 32px 14px;
  }
  .zoru-setup__intro, .zoru-setup__panel {
    padding: 20px;
    border-radius: 24px;
  }
  .zoru-setup__panel-top, .zoru-setup__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .zoru-setup__footer-actions {
    justify-content: space-between;
  }
  .zoru-setup__assistant {
    grid-template-columns: 1fr;
  }
  .zoru-schedule__row {
    flex-direction: column;
    align-items: stretch;
  }
  .zoru-schedule__day {
    min-width: auto;
  }
  .zoru-schedule__time {
    width: 100%;
  }
  .zoru-schedule__time select {
    flex: 1 1 100%;
    min-width: 0;
  }
  .zoru-review-card__grid {
    grid-template-columns: 1fr;
  }
}
.text-reveal {
  height: 300vh;
  position: relative;
}
.text-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 15% 40%, rgba(122, 43, 255, 0.04), transparent 60%), radial-gradient(ellipse 50% 50% at 85% 60%, rgba(196, 181, 253, 0.05), transparent 60%);
}
.text-reveal__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.text-reveal__inner {
  max-width: 860px;
  width: 100%;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.text-reveal__text {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #E2E8F0;
  margin-bottom: 0;
}
.text-reveal__word {
  display: inline;
  color: #E2E8F0;
  transition: color 0.3s ease;
}
.text-reveal__word--lit {
  color: #081225;
}
.text-reveal__word--accent.text-reveal__word--lit {
  color: #7A2BFF;
}
.text-reveal__accent {
  display: inline;
}
.text-reveal__sub {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 520px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.text-reveal__sub--lit {
  opacity: 1;
  transform: translateY(0);
  color: #64748B;
}
@media (max-width: 768px) {
  .text-reveal {
    height: 250vh;
  }
  .text-reveal__text {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }
}
@media (max-width: 640px) {
  .text-reveal {
    height: 220vh;
  }
  .text-reveal__text {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.25;
  }
}

/*# sourceMappingURL=styles.css.map */

/* ===== ZORU AI: authoritative problem-story override ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-story {
  position: relative;
  isolation: isolate;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.problem-story::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 22%, rgba(168, 85, 247, 0.28), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(96, 165, 250, 0.24), transparent 22%),
    radial-gradient(circle at 76% 78%, rgba(196, 181, 253, 0.28), transparent 24%),
    radial-gradient(circle at 24% 82%, rgba(122, 43, 255, 0.18), transparent 22%),
    radial-gradient(circle at 52% 52%, rgba(255, 214, 102, 0.14), transparent 18%);
  filter: blur(78px);
  opacity: 1;
  transform: scale(1.04);
}

.problem-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.84));
}

.problem-story .container {
  position: relative;
  z-index: 1;
}

.problem-story__header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.problem-story__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.14);
  color: #6d28d9;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.problem-story__title {
  font-size: clamp(2.35rem, 5vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1.1rem;
}

.problem-story__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #526072;
}

.problem-story__blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.problem-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(122, 43, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.problem-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(91, 33, 182, 0.12);
  border-color: rgba(122, 43, 255, 0.22);
}

.problem-block__stat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(196, 181, 253, 0.95), rgba(122, 43, 255, 0.85) 55%, rgba(79, 70, 229, 0.95));
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.16), 0 20px 60px rgba(122, 43, 255, 0.22);
}

.problem-block__stat::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04));
  z-index: -1;
}

.problem-block__stat::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  filter: blur(10px);
}

.problem-block__stat span {
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.problem-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.problem-block__label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d28d9;
}

.problem-block__content h3 {
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 850;
  color: #0b1325;
  margin-bottom: 16px;
  max-width: 720px;
}

.problem-block__content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #526072;
  max-width: 760px;
}

@media (max-width: 991px) {
  .problem-block {
    grid-template-columns: 1fr;
  }

  .problem-block__stat {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .problem-story {
    padding: 88px 0;
  }

  .problem-story__header {
    margin-bottom: 48px;
  }

  .problem-block {
    padding: 22px;
    border-radius: 24px;
    gap: 22px;
  }

  .problem-block__content h3 {
    font-size: 1.4rem;
  }

  .problem-block__content p {
    font-size: 0.96rem;
    line-height: 1.75;
  }
}

.value-bento {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  overflow: hidden;
}

.value-bento .container {
  position: relative;
  z-index: 1;
}

.value-bento__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.value-bento__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.07);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.value-bento__title {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1rem;
}

.value-bento__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #526072;
}

.value-bento__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.value-bento__card {
  position: relative;
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(91, 33, 182, 0.12);
}

.value-bento__card h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 12px;
  max-width: 28rem;
}

.value-bento__card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #526072;
  max-width: 32rem;
}

.value-bento__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.value-bento__badge .material-symbols-outlined {
  font-size: 1.05rem;
}

.value-bento__card--featured {
  grid-row: span 2;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(122, 43, 255, 0.10);
  background:
    radial-gradient(circle at 82% 18%, rgba(168, 85, 247, 0.20), transparent 26%),
    radial-gradient(circle at 18% 100%, rgba(196, 181, 253, 0.30), transparent 30%),
    linear-gradient(135deg, #fcfaff 0%, #f2ebff 100%);
}

.value-bento__card--featured .value-bento__badge {
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #5b21b6;
}

.value-bento__glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 43, 255, 0.22), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.value-bento__eyeline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a2bff;
}

.value-bento__mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.value-bento__metric {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 43, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.value-bento__metric strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #081225;
  margin-bottom: 4px;
}

.value-bento__metric span {
  display: block;
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
}

.value-bento__card--payment {
  min-height: 205px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.28), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f0ff 100%);
}

.value-bento__card--payment .value-bento__badge {
  background: rgba(139, 92, 246, 0.10);
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: #6d28d9;
}

.value-bento__card--ops {
  min-height: 205px;
  border: 1px solid rgba(79, 70, 229, 0.10);
  background:
    radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.value-bento__card--ops .value-bento__badge {
  background: rgba(79, 70, 229, 0.10);
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: #4338ca;
}

.value-bento__card--retention {
  grid-column: 1 / -1;
  min-height: 210px;
  border: 1px solid rgba(122, 43, 255, 0.10);
  background:
    radial-gradient(circle at 88% 18%, rgba(122, 43, 255, 0.10), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #f7f1ff 100%);
}

.value-bento__card--retention .value-bento__badge {
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #5b21b6;
}

.value-bento__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.value-bento__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  font-size: 0.8rem;
  font-weight: 700;
}

.value-bento__card-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.value-bento__card-strip span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 700;
}

.value-bento__card-strip--blue span {
  background: rgba(79, 70, 229, 0.10);
  border-color: rgba(79, 70, 229, 0.10);
  color: #4338ca;
}

@media (max-width: 991px) {
  .value-bento__grid {
    grid-template-columns: 1fr;
  }

  .value-bento__card--featured,
  .value-bento__card--retention {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .value-bento {
    padding: 88px 0;
  }

  .value-bento__header {
    margin-bottom: 34px;
  }

  .value-bento__grid {
    gap: 18px;
  }

  .value-bento__card {
    padding: 22px;
    border-radius: 24px;
  }

  .value-bento__card h3 {
    font-size: 1.4rem;
  }

  .value-bento__card p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .value-bento__mini-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-bento__metric {
    min-width: 100%;
  }
}

/* split layout */
.value-bento__card--featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

/* content side */
.value-bento__content {
  z-index: 2;
}

/* image container */
.value-bento__image {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

/* actual image */
.value-bento__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

/* soft overlay for blending */
.value-bento__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.2), transparent);
}

.value-bento {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  overflow: hidden;
}

.value-bento .container {
  position: relative;
  z-index: 1;
}

.value-bento__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.value-bento__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.07);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.value-bento__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1rem;
}

.value-bento__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #526072;
}

/* GRID */
.value-bento__editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

/* TOP HERO CARD */
.value-bento__hero-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(122, 43, 255, 0.10);
  background:
    radial-gradient(circle at 85% 20%, rgba(168, 85, 247, 0.12), transparent 24%),
    linear-gradient(135deg, #fcfaff 0%, #f2ebff 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-bento__hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(91, 33, 182, 0.10);
  border-color: rgba(122, 43, 255, 0.18);
}

.value-bento__hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.value-bento__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.value-bento__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.02), rgba(255,255,255,0.14));
  pointer-events: none;
}

.value-bento__hero-content {
  position: relative;
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-bento__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #5b21b6;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.value-bento__badge .material-symbols-outlined {
  font-size: 1.05rem;
}

.value-bento__eyeline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a2bff;
}

.value-bento__hero-content h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 18px;
  max-width: 13ch;
}

.value-bento__hero-content p {
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #526072;
}

.value-bento__hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.value-bento__hero-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  font-size: 0.82rem;
  font-weight: 700;
}

/* MINI CARDS */
.value-bento__mini-card {
  position: relative;
  min-height: 250px;
  border-radius: 28px;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-bento__mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(91, 33, 182, 0.10);
}

.value-bento__mini-card--payments {
  background:
    radial-gradient(circle at 86% 16%, rgba(196, 181, 253, 0.28), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6efff 100%);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.value-bento__mini-card--automation {
  background:
    radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.18), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid rgba(79, 70, 229, 0.10);
}

.value-bento__mini-card--retention {
  background:
    radial-gradient(circle at 86% 18%, rgba(122, 43, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f1ff 100%);
  border: 1px solid rgba(122, 43, 255, 0.10);
}

.value-bento__mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(122, 43, 255, 0.10);
}

.value-bento__mini-icon .material-symbols-outlined {
  font-size: 1.35rem;
  color: #5b21b6;
}

.value-bento__mini-card--automation .value-bento__mini-icon .material-symbols-outlined {
  color: #4338ca;
}

.value-bento__mini-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d28d9;
}

.value-bento__mini-card--automation .value-bento__mini-label {
  color: #4338ca;
}

.value-bento__mini-card h4 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 14px;
  max-width: 14ch;
}

.value-bento__mini-card p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #526072;
  max-width: 24rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .value-bento__editorial-grid {
    grid-template-columns: 1fr;
  }

  .value-bento__hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .value-bento__hero-media {
    min-height: 320px;
  }

  .value-bento__mini-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .value-bento {
    padding: 88px 0;
  }

  .value-bento__header {
    margin-bottom: 34px;
  }

  .value-bento__hero-content {
    padding: 24px 22px 22px;
  }

  .value-bento__hero-content h3 {
    font-size: 1.9rem;
    max-width: 100%;
  }

  .value-bento__hero-content p,
  .value-bento__mini-card p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .value-bento__mini-card {
    padding: 22px;
    border-radius: 24px;
  }

  .value-bento__mini-card h4 {
    font-size: 1.35rem;
    max-width: 100%;
  }

  .value-bento__hero-media {
    min-height: 260px;
  }
}

.journey-showcase {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  overflow: hidden;
}

.journey-showcase__header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.journey-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a2bff;
}

.journey-showcase__title {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 14px;
}

.journey-showcase__subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #526072;
}

.journey-showcase__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.journey-stage {
  position: relative;
  min-height: 470px;
  border-radius: 30px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(8, 18, 37, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journey-stage:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.09);
}

.journey-stage__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.journey-stage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-stage__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.journey-stage__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.9;
}

.journey-stage h3 {
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 14px;
}

.journey-stage p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #526072;
  max-width: 18rem;
}

.journey-stage__visual {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 180px;
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.journey-stage__icon-card {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.journey-stage__icon-card .material-symbols-outlined {
  font-size: 2rem;
  color: #fff;
}

.journey-stage__mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.84rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.journey-stage__progress {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  overflow: hidden;
  align-self: center;
}

.journey-stage__progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
}

.journey-stage__stat {
  margin-left: auto;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  font-size: 0.86rem;
  font-weight: 800;
}

/* Capture */
.journey-stage--capture {
  background: linear-gradient(180deg, #ecf0ff 0%, #eef0ff 100%);
}
.journey-stage--capture .journey-stage__chips span,
.journey-stage--capture .journey-stage__mini-pill {
  background: rgba(122, 43, 255, 0.10);
  color: #5b21b6;
}
.journey-stage--capture .journey-stage__dot {
  background: #7a2bff;
}
.journey-stage--capture .journey-stage__visual {
  background: linear-gradient(135deg, #c8b5ff 0%, #a855f7 100%);
}
.journey-stage--capture .journey-stage__icon-card {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.journey-stage--capture .journey-stage__mini-pill {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Convert */
.journey-stage--convert {
  background: linear-gradient(180deg, #f5f2ec 0%, #f6f3ee 100%);
}
.journey-stage--convert .journey-stage__chips span {
  background: rgba(8, 18, 37, 0.06);
  color: #384152;
}
.journey-stage--convert .journey-stage__dot {
  background: #a8a29e;
}
.journey-stage--convert .journey-stage__visual {
  background: linear-gradient(135deg, #d7b8ff 0%, #b58af5 100%);
}
.journey-stage--convert .journey-stage__icon-card {
  background: rgba(255,255,255,0.2);
}
.journey-stage--convert .journey-stage__progress span {
  background: linear-gradient(90deg, #4f46e5, #7a2bff);
}

/* Paid */
.journey-stage--paid {
  background: linear-gradient(180deg, #f2eef8 0%, #f5f1fb 100%);
}
.journey-stage--paid .journey-stage__chips span {
  background: rgba(122, 43, 255, 0.09);
  color: #6d28d9;
}
.journey-stage--paid .journey-stage__dot {
  background: #9333ea;
}
.journey-stage--paid .journey-stage__visual {
  background: linear-gradient(135deg, #ff8c3a 0%, #ff6b2c 100%);
}
.journey-stage--paid .journey-stage__icon-card {
  background: rgba(255,255,255,0.2);
}
.journey-stage--paid .journey-stage__stat {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Retain */
.journey-stage--retain {
  background: linear-gradient(180deg, #ebf3ff 0%, #eef5ff 100%);
}
.journey-stage--retain .journey-stage__chips span,
.journey-stage--retain .journey-stage__mini-pill {
  background: rgba(79, 70, 229, 0.10);
  color: #4338ca;
}
.journey-stage--retain .journey-stage__dot {
  background: #4f46e5;
}
.journey-stage--retain .journey-stage__visual {
  background: linear-gradient(135deg, #22c1c3 0%, #5b8cff 100%);
}
.journey-stage--retain .journey-stage__icon-card {
  background: rgba(255,255,255,0.2);
}
.journey-stage--retain .journey-stage__mini-pill {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

@media (max-width: 1100px) {
  .journey-showcase__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .journey-showcase {
    padding: 88px 0;
  }

  .journey-showcase__rail {
    grid-template-columns: 1fr;
  }

  .journey-stage {
    min-height: 420px;
  }

  .journey-stage h3 {
    font-size: 1.8rem;
  }
}

.industry-focus {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  overflow: hidden;
}

.industry-focus__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.industry-focus__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.07);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.industry-focus__title {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1rem;
}

.industry-focus__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #526072;
}

.industry-focus__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.industry-focus__gallery-wrap {
  min-width: 0;
}

.industry-focus__gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  cursor: grab;
}

.industry-focus__gallery::-webkit-scrollbar {
  display: none;
}

.industry-focus__gallery.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.industry-card {
  position: relative;
  flex: 0 0 190px;
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
  scroll-snap-align: center;
  transition: flex-basis 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  opacity: 0.88;
}

.industry-card.is-active {
  flex-basis: 360px;
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(91, 33, 182, 0.16);
  opacity: 1;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 18, 37, 0.72) 0%, rgba(8, 18, 37, 0.16) 42%, transparent 70%);
  pointer-events: none;
}

.industry-card__overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.industry-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-card__overlay h3 {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0;
}

.industry-focus__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.industry-focus__nav {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-focus__nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 33, 182, 0.12);
}

.industry-focus__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-focus__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.18);
  transition: all 0.3s ease;
}

.industry-focus__dot.is-active {
  width: 26px;
  background: #7a2bff;
}

.industry-focus__panel {
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6f0ff 100%);
  border: 1px solid rgba(122, 43, 255, 0.10);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.industry-focus__panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.industry-focus__panel-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin: 0 0 18px;
}

.industry-focus__panel-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #526072;
  margin-bottom: 24px;
}

.industry-focus__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-focus__benefits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 0.92rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .industry-focus__layout {
    grid-template-columns: 1fr;
  }

  .industry-focus__panel {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .industry-focus {
    padding: 88px 0;
  }

  .industry-card {
    flex-basis: 170px;
    height: 360px;
  }

  .industry-card.is-active {
    flex-basis: 280px;
  }

  .industry-focus__panel-title {
    font-size: 2rem;
  }

  .industry-focus__panel-desc {
    font-size: 0.96rem;
    line-height: 1.72;
  }
}
/* ── Section ── */
.industry-focus {
  padding: 100px 0 120px;
  background: linear-gradient(180deg,#fff 0%,#f8f4ff 100%);
  overflow: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.industry-focus__header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.industry-focus__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(122,43,255,0.07);
  border: 1px solid rgba(122,43,255,0.14);
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.industry-focus__title {
  font-size: clamp(2.4rem,5vw,4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1rem;
}
.industry-focus__subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #526072;
}

/* ── Layout ── */
.industry-focus__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
}

/* ── Gallery ──
   KEY FIX: use width transitions on a fixed-height container.
   No scroll-snap fighting JS. No flex-basis layout thrash.
   Cards sit side by side; active one expands via max-width.
*/
.industry-focus__gallery-wrap { min-width: 0; }

.industry-focus__gallery {
  display: flex;
  gap: 14px;
  height: 460px;
  overflow: hidden; /* clip, no scrollbar */
  position: relative;
}

/* Each card is a fixed-height column that grows/shrinks */
.industry-card {
  position: relative;
  height: 100%;
  /* collapsed width */
  min-width: 80px;
  flex: 0 0 80px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  /* smooth cubic ease — the magic */
  transition:
    flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    opacity 0.4s ease;
  opacity: 0.72;
  box-shadow: 0 12px 36px rgba(15,23,42,0.10);
  will-change: flex;
}

.industry-card.is-active {
  flex: 1 1 0%; /* expand to fill remaining space */
  opacity: 1;
  box-shadow: 0 24px 60px rgba(91,33,182,0.18);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  /* subtle scale on active */
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  transform: scale(1.04);
}
.industry-card.is-active img { transform: scale(1); }

/* dark gradient overlay */
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,18,37,0.78) 0%,
    rgba(8,18,37,0.22) 45%,
    transparent 72%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.industry-card:not(.is-active)::after {
  background: linear-gradient(to top,
    rgba(8,18,37,0.55) 0%,
    rgba(8,18,37,0.60) 100%);
}

/* Vertical text label for collapsed cards */
.industry-card__collapsed-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  z-index: 3;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.industry-card.is-active .industry-card__collapsed-label { opacity: 0; }

/* Expanded overlay content */
.industry-card__overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
  pointer-events: none;
}
.industry-card.is-active .industry-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.industry-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.industry-card__overlay h3 {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0;
}

/* ── Dot nav ── */
.industry-focus__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.industry-focus__nav {
  width: 42px; height: 42px;
  border: 1px solid rgba(122,43,255,0.12);
  border-radius: 999px;
  background: #fff;
  color: #5b21b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.industry-focus__nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91,33,182,0.14);
}
.industry-focus__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.industry-focus__dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: rgba(122,43,255,0.18);
  border: none;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
}
.industry-focus__dot.is-active {
  width: 28px;
  background: #7a2bff;
}

/* ── Right panel ── */
.industry-focus__panel {
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(196,181,253,0.28), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f6f0ff 100%);
  border: 1px solid rgba(122,43,255,0.10);
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}
.industry-focus__panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(122,43,255,0.10);
  border: 1px solid rgba(122,43,255,0.14);
  color: #5b21b6;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 16px;
  /* animate badge changes */
  transition: opacity 0.25s ease;
}
.industry-focus__panel-title {
  font-size: clamp(1.9rem,3vw,2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 14px;
  transition: opacity 0.25s ease;
}
.industry-focus__panel-desc {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #526072;
  margin-bottom: 22px;
  transition: opacity 0.25s ease;
}
.industry-focus__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-focus__benefits span {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(122,43,255,0.10);
  color: #5b21b6;
  font-size: 0.8rem;
  font-weight: 700;
}

/* fade helper class for panel transitions */
.is-fading {
  opacity: 0 !important;
  transform: translateY(6px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .industry-focus__layout { grid-template-columns: 1fr; }
  .industry-focus__gallery { height: 400px; }
}
@media (max-width: 640px) {
  .industry-focus { padding: 80px 0 100px; }
  .industry-focus__gallery { height: 340px; }
  .industry-card { min-width: 64px; flex-basis: 64px; border-radius: 20px; }
  .industry-card.is-active { border-radius: 20px; }
  .industry-focus__panel { padding: 22px; border-radius: 24px; }
  .industry-focus__panel-title { font-size: 1.75rem; }
}

/* ── sticky scroll container ── */
.float-section{
  position:relative;
  background:#fff;
}

/* tall scroll canvas — controls how long the pin lasts */
.float-section__scroll-canvas{
  height:350vh;
  position:relative;
}

/* the sticky viewport */
.float-section__sticky{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* background gradient wash */
.float-section__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 5%,  rgba(122,43,255,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 65% 70% at 42% 58%,  rgba(79,70,229,0.48) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 58% 8%,   rgba(139,92,246,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 92% 44%,  rgba(99,102,241,0.38) 0%, transparent 58%),
    radial-gradient(ellipse 60% 48% at 82% 95%,  rgba(196,181,253,0.48) 0%, transparent 58%),
    radial-gradient(ellipse 50% 42% at 12% 92%,  rgba(109,40,217,0.40) 0%, transparent 56%);
  opacity:0;
  transition:opacity 0.6s ease;
  pointer-events:none;
  z-index:0;
}
.float-section__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.30);
}
.float-section__sticky.is-active .float-section__bg{
  opacity:1;
}

/* centre text */
.float-section__copy{
  position:relative;
  z-index:10;
  text-align:center;
  max-width:720px;
  padding:0 24px;
  pointer-events:none;
}
.float-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(122,43,255,0.10);
  border:1px solid rgba(122,43,255,0.22);
  color:#6d28d9;
  font-size:0.75rem;
  font-weight:800;
  letter-spacing:0.10em;
  text-transform:uppercase;
  margin-bottom:1.5rem;
  opacity:0;
  transform:translateY(14px);
  transition:opacity 0.5s ease, transform 0.5s ease;
}
.float-section__title{
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight:900;
  line-height:1.03;
  letter-spacing:-0.045em;
  color:#081225;
  opacity:0;
  transform:translateY(18px);
  transition:opacity 0.55s ease 0.08s, transform 0.55s ease 0.08s;
}
.float-section__title em{
  font-style:normal;
  background:linear-gradient(90deg,#7A2BFF,#4F46E5,#818cf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.float-section__sub{
  margin-top:1.25rem;
  font-size:1.05rem;
  line-height:1.8;
  color:#526072;
  max-width:480px;
  margin-left:auto;
  margin-right:auto;
  opacity:0;
  transform:translateY(14px);
  transition:opacity 0.5s ease 0.18s, transform 0.5s ease 0.18s;
}

/* text visible state */
.float-section__sticky.is-active .float-section__eyebrow,
.float-section__sticky.is-active .float-section__title,
.float-section__sticky.is-active .float-section__sub{
  opacity:1;
  transform:translateY(0);
}

/* ── floating image cards ── */
.float-img{
  position:absolute;
  z-index:5;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 28px 64px rgba(15,23,42,0.18);
  border:3px solid rgba(255,255,255,0.9);
  opacity:0;
  /* starting transforms applied via JS */
  will-change:transform,opacity;
  pointer-events:none;
}
.float-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  user-select:none;
  pointer-events:none;
}

/* label badge on each card */
.float-img__label{
  position:absolute;
  bottom:10px;
  left:10px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(8px);
  font-size:0.72rem;
  font-weight:800;
  color:#081225;
  letter-spacing:0.04em;
  white-space:nowrap;
}

/* individual card sizes & start positions */
#img1{width:200px;height:240px;top:10%;left:3%}
#img2{width:170px;height:210px;top:6%;right:4%}
#img3{width:185px;height:220px;bottom:14%;left:2%}
#img4{width:175px;height:215px;bottom:10%;right:3%}
#img5{width:155px;height:190px;top:50%;left:22%;transform:translateY(-50%)}
#img6{width:150px;height:185px;top:50%;right:22%;transform:translateY(-50%)}



.pricing-premium {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  overflow: hidden;
}

.pricing-premium .container {
  position: relative;
  z-index: 1;
}

.pricing-premium__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.pricing-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.07);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-premium__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 1rem;
}

.pricing-premium__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #526072;
}

.pricing-premium__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.pricing-premium__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(122, 43, 255, 0.10);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(91, 33, 182, 0.10);
  border-color: rgba(122, 43, 255, 0.18);
}

/* Featured purple card */
.pricing-card--featured {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.16), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 30px 80px rgba(91, 33, 182, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
  filter: blur(24px);
  opacity: 0.32;
  z-index: -1;
}

.pricing-card--featured:hover {
  box-shadow:
    0 36px 90px rgba(91, 33, 182, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
}

.pricing-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: #ffffff;
  color: #5b21b6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card__top {
  margin-bottom: 24px;
}

.pricing-card__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d28d9;
}

.pricing-card h3 {
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 10px;
}

.pricing-card__top p {
  font-size: 0.96rem;
  line-height: 1.72;
  color: #526072;
}

/* Featured card text overrides */
.pricing-card--featured .pricing-card__label {
  color: rgba(255,255,255,0.78);
}

.pricing-card--featured h3 {
  color: #ffffff;
}

.pricing-card--featured .pricing-card__top p,
.pricing-card--featured .pricing-card__period {
  color: rgba(255,255,255,0.82);
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 800;
  color: #081225;
  transform: translateY(-8px);
}

.pricing-card__amount {
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #081225;
}

.pricing-card__period {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  padding-bottom: 6px;
}

.pricing-card--featured .pricing-card__currency,
.pricing-card--featured .pricing-card__amount {
  color: #ffffff;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-card__features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  font-weight: 600;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.10);
  color: #6d28d9;
  font-size: 0.75rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.86);
}

.pricing-card--featured .pricing-card__features li::before {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

.pricing-card__btn {
  margin-top: auto;
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pricing-card__btn:hover {
  transform: translateY(-2px);
}

.pricing-card__btn--primary {
  background: linear-gradient(135deg, #7a2bff 0%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(122, 43, 255, 0.22);
}

.pricing-card__btn--secondary {
  background: rgba(122, 43, 255, 0.08);
  color: #5b21b6;
  border: 1px solid rgba(122, 43, 255, 0.12);
}

.pricing-card--featured .pricing-card__btn--primary {
  background: #ffffff;
  color: #5b21b6;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.pricing-card--featured .pricing-card__btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}

/* Results panel */
.pricing-premium__results {
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f1ff 100%);
  border: 1px solid rgba(122, 43, 255, 0.10);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-premium__results-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.88rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.10);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-premium__results h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 16px;
}

.pricing-premium__results p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #526072;
  margin-bottom: 24px;
}

.pricing-premium__stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.pricing-premium__stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(122, 43, 255, 0.10);
}

.pricing-premium__stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #081225;
  margin-bottom: 6px;
}

.pricing-premium__stat span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  font-weight: 600;
}

.pricing-premium__note {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 700;
}

.pricing-premium__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.pricing-premium__trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(122, 43, 255, 0.10);
  color: #5b21b6;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .pricing-premium__layout {
    grid-template-columns: 1fr;
  }

  .pricing-premium__plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pricing-premium {
    padding: 88px 0;
  }

  .pricing-premium__header {
    margin-bottom: 34px;
  }

  .pricing-card,
  .pricing-premium__results {
    padding: 22px;
    border-radius: 24px;
  }

  .pricing-card__amount {
    font-size: 3rem;
  }

  .pricing-premium__results h3 {
    font-size: 2rem;
  }
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfbff 0%, #f7f4ff 100%);
  border-radius: 40px;
  isolation: isolate;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 43, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 43, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  pointer-events: none;
  z-index: 0;
}

.final-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.final-cta__orb--1 {
  width: 220px;
  height: 220px;
  top: 40px;
  left: 70px;
  background: radial-gradient(circle, rgba(122, 43, 255, 0.75) 0%, rgba(122, 43, 255, 0.18) 45%, transparent 72%);
}

.final-cta__orb--2 {
  width: 260px;
  height: 260px;
  right: 90px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.55) 0%, rgba(45, 212, 191, 0.22) 40%, transparent 72%);
}

.final-cta__orb--3 {
  width: 180px;
  height: 180px;
  top: 80px;
  right: 220px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.9) 0%, rgba(196, 181, 253, 0.18) 45%, transparent 72%);
}

.final-cta__title {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #081225;
  margin-bottom: 24px;
}

.final-cta__title span {
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 45%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta__subtitle {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: #526072;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta__btn {
  min-width: 220px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.final-cta__btn:hover {
  transform: translateY(-2px);
}

.final-cta__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  box-shadow: 0 18px 40px rgba(122, 43, 255, 0.28);
}

.final-cta__btn--primary:hover {
  box-shadow: 0 24px 50px rgba(122, 43, 255, 0.34);
}

.final-cta__btn--secondary {
  color: #081225;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(122, 43, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.final-cta__btn--secondary:hover {
  border-color: rgba(122, 43, 255, 0.24);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991px) {
  .final-cta {
    border-radius: 30px;
  }

  .final-cta__orb--1 {
    width: 180px;
    height: 180px;
    left: 20px;
  }

  .final-cta__orb--2 {
    width: 200px;
    height: 200px;
    right: 20px;
  }

  .final-cta__orb--3 {
    right: 120px;
  }
}

@media (max-width: 767px) {
  .final-cta {
    padding: 88px 0;
    border-radius: 24px;
  }

  .final-cta__grid {
    background-size: 38px 38px;
  }

  .final-cta__title {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .final-cta__subtitle {
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 28px;
  }

  .final-cta__actions {
    gap: 12px;
  }

  .final-cta__btn {
    width: 100%;
    min-width: 0;
  }

  .final-cta__orb--1,
  .final-cta__orb--2,
  .final-cta__orb--3 {
    filter: blur(56px);
    opacity: 0.7;
  }
}

.zoru-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(122, 43, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.16), transparent 24%),
    linear-gradient(180deg, #09111f 0%, #060b16 100%);
  color: #ffffff;
}

.zoru-footer .container {
  position: relative;
  z-index: 2;
}

.zoru-footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.zoru-footer__glow--1 {
  width: 240px;
  height: 240px;
  top: 40px;
  right: 10%;
  background: rgba(122, 43, 255, 0.22);
}

.zoru-footer__glow--2 {
  width: 220px;
  height: 220px;
  bottom: 20px;
  left: 6%;
  background: rgba(79, 70, 229, 0.18);
}

.zoru-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zoru-footer__brand {
  max-width: 640px;
}

.zoru-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.zoru-footer__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  box-shadow: 0 14px 34px rgba(122, 43, 255, 0.32);
}

.zoru-footer__logo-icon .material-symbols-outlined {
  font-size: 1.35rem;
  color: #fff;
}

.zoru-footer__logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.zoru-footer__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 18px;
}

.zoru-footer__headline span {
  background: linear-gradient(135deg, #7A2BFF 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zoru-footer__desc {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.zoru-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.zoru-footer__btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.zoru-footer__btn:hover {
  transform: translateY(-2px);
}

.zoru-footer__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  box-shadow: 0 18px 38px rgba(122, 43, 255, 0.28);
}

.zoru-footer__btn--secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.zoru-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.zoru-footer__col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.zoru-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zoru-footer__col a,
.zoru-footer__col span {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.zoru-footer__col a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.zoru-footer__middle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0;
}

.zoru-footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.zoru-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.zoru-footer__bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.zoru-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.zoru-footer__bottom-links a {
  color: rgba(255,255,255,0.64);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.zoru-footer__bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .zoru-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .zoru-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .zoru-footer {
    padding: 72px 0 24px;
  }

  .zoru-footer__top {
    padding-bottom: 28px;
  }

  .zoru-footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zoru-footer__headline {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .zoru-footer__desc {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .zoru-footer__actions {
    flex-direction: column;
  }

  .zoru-footer__btn {
    width: 100%;
  }

  .zoru-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .zoru-footer__bottom-links {
    gap: 14px;
    flex-wrap: wrap;
  }
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 160px;   /* adjust based on your header height */
  width: auto;
  display: block;
}

/* =========================================
   PROBLEM PREMIUM SECTION
   ========================================= */

.problem-premium {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(122, 43, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(79, 70, 229, 0.14), transparent 24%),
    radial-gradient(circle at 76% 78%, rgba(196, 181, 253, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f3ff 0%, #ffffff 100%);
}

.problem-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.problem-premium__bg::before,
.problem-premium__bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(122, 43, 255, 0.08);
  opacity: 0.7;
}

.problem-premium__bg::before {
  width: 34rem;
  height: 20rem;
  left: -8rem;
  top: 2rem;
  transform: rotate(-16deg);
}

.problem-premium__bg::after {
  width: 30rem;
  height: 18rem;
  right: -6rem;
  bottom: 1rem;
  transform: rotate(16deg);
}

.problem-premium .container {
  position: relative;
  z-index: 1;
}

.problem-premium__header {
  max-width: 46rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.problem-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #6d28d9;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.problem-premium__title {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #081225;
}

.problem-premium__title span {
  background: linear-gradient(90deg, #7A2BFF 0%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-premium__subtitle {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #526072;
}

.problem-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.problem-premium__card {
  position: relative;
  padding: 1.6rem;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.problem-premium__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 28%);
}

.problem-premium__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(91, 33, 182, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.problem-premium__card--missed {
  background:
    linear-gradient(180deg, rgba(122, 43, 255, 0.14), rgba(255,255,255,0.88)),
    linear-gradient(135deg, #f2eaff 0%, #ffffff 100%);
}

.problem-premium__card--admin {
  background:
    linear-gradient(180deg, rgba(79, 70, 229, 0.14), rgba(255,255,255,0.88)),
    linear-gradient(135deg, #eef1ff 0%, #ffffff 100%);
  margin-top: 1.4rem;
}

.problem-premium__card--churn {
  background:
    linear-gradient(180deg, rgba(168, 85, 247, 0.14), rgba(255,255,255,0.88)),
    linear-gradient(135deg, #f7ecff 0%, #ffffff 100%);
}

.problem-premium__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.problem-premium__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7A2BFF 0%, #4F46E5 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(122, 43, 255, 0.22);
}

.problem-premium__icon .material-symbols-outlined {
  font-size: 1.45rem;
}

.problem-premium__number {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(8, 18, 37, 0.34);
}

.problem-premium__label {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d28d9;
}

.problem-premium__card h3 {
  margin-bottom: 0.95rem;
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 850;
  color: #081225;
}

.problem-premium__card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #5b6780;
}

.problem-premium__pill {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(122, 43, 255, 0.1);
  color: #4f46e5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 1.4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991.98px) {
  .problem-premium {
    padding: 5.5rem 0;
  }

  .problem-premium__grid {
    grid-template-columns: 1fr;
  }

  .problem-premium__card {
    min-height: auto;
  }

  .problem-premium__card--admin {
    margin-top: 0;
  }

  .problem-premium__header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767.98px) {
  .problem-premium__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .problem-premium__subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }

  .problem-premium__card {
    padding: 1.3rem;
    border-radius: 1.5rem;
  }

  .problem-premium__card h3 {
    font-size: 1.35rem;
  }

  .problem-premium__icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
  }
}

.problem-story__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}


/* =========================================
   ZORU FEATURES SECTION
   ========================================= */

.zoru-features {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(122, 43, 255, 0.10), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(96, 165, 250, 0.10), transparent 24%),
    linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.zoru-features::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(122, 43, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.08));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.08));
}

.zoru-features__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 2.25rem;
  align-items: start;
}

.zoru-features__intro {
  position: sticky;
  top: 6.5rem;
  padding-right: 1rem;
}

.zoru-features__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(122, 43, 255, 0.08);
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #6d28d9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zoru-features__title {
  margin: 1.15rem 0 1rem;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #081225;
}

.zoru-features__subtitle {
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5b6780;
}

.zoru-features__intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.zoru-features__intro-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(122, 43, 255, 0.12);
  color: #4f46e5;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.zoru-features__rail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zoru-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.98));
  border: 1px solid rgba(122, 43, 255, 0.10);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.zoru-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.45), transparent 28%);
}

.zoru-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 43, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(91, 33, 182, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.zoru-feature-card--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.zoru-feature-card--reverse .zoru-feature-card__content {
  order: 2;
}

.zoru-feature-card--reverse .zoru-feature-card__visual {
  order: 1;
}

.zoru-feature-card__label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #6d28d9;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.zoru-feature-card__content h3 {
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #081225;
}

.zoru-feature-card__content p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5b6780;
}

.zoru-feature-card__list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.zoru-feature-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #3f4b63;
}

.zoru-feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
}

.zoru-feature-card__visual {
  position: relative;
  min-height: 23rem;
  border-radius: 1.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(122, 43, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(96, 165, 250, 0.14), transparent 28%),
    linear-gradient(135deg, #f3ecff 0%, #ffffff 100%);
  border: 1px solid rgba(122, 43, 255, 0.10);
}

.zoru-feature-card__visual--automation {
  background:
    radial-gradient(circle at 82% 16%, rgba(96, 165, 250, 0.16), transparent 30%),
    radial-gradient(circle at 20% 78%, rgba(122, 43, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #eef4ff 0%, #ffffff 100%);
}

.zoru-feature-card__visual--retain {
  background:
    radial-gradient(circle at 20% 16%, rgba(168, 85, 247, 0.18), transparent 30%),
    radial-gradient(circle at 84% 70%, rgba(196, 181, 253, 0.24), transparent 28%),
    linear-gradient(135deg, #f7eeff 0%, #ffffff 100%);
}

/* shared floating elements */

.zf-ui,
.zf-float,
.zf-progress-card {
  position: absolute;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.zf-ui {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* chat visual */

.zf-ui--chat {
  top: 2rem;
  left: 2rem;
  width: 68%;
  padding: 1rem;
  border-radius: 1.4rem;
}

.zf-ui__top {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.zf-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(122, 43, 255, 0.25);
}

.zf-bubble {
  height: 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.zf-bubble--incoming {
  width: 72%;
  background: rgba(15, 23, 42, 0.08);
}

.zf-bubble--outgoing {
  width: 58%;
  margin-left: auto;
  background: linear-gradient(135deg, #7A2BFF, #4F46E5);
}

.zf-bubble.short {
  width: 42%;
}

/* panel visual */

.zf-ui--panel {
  top: 2rem;
  right: 2rem;
  width: 64%;
  padding: 1rem;
  border-radius: 1.4rem;
}

.zf-panel__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.84rem;
  color: #475569;
}

.zf-panel__row:last-child {
  border-bottom: 0;
}

.zf-panel__row span:last-child {
  font-weight: 700;
  color: #4f46e5;
}

/* retention visual */

.zf-ui--retention {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.zf-retention__ring {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(#7A2BFF 0 68%, rgba(122, 43, 255, 0.14) 68% 100%);
  box-shadow: 0 24px 60px rgba(91, 33, 182, 0.16);
  position: relative;
}

.zf-retention__ring::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 50%;
  background: #fff;
}

.zf-retention__ring-inner {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  font-weight: 900;
  color: #081225;
}

.zf-retention__meta {
  margin-top: 1rem;
  text-align: center;
}

.zf-retention__meta strong {
  display: block;
  font-size: 1rem;
  color: #081225;
}

.zf-retention__meta span {
  font-size: 0.85rem;
  color: #64748b;
}

/* floating pills/cards */

.zf-float {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.zf-float .material-symbols-outlined {
  font-size: 1rem;
  color: #7A2BFF;
}

.zf-float--small {
  right: 1.25rem;
  top: 3rem;
}

.zf-float--stat {
  left: 1.4rem;
  bottom: 1.4rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
}

.zf-float--stat strong {
  font-size: 1.35rem;
  line-height: 1;
  color: #081225;
}

.zf-float--stat span {
  font-size: 0.78rem;
  color: #64748b;
}

.zf-float--badge {
  left: 1.4rem;
  bottom: 5.2rem;
}

.zf-float--right {
  right: 1.4rem;
  top: 1.6rem;
}

.zf-float--left {
  left: 1.4rem;
  bottom: 1.4rem;
}

/* progress card */

.zf-progress-card {
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.zf-progress-card__label {
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.zf-progress {
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.zf-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7A2BFF, #60A5FA);
}

/* reveal animation */

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */

@media (max-width: 1199.98px) {
  .zoru-features__layout {
    grid-template-columns: 1fr;
  }

  .zoru-features__intro {
    position: static;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .zoru-feature-card,
  .zoru-feature-card--reverse {
    grid-template-columns: 1fr;
  }

  .zoru-feature-card--reverse .zoru-feature-card__content,
  .zoru-feature-card--reverse .zoru-feature-card__visual {
    order: initial;
  }

  .zoru-feature-card__visual {
    min-height: 20rem;
  }

  .zf-ui--chat,
  .zf-ui--panel {
    width: 72%;
  }
}

@media (max-width: 767.98px) {
  .zoru-features {
    padding: 5rem 0;
  }

  .zoru-features__title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .zoru-feature-card {
    padding: 1.1rem;
    border-radius: 1.4rem;
  }

  .zoru-feature-card__content h3 {
    font-size: 1.2rem;
  }

  .zoru-feature-card__visual {
    min-height: 17rem;
    border-radius: 1.2rem;
  }

  .zf-ui--chat,
  .zf-ui--panel {
    top: 1rem;
    left: 1rem;
    right: auto;
    width: calc(100% - 2rem);
  }

  .zf-float--small,
  .zf-float--right {
    top: auto;
    right: 1rem;
    bottom: 4.8rem;
  }

  .zf-float--stat,
  .zf-float--left,
  .zf-float--badge {
    left: 1rem;
    bottom: 1rem;
  }

  .zf-progress-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .zf-retention__ring {
    width: 7.8rem;
    height: 7.8rem;
  }
}

/* ============================================================
   ZF2 — FEATURES BENTO SECTION
   Paste this at the very bottom of styles.css
   ============================================================ */

.zf2 {
  padding: 120px 0;
  background: linear-gradient(180deg, #f4f2fb 0%, #ffffff 100%);
}

/* ── Header ── */
.zf2__header { max-width: 600px; margin: 0 auto 56px; text-align: center; }

.zf2__eye {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: #6d28d9;
  background: rgba(109,40,217,.08);
  border: 1px solid rgba(109,40,217,.15);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.zf2__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; letter-spacing: -.05em; line-height: 1.02;
  color: #0a0a12; margin-bottom: 14px;
}
.zf2__sub { font-size: 1.05rem; line-height: 1.8; color: #64748b; }

/* ── Bento Grid ── */
.zf2__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }

/* ── Card Base ── */
.zf2-card {
  background: #fff; border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,0,.1,1), box-shadow .35s ease;
}
.zf2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(109,40,217,.11);
}
.zf2-card__vis { position: relative; overflow: hidden; flex-shrink: 0; }
.zf2-card__body { padding: 22px 24px 26px; }
.zf2-card__icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.zf2-card__name { font-size: 14px; font-weight: 800; color: #0a0a12; letter-spacing: -.01em; }
.zf2-card__desc { font-size: 13.5px; line-height: 1.72; color: #64748b; }

/* ── Card Spans ── */
.zf2-card--wide  { grid-column: span 8; }
.zf2-card--wide  .zf2-card__vis { height: 320px; }
.zf2-card--tall  { grid-column: span 4; grid-row: span 2; min-height: 600px; }
.zf2-card--tall  .zf2-card__vis { flex: 1; min-height: 320px; }
.zf2-card--half  { grid-column: span 4; }
.zf2-card--half  .zf2-card__vis { height: 260px; }
.zf2-card--third { grid-column: span 4; }
.zf2-card--third .zf2-card__vis { height: 280px; }
.zf2-card--two3  { grid-column: span 8; }
.zf2-card--two3  .zf2-card__vis { height: 280px; }

/* ── Icons ── */
.zf2-icon {
  width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.zf2-icon .material-symbols-outlined { font-size: 17px; }
.zf2-icon--purple { background: #ede9fe; color: #7c3aed; }
.zf2-icon--green  { background: #dcfce7; color: #059669; }
.zf2-icon--blue   { background: #dbeafe; color: #1d4ed8; }
.zf2-icon--indigo { background: #e0e7ff; color: #4338ca; }
.zf2-icon--pink   { background: #fce7f3; color: #be185d; }
.zf2-icon--amber  { background: #fef3c7; color: #d97706; }

/* ── Visual Backgrounds ── */
.zf2-vis--purple { background: linear-gradient(150deg,#ede9fe 0%,#c4b5fd 60%,#a78bfa 100%); }
.zf2-vis--green  { background: linear-gradient(150deg,#ecfdf5 0%,#a7f3d0 55%,#34d399 100%); }
.zf2-vis--blue   { background: linear-gradient(150deg,#eff6ff 0%,#bfdbfe 55%,#93c5fd 100%); }
.zf2-vis--indigo { background: linear-gradient(150deg,#eef2ff 0%,#c7d2fe 55%,#818cf8 100%); }
.zf2-vis--pink   { background: linear-gradient(150deg,#fdf2f8 0%,#fbcfe8 55%,#f472b6 100%); }
.zf2-vis--amber  { background: linear-gradient(150deg,#fffbeb 0%,#fde68a 55%,#fbbf24 100%); }
.zf2-vis--teal   { background: linear-gradient(150deg,#f0fdfa 0%,#99f6e4 55%,#2dd4bf 100%); }
.zf2-vis--rose   { background: linear-gradient(150deg,#fff1f2 0%,#fecdd3 55%,#fb7185 100%); }
.zf2-vis--slate  { background: linear-gradient(150deg,#f8fafc 0%,#cbd5e1 55%,#64748b 100%); }

/* ── Icon colours ── */
.zf2-icon--teal  { background: #ccfbf1; color: #0d9488; }
.zf2-icon--rose  { background: #ffe4e6; color: #e11d48; }
.zf2-icon--slate { background: #e2e8f0; color: #475569; }

/* ── Feature 7: Upsell ── */
.zf2-upsell-badge {
  top: 18px; right: 18px;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 13px; font-size: 12px; font-weight: 700; color: #374151;
}
.zf2-upsell-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #14b8a6; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(20,184,166,.25);
}
.zf2-upsell-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 300px;
}
.zf2-upsell-win {
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.11);
}
.zf2-upsell-hdr {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; color: #0a0a12;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid #f1f5f9;
}
.zf2-upsell-hdr .material-symbols-outlined { font-size: 15px; color: #14b8a6; }
.zf2-upsell-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid #f8fafc;
}
.zf2-upsell-item--last { border: 0; padding-bottom: 0; }
.zf2-upsell-item__left { flex: 1; }
.zf2-upsell-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  background: #ccfbf1; color: #0d9488;
  padding: 2px 7px; border-radius: 999px; margin-bottom: 4px;
}
.zf2-upsell-tag--new { background: #ede9fe; color: #7c3aed; }
.zf2-upsell-name { font-size: 12px; font-weight: 700; color: #0a0a12; }
.zf2-upsell-sub  { font-size: 10px; color: #94a3b8; margin-top: 2px; }
.zf2-upsell-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.zf2-upsell-price { font-size: 14px; font-weight: 900; color: #0a0a12; }
.zf2-upsell-btn {
  background: #0d9488; color: #fff; border: none; cursor: pointer;
  font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.zf2-upsell-stat {
  bottom: 18px; left: 18px; padding: 11px 16px; text-align: center;
}
.zf2-upsell-stat strong {
  display: block; font-size: 22px; font-weight: 900;
  color: #0d9488; letter-spacing: -.04em; line-height: 1;
}
.zf2-upsell-stat span { font-size: 10px; color: #94a3b8; font-weight: 600; }

/* ── Feature 8: Multi-channel ── */
.zf2-chan-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 284px;
}
.zf2-chan-win {
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.11);
}
.zf2-chan-hdr {
  font-size: 12px; font-weight: 800; color: #0a0a12;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #f1f5f9;
}
.zf2-chan-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid #f8fafc;
}
.zf2-chan-row--last { border: 0; padding-bottom: 0; }
.zf2-chan-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.zf2-chan-icon .material-symbols-outlined { font-size: 14px; }
.zf2-chan-meta { flex: 1; }
.zf2-chan-name { font-size: 12px; font-weight: 700; color: #0a0a12; }
.zf2-chan-val  { font-size: 10px; color: #94a3b8; }
.zf2-chan-pill {
  font-size: 9px; font-weight: 700; padding: 2px 9px; border-radius: 999px;
  background: #dcfce7; color: #16a34a;
}

/* ── Feature 9: Voice ── */
.zf2-voice-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 284px;
}
.zf2-voice-win {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.11);
}
.zf2-voice-top {
  background: linear-gradient(135deg,#334155,#1e293b);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.zf2-voice-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.zf2-voice-avatar .material-symbols-outlined { font-size: 18px; }
.zf2-voice-name { font-size: 12px; font-weight: 700; color: #fff; }
.zf2-voice-status {
  font-size: 10px; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.zf2-voice-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
.zf2-voice-wave {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  padding: 10px 16px; background: #f8fafc;
}
.zf2-voice-wave span {
  display: block; width: 3px; border-radius: 999px; background: #334155;
  animation: voiceBar 1.1s ease-in-out infinite;
}
.zf2-voice-wave span:nth-child(1){height:8px;animation-delay:0s}
.zf2-voice-wave span:nth-child(2){height:16px;animation-delay:.1s}
.zf2-voice-wave span:nth-child(3){height:24px;animation-delay:.2s}
.zf2-voice-wave span:nth-child(4){height:30px;animation-delay:.3s}
.zf2-voice-wave span:nth-child(5){height:24px;animation-delay:.2s}
.zf2-voice-wave span:nth-child(6){height:16px;animation-delay:.1s}
.zf2-voice-wave span:nth-child(7){height:8px;animation-delay:0s}
@keyframes voiceBar {
  0%,100% { transform: scaleY(1); opacity:.6; }
  50%      { transform: scaleY(1.5); opacity:1; }
}
.zf2-voice-transcript {
  padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; background: #f8f7ff;
}
.zf2-vt-row {
  font-size: 11px; line-height: 1.4; padding: 6px 10px; border-radius: 10px; max-width: 90%;
}
.zf2-vt-caller {
  background: #fff; color: #374151;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); border-radius: 4px 10px 10px 10px;
}
.zf2-vt-ai {
  background: #334155; color: #fff; margin-left: auto;
  border-radius: 10px 4px 10px 10px; font-weight: 500;
}
.zf2-voice-confirm {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  background: #ecfdf5; color: #065f46; font-size: 10px; font-weight: 700;
  padding: 8px 14px; border-top: 1px solid #a7f3d0;
}
.zf2-voice-confirm .material-symbols-outlined { font-size: 13px; color: #059669; }
.zf2-voice-stat {
  bottom: 18px; right: 18px; padding: 11px 16px; text-align: center;
}
.zf2-voice-stat strong {
  display: block; font-size: 22px; font-weight: 900;
  color: #334155; letter-spacing: -.04em; line-height: 1;
}
.zf2-voice-stat span { font-size: 10px; color: #94a3b8; font-weight: 600; }

/* ── Decorative SVG Illustration Layer ── */
.zf2-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
/* ensure all direct children of vis sit above the deco layer */
.zf2-card__vis > *:not(.zf2-deco) {
  position: relative;
  z-index: 1;
}

/* ── Floating Card Shell ── */
.zf2-fc {
  position: absolute; background: #fff;
  border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* ── Feature 1: Chat ── */
.zf2-badge-live {
  top: 18px; right: 18px;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 13px; font-size: 12px; font-weight: 700; color: #374151;
}
.zf2-live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}
.zf2-chat-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 290px;
}
.zf2-chat-win {
  background: #fff; border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.13); overflow: hidden;
}
.zf2-chat-top {
  background: linear-gradient(135deg,#7c3aed,#4f46e5);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.zf2-chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.zf2-chat-avatar .material-symbols-outlined { font-size: 18px; }
.zf2-chat-name { font-size: 12px; font-weight: 700; color: #fff; }
.zf2-chat-status {
  font-size: 10px; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.zf2-chat-online {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
}
.zf2-chat-msgs {
  padding: 14px; display: flex; flex-direction: column; gap: 8px; background: #f8f7ff;
}
.zf2-b {
  padding: 9px 13px; border-radius: 14px;
  font-size: 12px; line-height: 1.5; font-weight: 500; max-width: 88%;
}
.zf2-b--in {
  background: #fff; color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border-radius: 4px 14px 14px 14px;
}
.zf2-b--out {
  background: #7c3aed; color: #fff;
  margin-left: auto; text-align: right;
  border-radius: 14px 4px 14px 14px;
}
.zf2-b--confirm {
  background: #ecfdf5; color: #065f46;
  border: 1px solid #a7f3d0;
  margin: 0 auto; text-align: center;
  font-weight: 700; font-size: 11px; padding: 7px 14px;
  display: flex; align-items: center; gap: 6px; justify-content: center;
  border-radius: 14px; max-width: 100%;
}
.zf2-b--confirm .material-symbols-outlined { font-size: 14px; color: #059669; }
.zf2-chat-stat {
  bottom: 18px; left: 18px; padding: 11px 16px; text-align: center;
}
.zf2-chat-stat strong {
  display: block; font-size: 22px; font-weight: 900;
  color: #7c3aed; letter-spacing: -.04em; line-height: 1;
}
.zf2-chat-stat span { font-size: 10px; color: #94a3b8; font-weight: 600; }

/* ── Feature 2: Ring ── */
.zf2-ret-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-54%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.zf2-ring-svg { filter: drop-shadow(0 14px 28px rgba(5,150,105,.22)); }

/* ring fill — animated via JS adding .zf2-ring-go class */
#zf2-ring-fill {
  transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1);
}

.zf2-ret-label {
  font-size: 12px; font-weight: 700; color: #065f46;
  background: rgba(255,255,255,.55); padding: 6px 14px;
  border-radius: 999px; text-align: center;
}
.zf2-ret-cards { display: flex; gap: 10px; }
.zf2-ret-card {
  background: #fff; border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.09); text-align: center; min-width: 80px;
}
.zf2-ret-card strong {
  display: block; font-size: 18px; font-weight: 900; letter-spacing: -.04em; color: #0a0a12;
}
.zf2-ret-card span { font-size: 11px; color: #94a3b8; font-weight: 600; }
.zf2-ret-card--g strong { color: #059669; }
.zf2-ret-card--p strong { color: #7c3aed; }
.zf2-ret-pill {
  background: #ecfdf5; color: #065f46;
  border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700;
}

/* ── Feature 3: Automation ── */
.zf2-noshow-badge {
  top: 18px; right: 18px;
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
}
.zf2-noshow-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: #fef3c7; display: flex; align-items: center; justify-content: center;
  color: #d97706; flex-shrink: 0;
}
.zf2-noshow-icon .material-symbols-outlined { font-size: 15px; }
.zf2-noshow-t1 { font-size: 12px; font-weight: 700; color: #0a0a12; }
.zf2-noshow-t2 { font-size: 11px; color: #94a3b8; }
.zf2-auto-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-44%); width: 296px;
}
.zf2-auto-win {
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.11);
}
.zf2-auto-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid #f1f5f9;
  font-size: 13px; font-weight: 800; color: #0a0a12;
}
.zf2-auto-badge {
  background: #ede9fe; color: #6d28d9;
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}
.zf2-auto-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid #f8fafc;
}
.zf2-auto-row:last-child { border: 0; padding-bottom: 0; }
.zf2-ck {
  width: 22px; height: 22px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.zf2-ck .material-symbols-outlined { font-size: 13px; }
.zf2-ck--done { background: #dcfce7; color: #16a34a; }
.zf2-ck--blue { background: #dbeafe; color: #1d4ed8; }
.zf2-ck--q    { background: #ede9fe; color: #7c3aed; }
.zf2-auto-text { flex: 1; font-size: 12.5px; font-weight: 600; color: #334155; }
.zf2-auto-time { font-size: 11px; color: #94a3b8; white-space: nowrap; }

/* ── Feature 4: Chart ── */
.zf2-chart-wrap {
  position: absolute; inset: 0; padding: 24px 24px 0;
  display: flex; flex-direction: column;
}
.zf2-chart-top {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px;
}
.zf2-chart-amount {
  font-size: 28px; font-weight: 900; letter-spacing: -.05em; color: #0a0a12; line-height: 1;
}
.zf2-chart-up {
  display: inline-flex; align-items: center;
  background: #dcfce7; color: #16a34a;
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; margin-top: 6px;
}
.zf2-chart-range { display: flex; gap: 5px; }
.zf2-cr {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; border: none; cursor: pointer;
  background: rgba(255,255,255,.6); color: #64748b;
}
.zf2-cr--active { background: #7c3aed; color: #fff; }
.zf2-chart-svg-area { position: relative; flex: 1; }

.zf2-chart-tip {
  position: absolute; top: 14px; left: 38%;
  background: #0a0a12; color: #fff;
  border-radius: 8px; padding: 5px 10px;
  font-size: 11px; font-weight: 700;
  pointer-events: none; white-space: nowrap;
  opacity: 0;
  transition: opacity .4s ease;
}
.zf2-chart-tip::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent; border-bottom: 0; border-top-color: #0a0a12;
}
.zf2-chart-tip.zf2-tip-show { opacity: 1; }

/* clip rect — animated by JS */
#zf2-clip-rect {
  transition: width 1.8s cubic-bezier(.4,0,.2,1) .1s;
}

.zf2-chart-months {
  display: flex; justify-content: space-between;
  padding: 6px 0 0; font-size: 10px; color: #64748b; font-weight: 600;
}

/* ── Feature 5: Payments ── */
.zf2-pay-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 256px; display: flex; flex-direction: column; gap: 10px;
}
.zf2-pay-card {
  background: linear-gradient(135deg,#7c3aed,#4338ca);
  border-radius: 18px; padding: 20px; color: #fff;
  box-shadow: 0 14px 36px rgba(124,58,237,.28);
}
.zf2-pay-card__top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.zf2-pay-brand { font-size: 10px; font-weight: 800; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }
.zf2-pay-chip  { width: 26px; height: 18px; border-radius: 4px; background: rgba(255,255,255,.25); }
.zf2-pay-num   { font-size: 11px; letter-spacing: .2em; opacity: .6; margin-bottom: 6px; }
.zf2-pay-amt   { font-size: 26px; font-weight: 900; letter-spacing: -.04em; }
.zf2-pay-sub   { font-size: 10px; opacity: .6; margin-top: 2px; }
.zf2-pay-row {
  background: #fff; border-radius: 14px; padding: 11px 14px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,.07);
}
.zf2-pay-row__left  { display: flex; align-items: center; gap: 9px; }
.zf2-pay-row__right { text-align: right; }
.zf2-pay-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.zf2-pay-name   { font-size: 12px; font-weight: 700; color: #0a0a12; }
.zf2-pay-label  { font-size: 10px; color: #94a3b8; }
.zf2-pay-amt-sm { font-size: 13px; font-weight: 800; color: #0a0a12; }
.zf2-pay-status {
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 999px; background: #dcfce7; color: #16a34a;
}

/* ── Feature 6: Timeline ── */
.zf2-remind-wrap {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 300px;
}
.zf2-remind-win {
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.11);
}
.zf2-remind-hdr {
  font-size: 13px; font-weight: 800; color: #0a0a12;
  margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between;
}
.zf2-remind-hdr span { font-size: 10px; color: #94a3b8; font-weight: 600; }
.zf2-timeline { display: flex; flex-direction: column; }
.zf2-tl-item {
  display: flex; gap: 12px; position: relative; padding-bottom: 14px;
}
.zf2-tl-item:last-child { padding-bottom: 0; }
.zf2-tl-item:not(:last-child)::before {
  content: ''; position: absolute; left: 13px; top: 28px; bottom: 0;
  width: 1px; background: #e2e8f0;
}
.zf2-tl-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
}
.zf2-tl-dot .material-symbols-outlined { font-size: 13px; }
.zf2-tl-dot--p { background: #ede9fe; color: #7c3aed; }
.zf2-tl-dot--b { background: #dbeafe; color: #1d4ed8; }
.zf2-tl-dot--g { background: #dcfce7; color: #16a34a; }
.zf2-tl-dot--a { background: #fef3c7; color: #d97706; }
.zf2-tl-body   { padding-top: 4px; }
.zf2-tl-title  { font-size: 12px; font-weight: 700; color: #0a0a12; margin-bottom: 2px; }
.zf2-tl-time   { font-size: 10px; color: #94a3b8; }
.zf2-open-rate {
  bottom: 16px; right: 16px; padding: 10px 16px; text-align: center;
}
.zf2-open-rate strong {
  display: block; font-size: 20px; font-weight: 900;
  color: #7c3aed; letter-spacing: -.04em; line-height: 1;
}
.zf2-open-rate span { font-size: 10px; color: #94a3b8; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .zf2-card--wide  { grid-column: span 12; }
  .zf2-card--tall  { grid-column: span 12; grid-row: auto; min-height: auto; }
  .zf2-card--tall  .zf2-card__vis { flex: none; height: 300px; }
  .zf2-card--half  { grid-column: span 6; }
  .zf2-card--third { grid-column: span 4; }
  .zf2-card--two3  { grid-column: span 8; }
}
@media (max-width: 860px) {
  .zf2-card--half,
  .zf2-card--third,
  .zf2-card--two3 { grid-column: span 12; }
}
@media (max-width: 600px) {
  .zf2 { padding: 72px 0; }
  .zf2__title { font-size: 2.2rem; }
  .zf2__grid { gap: 12px; }
  .zf2-card { border-radius: 22px; }
  .zf2-card--wide  .zf2-card__vis,
  .zf2-card--tall  .zf2-card__vis,
  .zf2-card--half  .zf2-card__vis,
  .zf2-card--third .zf2-card__vis,
  .zf2-card--two3  .zf2-card__vis { height: 280px; }
}

/* ═══════════════════════════════════════════════
   BENTO GRID — ENHANCED ANIMATIONS
════════════════════════════════════════════════ */

/* Card entrance — richer than basic reveal-up */
.zf2__grid .zf2-card {
  /* override the generic reveal-up so cards use our JS class instead */
  opacity: 1 !important;
  transform: none !important;
}
.zf2-card-hidden {
  opacity: 0 !important;
  transform: translateY(48px) scale(0.97) !important;
  transition: opacity 0.7s cubic-bezier(.2,0,.1,1),
              transform 0.7s cubic-bezier(.2,0,.1,1) !important;
}
.zf2-card-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Floating bob — applied via JS */
@keyframes zf2Float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-8px);  }
}

/* Hover lift — a little more pronounced */
.zf2__grid .zf2-card:hover {
  transform: translateY(-8px) scale(1.008) !important;
  box-shadow: 0 40px 80px rgba(109,40,217,.14), 0 8px 24px rgba(0,0,0,.08) !important;
  transition: transform .4s cubic-bezier(.2,0,.1,1), box-shadow .4s ease !important;
}

/* Voice wave bar animation already defined in the voice CSS above */

/* Shimmer on upsell "Add" buttons */
.zf2-upsell-btn {
  position: relative;
  overflow: hidden;
}
.zf2-upsell-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: zf2Shimmer 2.5s ease-in-out 1.5s infinite;
}
@keyframes zf2Shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%);  }
}

/* Live dot pulse on upsell badge */
.zf2-upsell-dot {
  animation: zf2DotPulse 2s ease-in-out infinite;
}
@keyframes zf2DotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(20,184,166,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(20,184,166,.10); }
}

/* Retention ring — smoothly fill in via CSS transition on scroll */
#zf2-ring-fill {
  transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1) .3s;
}

/* Section header eyebrow badge */
.zf2__eye {
  display: inline-block;
  animation: zf2EyeBounce .6s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes zf2EyeBounce {
  from { opacity: 0; transform: translateY(-12px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating stat cards — spring pop-in handled by JS,
   add subtle continuous breathe after appearing */
.zf2-chat-stat,
.zf2-upsell-stat,
.zf2-open-rate,
.zf2-voice-stat {
  transition: transform .3s ease, box-shadow .3s ease;
}
.zf2-chat-stat:hover,
.zf2-upsell-stat:hover,
.zf2-open-rate:hover,
.zf2-voice-stat:hover {
  transform: scale(1.06) translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,.16) !important;
}

/* Card vis — subtle inner glow on hover */
.zf2-card:hover .zf2-card__vis::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5);
  pointer-events: none;
  z-index: 2;
}
