/* =====================================================
   GET DEMO – HERO SECTION
===================================================== */

.ys-demo-hero {
  padding: 140px 0 120px;
  background:
    radial-gradient(circle at top left, rgba(31, 111, 229, 0.18), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   CONTENT WRAP
===================================================== */

.ys-demo-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;

  opacity: 0;
  transform: translateY(26px);
  animation: ysDemoHeroIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   TITLE
===================================================== */

.ys-demo-hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 28px;
}

/* =====================================================
   TEXT
===================================================== */

.ys-demo-hero-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 18px;
}

.ys-demo-hero-text.muted {
  color: #475569;
}

/* =====================================================
   CTA
===================================================== */

.ys-demo-hero-actions {
  margin: 40px 0 18px;
}

.ys-demo-btn-primary {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f6fe5, #1e40af);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 16px 48px rgba(31, 111, 229, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ys-demo-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(31, 111, 229, 0.6);
}

/* =====================================================
   TRUST LINE
===================================================== */

.ys-demo-hero-trust {
  font-size: 0.95rem;
  color: #64748b;
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes ysDemoHeroIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .ys-demo-hero {
    padding: 100px 0 90px;
  }

  .ys-demo-hero-title {
    font-size: 2.3rem;
  }

  .ys-demo-hero-text {
    font-size: 1.05rem;
  }
}


/* =====================================================
   GET DEMO HERO – LEFT IMAGE
===================================================== */

.ys-demo-hero-image-wrap {
  position: relative;
  display: inline-block;
}

/* Image */
.ys-demo-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  animation: ysDemoImageFloat 6.5s ease-in-out infinite;
}

/* Soft glow behind image */
.ys-demo-hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle,
    rgba(31, 111, 229, 0.25),
    transparent 70%
  );
  filter: blur(75px);
  z-index: -1;
}

/* Floating animation */
@keyframes ysDemoImageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

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

@media (max-width: 992px) {
  .ys-demo-hero-content {
    text-align: center;
  }

  .ys-demo-hero-image-wrap {
    margin-bottom: 30px;
  }
}

/* =====================================================
   DEMO EXPERIENCE – GUIDED FLOW
===================================================== */

.ys-demo-experience {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, rgba(31, 111, 229, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   HEADER
===================================================== */

.ys-demo-experience-head {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

.ys-demo-experience-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(22px);
  animation: ysDemoExpTitleIn 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-demo-experience-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   EXPERIENCE LIST
===================================================== */

.ys-demo-experience-list {
  max-width: 760px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =====================================================
   EXPERIENCE ITEM
===================================================== */

.ys-demo-exp-item {
  position: relative;
  padding: 28px 28px 28px 90px;
  background: #ffffff;
  border-radius: 22px;

  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.08);

  opacity: 0;
  transform: translateY(16px);
  animation: ysDemoExpReveal 0.7s ease forwards;
}

/* stagger */
.ys-demo-exp-item:nth-child(1) { animation-delay: 0.12s; }
.ys-demo-exp-item:nth-child(2) { animation-delay: 0.24s; }
.ys-demo-exp-item:nth-child(3) { animation-delay: 0.36s; }
.ys-demo-exp-item:nth-child(4) { animation-delay: 0.48s; }
.ys-demo-exp-item:nth-child(5) { animation-delay: 0.60s; }
.ys-demo-exp-item:nth-child(6) { animation-delay: 0.72s; }

/* index bubble */
.ys-demo-exp-index {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f6fe5;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* text */
.ys-demo-exp-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
}

/* subtle emphasis on hover */
.ys-demo-exp-item:hover {
  box-shadow:
    0 38px 90px rgba(31, 111, 229, 0.18),
    inset 0 0 0 1px rgba(31, 111, 229, 0.25);
  transition: box-shadow 0.35s ease;
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-demo-experience-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;

  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.1);

  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;

  opacity: 0;
  transform: scale(0.96);
  animation: ysDemoExpNoteIn 0.8s ease forwards;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysDemoExpTitleIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysDemoExpReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysDemoExpNoteIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .ys-demo-experience {
    padding: 90px 0;
  }

  .ys-demo-experience-title {
    font-size: 2.2rem;
  }

  .ys-demo-exp-item {
    padding: 26px 24px 26px 72px;
  }

  .ys-demo-exp-index {
    left: 22px;
  }
}


/* =====================================================
   PRODUCTS AVAILABLE FOR DEMO – FLIP TILE STYLE
===================================================== */

.ys-demo-products {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom left, rgba(31, 111, 229, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   HEADER
===================================================== */

.ys-demo-products-head {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

.ys-demo-products-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(20px);
  animation: ysDemoProductsTitleIn 0.8s ease forwards;
}

.ys-demo-products-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   GRID
===================================================== */

.ys-demo-products-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* =====================================================
   PRODUCT CARD – FLIP IN
===================================================== */

.ys-demo-product-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 30px;
  text-align: left;

  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.08);
  transform-style: preserve-3d;

  opacity: 0;
  transform: rotateY(18deg) translateY(20px);
  animation: ysDemoProductFlip 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* stagger */
.ys-demo-product-card:nth-child(1) { animation-delay: 0.10s; }
.ys-demo-product-card:nth-child(2) { animation-delay: 0.22s; }
.ys-demo-product-card:nth-child(3) { animation-delay: 0.34s; }
.ys-demo-product-card:nth-child(4) { animation-delay: 0.46s; }
.ys-demo-product-card:nth-child(5) { animation-delay: 0.58s; }

/* check badge */
.ys-demo-check {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f6fe5;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* title */
.ys-demo-product-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

/* description */
.ys-demo-product-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* hover focus ring */
.ys-demo-product-card:hover {
  box-shadow:
    0 40px 100px rgba(31, 111, 229, 0.22),
    inset 0 0 0 1px rgba(31, 111, 229, 0.25);
  transition: box-shadow 0.35s ease;
}

/* =====================================================
   ANIMATIONS – DISTINCT
===================================================== */

@keyframes ysDemoProductsTitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysDemoProductFlip {
  from {
    opacity: 0;
    transform: rotateY(18deg) translateY(20px);
  }
  to {
    opacity: 1;
    transform: rotateY(0deg) translateY(0);
  }
}

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

@media (max-width: 768px) {
  .ys-demo-products {
    padding: 90px 0;
  }

  .ys-demo-products-title {
    font-size: 2.2rem;
  }

  .ys-demo-product-card {
    padding: 28px 24px;
  }
}



/* =====================================================
   WHO SHOULD BOOK A DEMO – QUALIFICATION BANDS
===================================================== */

.ys-demo-qualify {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(31, 111, 229, 0.15), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   HEADER
===================================================== */

.ys-demo-qualify-head {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

.ys-demo-qualify-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(22px);
  animation: ysQualifyTitleIn 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-demo-qualify-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   QUALIFICATION LIST
===================================================== */

.ys-demo-qualify-list {
  max-width: 900px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =====================================================
   QUALIFICATION ITEM – BAND STYLE
===================================================== */

.ys-qualify-item {
  position: relative;
  padding: 22px 26px 22px 56px;
  background: #ffffff;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #334155;

  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);

  opacity: 0;
  transform: scale(0.96);
  animation: ysQualifyBandIn 0.7s ease forwards;
}

/* stagger */
.ys-qualify-item:nth-child(1) { animation-delay: 0.12s; }
.ys-qualify-item:nth-child(2) { animation-delay: 0.22s; }
.ys-qualify-item:nth-child(3) { animation-delay: 0.32s; }
.ys-qualify-item:nth-child(4) { animation-delay: 0.42s; }
.ys-qualify-item:nth-child(5) { animation-delay: 0.52s; }
.ys-qualify-item:nth-child(6) { animation-delay: 0.62s; }

/* left signal bar */
.ys-qualify-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 0;
  border-radius: 3px;
  background: #1f6fe5;
  animation: ysSignalGrow 0.5s ease forwards;
}

/* hover emphasis */
.ys-qualify-item:hover {
  box-shadow:
    0 30px 80px rgba(31, 111, 229, 0.2),
    inset 0 0 0 1px rgba(31, 111, 229, 0.25);
  transition: box-shadow 0.35s ease;
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-demo-qualify-note {
  max-width: 780px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;

  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.1);

  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;

  opacity: 0;
  transform: translateY(18px);
  animation: ysQualifyNoteIn 0.8s ease forwards;
}

/* =====================================================
   ANIMATIONS – DIFFERENT FROM OTHERS
===================================================== */

@keyframes ysQualifyTitleIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysQualifyBandIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ysSignalGrow {
  from { height: 0; }
  to { height: 24px; }
}

@keyframes ysQualifyNoteIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .ys-demo-qualify {
    padding: 90px 0;
  }

  .ys-demo-qualify-title {
    font-size: 2.2rem;
  }

  .ys-qualify-item {
    padding: 20px 22px 20px 48px;
  }

  .ys-demo-qualify-note {
    padding: 28px 26px;
  }
}


/* =====================================================
   HOW THE DEMO PROCESS WORKS – ORBIT STYLE
===================================================== */

.ys-demo-process {
  padding: 60px 0;
  background:
    radial-gradient(circle at center, rgba(31, 111, 229, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   HEADER
===================================================== */

.ys-demo-process-head {
  max-width: 860px;
  margin: 0 auto 90px;
  text-align: center;
}

.ys-demo-process-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(24px);
  animation: ysProcessTitleIn 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-demo-process-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   ORBIT LAYOUT
===================================================== */

.ys-demo-orbit {
  position: relative;
  max-width: 720px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* subtle orbit guide */
.ys-demo-orbit::before {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(31, 111, 229, 0.25);
}

/* =====================================================
   ORBIT STEP
===================================================== */

.ys-demo-orbit-step {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 28px 30px 76px;

  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.08);

  opacity: 0;
  transform: rotate(-6deg) scale(0.94);
  animation: ysOrbitStepIn 0.75s ease forwards;
}

/* stagger */
.ys-demo-orbit-step:nth-child(1) { animation-delay: 0.15s; }
.ys-demo-orbit-step:nth-child(2) { animation-delay: 0.30s; }
.ys-demo-orbit-step:nth-child(3) { animation-delay: 0.45s; }
.ys-demo-orbit-step:nth-child(4) { animation-delay: 0.60s; }

/* number badge */
.ys-orbit-num {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f6fe5;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* text */
.ys-demo-orbit-step p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
}

/* hover focus */
.ys-demo-orbit-step:hover {
  box-shadow:
    0 38px 90px rgba(31, 111, 229, 0.18),
    inset 0 0 0 1px rgba(31, 111, 229, 0.25);
  transition: box-shadow 0.35s ease;
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-demo-process-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;

  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.1);

  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;

  opacity: 0;
  transform: translateY(18px);
  animation: ysProcessNoteIn 0.8s ease forwards;
}

/* =====================================================
   ANIMATIONS – ORBIT STYLE
===================================================== */

@keyframes ysProcessTitleIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysOrbitStepIn {
  from {
    opacity: 0;
    transform: rotate(-6deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes ysProcessNoteIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .ys-demo-process {
    padding: 90px 0;
  }

  .ys-demo-process-title {
    font-size: 2.2rem;
  }

  .ys-demo-orbit {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ys-demo-orbit::before {
    display: none;
  }
}


/* =====================================================
   WHY BUSINESSES CHOOSE YUVAASOFT – LIVING SYSTEM
===================================================== */

.ys-system {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(31, 111, 229, 0.18), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(31, 111, 229, 0.14), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* animated energy lines */
.ys-system::before,
.ys-system::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(31,111,229,0.08) 0px,
      rgba(31,111,229,0.08) 1px,
      transparent 1px,
      transparent 22px
    );
  animation: ysEnergyFlow 18s linear infinite;
}

.ys-system::after {
  animation-direction: reverse;
  opacity: 0.6;
}

/* =====================================================
   HEADER
===================================================== */

.ys-system-head {
  max-width: 880px;
  margin: 0 auto 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ys-system-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 22px;

  opacity: 0;
  transform: translateY(30px);
  animation: ysSystemTitleIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-system-intro {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #64748b;
}

/* =====================================================
   SYSTEM FIELD
===================================================== */

.ys-system-field {
  max-width: 900px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

/* =====================================================
   SYSTEM NODE
===================================================== */

.ys-system-node {
  position: relative;
  padding: 28px 34px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  text-align: center;

  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;

  box-shadow:
    0 20px 60px rgba(2, 6, 23, 0.08),
    inset 0 0 0 1px rgba(31,111,229,0.18);

  opacity: 0;
  transform: translateY(24px);
  animation: ysNodeActivate 0.7s ease forwards;
}

/* stagger activation */
.ys-system-node:nth-child(1) { animation-delay: 0.10s; }
.ys-system-node:nth-child(2) { animation-delay: 0.20s; }
.ys-system-node:nth-child(3) { animation-delay: 0.30s; }
.ys-system-node:nth-child(4) { animation-delay: 0.40s; }
.ys-system-node:nth-child(5) { animation-delay: 0.50s; }
.ys-system-node:nth-child(6) { animation-delay: 0.60s; }
.ys-system-node:nth-child(7) { animation-delay: 0.70s; }
.ys-system-node:nth-child(8) { animation-delay: 0.80s; }

/* energy pulse ring */
.ys-system-node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(31,111,229,0.0);
  transition: border 0.3s ease;
}

/* hover = system response */
.ys-system-node:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 110px rgba(31,111,229,0.25),
    inset 0 0 0 1px rgba(31,111,229,0.35);
}

.ys-system-node:hover::after {
  border-color: rgba(31,111,229,0.5);
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-system-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 44px;
  border-radius: 30px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);

  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;

  box-shadow: 0 30px 90px rgba(2,6,23,0.1);

  opacity: 0;
  transform: scale(0.95);
  animation: ysSystemNoteIn 0.9s ease forwards;
}

/* =====================================================
   ADVANCED ANIMATIONS
===================================================== */

@keyframes ysEnergyFlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ysSystemTitleIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysNodeActivate {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysSystemNoteIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .ys-system {
    padding: 100px 0;
  }

  .ys-system-title {
    font-size: 2.3rem;
  }

  .ys-system-field {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   INTENT-DRIVEN DEMO FORM (ADVANCED)
===================================================== */

.ys-clean-form {
  padding: 60px 0;
  background: #f8fafc;
}

.ys-clean-form-wrap {
  max-width: 880px;
  margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.ys-clean-form-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease forwards;
}

.ys-clean-form-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 56px;
}

/* =====================================================
   FORM GRID
===================================================== */

.ys-clean-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  animation: fadeUp 0.7s ease forwards;
}

.ys-full {
  grid-column: span 2;
}

/* =====================================================
   FIELD
===================================================== */

.ys-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.ys-field input,
.ys-field select,
.ys-field textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.95rem;
  color: #020617;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* focus */
.ys-field input:focus,
.ys-field select:focus,
.ys-field textarea:focus {
  border-color: #1f6fe5;
  box-shadow: 0 0 0 3px rgba(31, 111, 229, 0.15);
  outline: none;
}

/* invalid */
.ys-field input:invalid,
.ys-field select:invalid,
.ys-field textarea:invalid {
  border-color: #4e7feb;
}

/* =====================================================
   SUBMIT
===================================================== */

.ys-submit-wrap {
  margin-top: 20px;
}

.ys-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  background: #1f6fe5;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.ys-submit-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .ys-clean-form-grid {
    grid-template-columns: 1fr;
  }

  .ys-full {
    grid-column: span 1;
  }

  .ys-clean-form-title {
    font-size: 2rem;
  }
}

/* =====================================================
   SUPPORT PROMISE – POST DEMO ASSURANCE
===================================================== */

.ys-support-promise {
  padding: 130px 0;
  background:
    radial-gradient(circle at top right, rgba(31,111,229,0.15), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   HEADER
===================================================== */

.ys-support-head {
  max-width: 860px;
  margin: 0 auto 90px;
  text-align: center;
}

.ys-support-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(26px);
  animation: ysSupportTitleIn 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-support-intro {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #64748b;
}

/* =====================================================
   SUPPORT STEPS
===================================================== */

.ys-support-steps {
  max-width: 760px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =====================================================
   SUPPORT STEP
===================================================== */

.ys-support-step {
  position: relative;
  padding: 22px 26px 22px 62px;
  background: #ffffff;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #334155;

  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);

  opacity: 0;
  transform: translateX(-24px);
  animation: ysSupportStepIn 0.65s ease forwards;
}

/* stagger */
.ys-support-step:nth-child(1) { animation-delay: 0.10s; }
.ys-support-step:nth-child(2) { animation-delay: 0.20s; }
.ys-support-step:nth-child(3) { animation-delay: 0.30s; }
.ys-support-step:nth-child(4) { animation-delay: 0.40s; }
.ys-support-step:nth-child(5) { animation-delay: 0.50s; }
.ys-support-step:nth-child(6) { animation-delay: 0.60s; }

/* dot indicator */
.ys-support-dot {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #1f6fe5;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(31,111,229,0.15);
}

/* hover emphasis */
.ys-support-step:hover {
  box-shadow:
    0 32px 90px rgba(31,111,229,0.2),
    inset 0 0 0 1px rgba(31,111,229,0.25);
  transition: box-shadow 0.35s ease;
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-support-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 44px;
  border-radius: 30px;
  background: #ffffff;
  text-align: center;

  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.1);

  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;

  opacity: 0;
  transform: scale(0.96);
  animation: ysSupportNoteIn 0.8s ease forwards;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysSupportTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysSupportStepIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ysSupportNoteIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .ys-support-promise {
    padding: 95px 0;
  }

  .ys-support-title {
    font-size: 2.2rem;
  }

  .ys-support-step {
    padding: 20px 22px 20px 54px;
  }

  .ys-support-note {
    padding: 28px 26px;
  }
}

/* =====================================================
   FINAL TRUST BLOCK – DECISION CONFIDENCE
===================================================== */

.ys-trust-final {
  padding: 60px 0;
  background:
    radial-gradient(circle at center top, rgba(31,111,229,0.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  text-align: left;
  overflow: hidden;
}

/* =====================================================
   INNER
===================================================== */

.ys-trust-inner {
  max-width: 920px;
  margin: 0 auto;
}

/* =====================================================
   TITLE
===================================================== */

.ys-trust-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 42px;

  opacity: 0;
  transform: translateY(28px);
  animation: ysTrustTitleIn 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   MESSAGE STACK
===================================================== */

.ys-trust-message {
  margin-bottom: 60px;
}

.ys-trust-line {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: ysTrustLineIn 0.6s ease forwards;
}

/* staggered clarity */
.ys-trust-line.warning { animation-delay: 0.15s; color: #7c2d12; }
.ys-trust-line.positive { animation-delay: 0.30s; color: #064e3b; font-weight: 600; }
.ys-trust-line.neutral { animation-delay: 0.45s; color: #334155; }

/* =====================================================
   CTA ACTIONS
===================================================== */

.ys-trust-actions {
  display: flex;
  justify-content: left;
  gap: 22px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(22px);
  animation: ysTrustActionsIn 0.8s ease forwards;
  animation-delay: 0.55s;
}

/* =====================================================
   BUTTONS
===================================================== */

.ys-trust-btn {
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* primary */
.ys-trust-btn.primary {
  background: linear-gradient(135deg, #1f6fe5, #1e40af);
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(31,111,229,0.55);
}

.ys-trust-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px rgba(31,111,229,0.75);
}

/* secondary */
.ys-trust-btn.secondary {
  background: #ffffff;
  color: #1f6fe5;
  border: 2px solid rgba(31,111,229,0.35);
}

.ys-trust-btn.secondary:hover {
  background: rgba(31,111,229,0.06);
  border-color: #1f6fe5;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysTrustTitleIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ysTrustLineIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ysTrustActionsIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
  .ys-trust-final {
    padding: 100px 0;
  }

  .ys-trust-title {
    font-size: 2.2rem;
  }
}
