/* =====================================================
 ROOT VARIABLES
===================================================== */
:root {
  --ys-primary: #1e40af;
  --ys-accent: #2563eb;
  --ys-dark: #020617;
  --ys-muted: #64748b;
  --ys-bg-soft: #f8fafc;
}

/* =====================================================
 HERO SECTION
===================================================== */
.ys-hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.12), transparent 40%),
    linear-gradient(180deg, #ffffff, var(--ys-bg-soft));
}

.ys-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ys-dark);
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  animation: ysFadeUp 0.8s ease forwards;
}

.ys-hero-subtitle {
  max-width: 820px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ys-muted);
  animation: ysFadeUp 1s ease forwards;
}

.ys-hero-btn {
  display: inline-block;
  background-color: #1f5bff;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounceIn 1s 1.5s forwards;
}

.ys-hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px #2b5dff7c;
  color: #1f6fe5;
  background-color: white;
}

/* Image animation */
.ys-hero-image-wrap {
  position: relative;
  animation: zoomIn 2s ease-out;
}

.ys-hero-title span {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ys-hero-image {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ys-hero-image-wrap:hover .ys-hero-image {
  transform: scale(1.05);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =====================================================
 PRODUCTS INTRO SECTION
===================================================== */
.ys-products-intro {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 45%),
    linear-gradient(180deg, #ffffff, var(--ys-soft-bg));
}

/* =====================================================
 HEADINGS
===================================================== */
.ys-intro-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ys-dark);
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.ys-intro-subtitle {
  max-width: 820px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ys-muted);
}

/* =====================================================
 CAPABILITY CARDS
===================================================== */
.ys-capability-card {
  height: 100%;
  padding: 34px 30px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(2,6,23,0.06);
  position: relative;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}

/* Accent glow */
.ys-capability-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ys-primary), var(--ys-accent));
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* Check badge */
.ys-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ys-primary);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Text */
.ys-capability-card h4,
.ys-capability-card p {
  position: relative;
  z-index: 1;
}

.ys-capability-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ys-dark);
}

.ys-capability-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ys-muted);
}

/* =====================================================
 HOVER EFFECT (NO JS)
===================================================== */
.ys-capability-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(37,99,235,0.25);
}

.ys-capability-card:hover::after {
  opacity: 1;
}

.ys-capability-card:hover h4,
.ys-capability-card:hover p {
  color: #ffffff;
}

.ys-capability-card:hover .ys-check {
  background: #ffffff;
  color: var(--ys-primary);
}

/* =====================================================
 RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .ys-intro-title {
    font-size: 2.1rem;
  }
}


/* =====================================================
 GOFINICKY PRODUCT CARDS
===================================================== */

.gf-product-suite {
  background: #f8fafc;
}

.gf-suite-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #020617;
}

/* Card */
.gf-product-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.gf-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.18);
}

/* Titles */
.gf-product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 6px;
}

.gf-product-subtitle {
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 14px;
}

.gf-product-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Feature list */
.gf-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.gf-feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #334155;
}

.gf-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

/* Actions */
.gf-card-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.gf-btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}

.gf-btn-primary:hover {
  background: #1e40af;
  color: #ffffff;
}

.gf-btn-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background: transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

.gf-btn-outline:hover {
  color: #1280ff;
}

/* =====================================================
 COMMON PLATFORM ADVANTAGES – YS STYLE
===================================================== */

.ys-platform-advantages {
  padding: 60px 0;
  background: #ffffff;
}

/* Header */
.ys-platform-head {
  max-width: 780px;
  margin: 0 auto;
}

.ys-platform-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #2391ff;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ys-platform-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000;
}

/* Cards */
.ys-advantage-card {
  height: 100%;
  padding: 36px 32px;
  background: rgba(78, 125, 255, 0.581);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.412);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  animation: ysFadeLift 0.9s ease forwards;
}

/* Soft glow layer */
.ys-advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ffffff, #ffffff);
  transition: opacity 0.45s ease;
}

/* Icon */
.ys-adv-icon {
  font-size: 1.9rem;
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Text */
.ys-advantage-card h4,
.ys-advantage-card p {
  position: relative;
  z-index: 1;
}

.ys-advantage-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f6fe5;
  margin-bottom: 10px;
}

.ys-advantage-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #000000;
}

/* Hover effect */
.ys-advantage-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 30px 90px rgba(37,99,235,0.4);
}

.ys-advantage-card:hover::before {
  opacity: 0.18;
}

/* Stagger animation (pure CSS) */
.ys-advantage-card:nth-child(1) { animation-delay: 0.05s; }
.ys-advantage-card:nth-child(2) { animation-delay: 0.15s; }
.ys-advantage-card:nth-child(3) { animation-delay: 0.25s; }
.ys-advantage-card:nth-child(4) { animation-delay: 0.35s; }
.ys-advantage-card:nth-child(5) { animation-delay: 0.45s; }
.ys-advantage-card:nth-child(6) { animation-delay: 0.55s; }

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

/* Responsive */
@media (max-width: 768px) {
  .ys-platform-title {
    font-size: 2.1rem;
  }
}


/* =====================================================
 DEMO & SALES – ALT STYLE
===================================================== */

.ys-demo-alt {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Content */
.ys-demo-content {
  animation: ysSlideIn 0.9s ease forwards;
}

.ys-demo-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ys-demo-heading {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

.ys-demo-text {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 32px;
}

/* CTA */
.ys-demo-cta-group {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.ys-demo-btn-primary {
  padding: 14px 28px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(37,99,235,0.35);
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

.ys-demo-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(37,99,235,0.5);
  color: #ffffff;
}

.ys-demo-btn-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  position: relative;
}

.ys-demo-btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ys-demo-btn-link:hover::after {
  transform: scaleX(1);
}

/* Visual Side */
.ys-demo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: ysFadeUp 1s ease forwards;
}

.ys-demo-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px dashed rgba(37,99,235,0.3);
  animation: ysRotate 18s linear infinite;
}

.ys-demo-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(2,6,23,0.12);
  position: relative;
  z-index: 1;
}

.ys-demo-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #020617;
}

.ys-demo-card ul {
  padding-left: 18px;
  margin: 0;
}

.ys-demo-card li {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 8px;
}

/* Animations */
@keyframes ysSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .ys-demo-heading {
    font-size: 2.1rem;
  }

  .ys-demo-visual {
    margin-top: 40px;
  }
}


/* =====================================================
 FINAL CTA – DISTINCT YS STYLE
===================================================== */

.ys-final-cta {
  padding: 60px 0;
  background: #1f6fe5 100%;
  position: relative;
  overflow: hidden;
}

/* Animated gradient line */
.ys-final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #2563eb,
    transparent
  );
  animation: ysCtaSweep 6s linear infinite;
}

/* Layout */
.ys-final-cta-inner {
  display: flex;
  align-items: left;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
  flex-wrap: wrap;
}

/* Content */
.ys-final-cta-content {
  max-width: 1180px;
  animation: ysCtaSlideUp 0.9s ease forwards;
}

.ys-final-cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

.ys-final-cta-subtitle {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #cbd5f5;
}

.ys-final-cta-subtitle span {
  color: #ffffff;
  font-weight: 700;
}

/* Actions */
.ys-final-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: ysCtaFadeIn 1.1s ease forwards;
}

/* Buttons */
.ys-final-btn-solid {
  padding: 16px 32px;
  background: #ffffff;
  color: #020617;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

.ys-final-btn-solid:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.4);
  color: #020617;
}

/* Outline button */
.ys-final-btn-outline {
  padding: 16px 32px;
  background: transparent;
  color: #ffffff;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.35s ease;
}

.ys-final-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffff;
  transform: translateY(-4px);
}

/* Animations */
@keyframes ysCtaSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysCtaFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ysCtaSweep {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* Responsive */
@media (max-width: 992px) {
  .ys-final-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .ys-final-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ys-final-cta-title {
    font-size: 2.2rem;
  }
}


/* ------------------------------------------------------GoFinicky_Logistics_ERP  ------------------------------------------------------------------------ */
/* =====================================================
 LOGISTICS ERP HERO – WHITE STYLE (ENTERPRISE)
===================================================== */

.ys-logistics-hero-white {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft animated background */
.ys-logistics-hero-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.06), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(14,165,233,0.06), transparent 35%);
  animation: ysBgFloat 14s ease-in-out infinite;
  z-index: 0;
}

/* =====================================================
 LEFT CONTENT
===================================================== */

.ys-logistics-white-content {
  position: relative;
  z-index: 1;
  animation: ysFadeSlideLeft 0.9s ease forwards;
}

.ys-logistics-white-label {
  display: inline-block;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  border-radius: 999px;
  margin-bottom: 18px;
}

.ys-logistics-white-title {
  font-size: 3rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

.ys-logistics-white-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 14px;
}

.ys-logistics-white-desc.muted {
  color: #64748b;
}

/* CTA */
.ys-logistics-white-cta {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.ys-logistics-white-btn-primary {
  padding: 15px 30px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(37,99,235,0.35);
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

.ys-logistics-white-btn-primary:hover {
  transform: translateY(-4px);
  color: #ffff;
  box-shadow: 0 30px 70px rgba(37,99,235,0.5);
}

.ys-logistics-white-btn-secondary {
  padding: 15px 30px;
  background: transparent;
  color: #2563eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  border: 2px solid #2563eb;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ys-logistics-white-btn-secondary:hover {
  background: rgba(37,99,235,0.08);
  transform: translateY(-4px);
}

/* =====================================================
 RIGHT SIDE – VIDEO + FLOATING UI
===================================================== */

.ys-video-visual {
  position: relative;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  animation: ysFadeSlideUp 1s ease forwards;
}

/* Background Video */
.ys-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Glass Overlay */
.ys-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.412),
    rgba(255, 255, 255, 0.322)
  );
  z-index: 1;
  pointer-events: none;
}

/* =====================================================
   LARGE DESKTOP / ULTRA-WIDE (≥ 1400px)
===================================================== */
@media (min-width: 1400px) {
  .ys-video-visual {
    height: 560px;
  }

  .ys-bg-video {
    filter: brightness(0.95) contrast(1.1);
  }
}

/* =====================================================
   DESKTOP / LAPTOP (1200px – 1399px)
===================================================== */
@media (max-width: 1399px) {
  .ys-video-visual {
    height: 520px;
  }
}

/* =====================================================
   SMALL LAPTOP / TABLET LANDSCAPE (992px – 1199px)
===================================================== */
@media (max-width: 1199px) {
  .ys-video-visual {
    height: 480px;
  }

  /* Slightly stronger overlay for readability */
  .ys-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.7)
    );
  }
}

/* =====================================================
   TABLET / iPAD (768px – 991px)
===================================================== */
@media (max-width: 991px) {
  .ys-video-visual {
    height: 420px;
  }

  /* Improve performance on tablets */
  .ys-bg-video {
    filter: brightness(0.9) contrast(1.05);
  }
}

/* =====================================================
   MOBILE (≤ 767px)
===================================================== */
@media (max-width: 767px) {
  .ys-video-visual {
    height: 360px;
    border-radius: 20px;
  }

  /* Heavier overlay for small screens */
  .ys-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.75)
    );
  }
}

/* =====================================================
   SMALL MOBILE (≤ 420px)
===================================================== */
@media (max-width: 420px) {
  .ys-video-visual {
    height: 300px;
  }
}

/* =====================================================
   ACCESSIBILITY / LOW POWER USERS
===================================================== */
@media (prefers-reduced-motion: reduce) {
  .ys-bg-video {
    opacity: 0.4;
  }

  .ys-video-overlay {
    backdrop-filter: none;
  }
}

/* Main Card */
.ys-logistics-white-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  padding: 36px 32px;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(2,6,23,0.12);
}

.ys-logistics-white-card h5 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #020617;
}

.ys-logistics-white-card ul {
  padding-left: 18px;
  margin: 0;
}

.ys-logistics-white-card li {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 8px;
  position: relative;
}



/* Floating Cards */
.ys-floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.18);
  animation: ysFloatSoft 8s ease-in-out infinite;
}

.ys-floating-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #020617;
}

.ys-floating-card small {
  font-size: 0.72rem;
  color: #475569;
}

.card-top {
  top: 300px;
  left: 26px;
}

.card-bottom {
  bottom: 26px;
  right: 26px;
  animation-delay: 2s;
}

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

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

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

@keyframes ysBgFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes ysFloatSoft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =====================================================
 RESPONSIVE BREAKPOINTS (CLEAN & ORDERED)
===================================================== */

/* ≥ 1400px */
@media (min-width: 1400px) {
  .ys-logistics-white-title { font-size: 3.2rem; }
  .ys-video-visual { height: 560px; }
}

/* ≤ 1399px */
@media (max-width: 1399px) {
  .ys-logistics-hero-white { padding: 110px 0; }
  .ys-logistics-white-title { font-size: 2.8rem; }
}

/* ≤ 1199px */
@media (max-width: 1199px) {
  .ys-logistics-white-title { font-size: 2.4rem; }
  .ys-logistics-white-desc { font-size: 1rem; }
  .ys-video-visual { height: 480px; }
}

/* ≤ 991px (Tablet) */
@media (max-width: 991px) {
  .ys-logistics-hero-white { padding: 100px 0 90px; }

  .ys-logistics-white-content { text-align: center; }
  .ys-logistics-white-cta { justify-content: center; }
  .ys-logistics-white-desc { margin: 0 auto; }

  .ys-video-visual {
    height: auto;
    padding: 26px;
    margin-top: 50px;
  }

  .ys-bg-video { display: none; }
  .ys-video-overlay { background: #ffffff; }

  .ys-floating-card {
    position: relative;
    inset: auto;
    margin-top: 15px;
    margin-bottom: 16px;
    animation: none;
  }
}

/* ≤ 767px (Mobile) */
@media (max-width: 767px) {
  .ys-logistics-hero-white { padding: 90px 0 80px; }

  .ys-logistics-white-label { font-size: 0.7rem; }
  .ys-logistics-white-title { font-size: 2rem; line-height: 1.2; }
  .ys-logistics-white-desc { font-size: 0.95rem; }

  .ys-logistics-white-btn-primary,
  .ys-logistics-white-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .ys-logistics-white-card { padding: 26px 22px; }
}

/* ≤ 420px */
@media (max-width: 420px) {
  .ys-logistics-white-title { font-size: 1.8rem; }
  .ys-logistics-white-desc { font-size: 0.9rem; }
}

/* =====================================================
 ACCESSIBILITY / LOW POWER
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .ys-bg-video,
  .ys-floating-card,
  .ys-logistics-hero-white::before {
    animation: none !important;
  }
}


/* =====================================================
 WHO LOGISTICS ERP IS FOR – ALT ANIMATION SYSTEM
===================================================== */

.ys-logistics-audience {
  padding: 60px 0;
  background: #ffffff;
}

/* Header – soft zoom reveal */
.ys-logistics-audience-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  animation: ysZoomReveal 0.9s ease forwards;
}

.ys-logistics-audience-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  animation: ysZoomReveal 1.1s ease forwards;
}

/* Tiles */
.ys-audience-tile {
  height: 100%;
  padding: 34px 30px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(2,6,23,0.08);
  position: relative;
  overflow: hidden;

  /* NEW animation */
  animation: ysTileScaleIn 0.8s cubic-bezier(.22,.61,.36,1) forwards;
  transform-origin: center;
}

/* Animated left border draw */
.ys-audience-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #2563eb, #38bdf8);
  animation: ysBorderDraw 0.9s ease forwards;
  animation-delay: 0.4s;
}

/* Text */
.ys-audience-tile h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ys-audience-tile p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Hover – micro tilt (no lift) */
.ys-audience-tile:hover {
  transform: rotateX(3deg) rotateY(-3deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(37,99,235,0.28);
}

/* Stagger timing */
.ys-audience-tile:nth-child(1) { animation-delay: 0.05s; }
.ys-audience-tile:nth-child(2) { animation-delay: 0.15s; }
.ys-audience-tile:nth-child(3) { animation-delay: 0.25s; }
.ys-audience-tile:nth-child(4) { animation-delay: 0.35s; }
.ys-audience-tile:nth-child(5) { animation-delay: 0.45s; }
.ys-audience-tile:nth-child(6) { animation-delay: 0.55s; }

/* Footer line – underline reveal */
.ys-logistics-audience-foot {
  max-width: 100%;
  font-size: 1.05rem;
  color: #334155;
  position: relative;
  animation: ysTextReveal 1s ease forwards;
}

.ys-logistics-audience-foot::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 0%;
  height: 3px;
  background: #2563eb;
  animation: ysUnderlineGrow 1s ease forwards;
  animation-delay: 0.6s;
}

/* =====================================================
 ANIMATIONS (COMPLETELY DIFFERENT)
===================================================== */

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

@keyframes ysTileScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ysBorderDraw {
  from { height: 0%; }
  to { height: 100%; }
}

@keyframes ysTextReveal {
  from {
    opacity: 0;
    letter-spacing: 0.08em;
  }
  to {
    opacity: 1;
    letter-spacing: normal;
  }
}

@keyframes ysUnderlineGrow {
  from { width: 0%; }
  to { width: 140px; }
}

/* Responsive */
@media (max-width: 768px) {
  .ys-logistics-audience-title {
    font-size: 2.1rem;
  }
}

/* =====================================================
    LOGISTICS ERP – PROBLEMS WE SOLVE
===================================================== */

.yp-problem-zone {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.yp-problem-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.yp-problem-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px;
}

.yp-problem-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(28px);
  animation: ypFadeUp .8s ease forwards;
}

.yp-problem-subtitle {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #475569;

  opacity: 0;
  transform: translateY(18px);
  animation: ypFadeUp .9s ease forwards;
  animation-delay: .15s;
}

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

.yp-problem-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =====================================================
   ROW
===================================================== */

.yp-problem-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 26px 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(2,6,23,.08);
  border-left: 5px solid #ef4444;

  opacity: 0;
  transform: translateX(-30px);
  animation: ypRowIn .7s ease forwards;
}

/* stagger */
.yp-problem-row:nth-child(1) { animation-delay: .2s; }
.yp-problem-row:nth-child(2) { animation-delay: .35s; }
.yp-problem-row:nth-child(3) { animation-delay: .5s; }
.yp-problem-row:nth-child(4) { animation-delay: .65s; }
.yp-problem-row:nth-child(5) { animation-delay: .8s; }
.yp-problem-row:nth-child(6) { animation-delay: .95s; }

/* =====================================================
   SIGNAL DOT
===================================================== */

.yp-problem-signal {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ef4444;
  margin-top: 8px;
  position: relative;
}

/* pulse animation */
.yp-problem-signal::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(239,68,68,.3);
  animation: ypPulse 2s infinite;
}

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

.yp-problem-text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.yp-problem-text p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   HOVER – PROBLEM EMPHASIS
===================================================== */

.yp-problem-row:hover {
  transform: translateX(0) scale(1.01);
  box-shadow: 0 18px 40px rgba(239,68,68,.25);
}

/* =====================================================
   FOOTER
===================================================== */

.yp-problem-footer {
  margin-top: 90px;
  text-align: center;
}

.yp-problem-footer p {
  font-size: 1.2rem;
  color: #334155;
}

.yp-problem-footer strong {
  color: #1f6fe5;
  font-weight: 900;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes ypFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ypRowIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ypPulse {
  0% { opacity: .6; }
  70% { opacity: 0; }
  100% { opacity: 0; }
}

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

@media (max-width: 640px) {
  .yp-problem-title {
    font-size: 2.2rem;
  }

  .yp-problem-row {
    padding: 22px 20px;
    gap: 18px;
  }
}



/* =====================================================
  CORE FUNCTIONALITY - LOGISTICS ERP
===================================================== */

.ys-logistics-flip {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

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

.ys-flip-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 14px;
}

/* ---------------------------------
 Grid Layout (Desktop Default)
---------------------------------- */
.ys-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Columns for Desktop */
  gap: 20px;
  perspective: 1200px;
}

/* ---------------------------------
 Card Logic
---------------------------------- */
.ys-flip-card {
  height: 220px;
  cursor: pointer;
}

.ys-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Flip Trigger */
.ys-flip-card:hover .ys-flip-inner,
.ys-flip-card:active .ys-flip-inner, 
.ys-flip-card:focus .ys-flip-inner {
  transform: rotateY(180deg);
}

.ys-flip-front,
.ys-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ys-flip-front {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.ys-flip-back {
  background: #ffffff;
  color: #1e293b;
  transform: rotateY(180deg);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.1);
  border: 1px solid #e2e8f0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */

/* --- Laptop / Small Desktop (up to 1200px) --- */
@media (max-width: 1200px) {
  .ys-flip-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
  }
}

/* --- Tablet (up to 992px) --- */
@media (max-width: 992px) {
  .ys-flip-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 15px;
  }
  .ys-flip-title {
    font-size: 2rem;
  }
}

/* --- Mobile (up to 576px) --- */
@media (max-width: 576px) {
  .ys-logistics-flip {
    padding: 50px 0;
  }
  
  .ys-flip-grid {
    grid-template-columns: 1fr; /* 1 Column (Full Width) */
    gap: 20px;
  }

  .ys-flip-card {
    height: 160px; /* Shorter cards look better on mobile */
  }

  .ys-flip-title {
    font-size: 1.75rem;
  }

  /* Ensure the flip is smooth on touch devices */
  .ys-flip-inner {
    transition: transform 0.5s ease-in-out;
  }
}

/* =====================================================
   LOGISTICS ERP – FEATURE ORBIT SYSTEM
===================================================== */

.lx-feature-orbit {
  padding: 60px 20px;
  background:
    radial-gradient(circle at top left, #ffffff, transparent 40%),
    radial-gradient(circle at bottom right, #ede9fe, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.lx-shell {
  max-width: 1200px;
  margin: auto;
}

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

.lx-feature-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.lx-feature-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  animation: lxTitleRise 0.9s ease forwards;
}

.lx-feature-subtitle {
  margin-top: 14px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  animation: lxFadeUp 1.2s ease forwards;
}

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

.lx-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  perspective: 1200px;
}

/* =====================================================
   FEATURE CARD
===================================================== */

.lx-feature-card {
  position: relative;
  padding: 40px 32px 38px;
  background: rgba(255,255,255,0.8);
  border-radius: 22px;
  box-shadow:
    0 10px 30px rgba(15,23,42,0.08),
    inset 0 0 0 1px rgba(148,163,184,0.15);
  transform-style: preserve-3d;
  animation: lxCardFloat 6s ease-in-out infinite;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

.lx-feature-card:nth-child(even) {
  animation-delay: 2.5s;
}

.lx-feature-card:hover {
  transform: translateY(-16px) rotateX(6deg) rotateY(-6deg);
  box-shadow:
    0 35px 80px rgba(30,58,138,0.2),
    inset 0 0 0 1px rgba(99,102,241,0.35);
}

/* =====================================================
   FEATURE INDEX
===================================================== */

.lx-feature-index {
  position: absolute;
  top: -16px;
  right: 22px;
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(99,102,241,0.12);
  transition: transform 0.4s ease;
}

.lx-feature-card:hover .lx-feature-index {
  transform: scale(1.1);
}

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

.lx-feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.lx-feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

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

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

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

@keyframes lxCardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@media (max-width: 768px) {
  .lx-feature-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   YS LOGISTICS NETWORK SYSTEM
===================================================== */

.ys-logistics-network {
  padding: 60px 20px;
  background:
    radial-gradient(circle at top left, #dbeafe, transparent 45%),
    radial-gradient(circle at bottom right, #ede9fe, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ys-logistics-network-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

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

.ys-logistics-network-content {
  animation: ysNetworkEnter 1s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-logistics-network-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 22px;
}

.ys-logistics-network-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 44px;
}

/* =====================================================
   FEATURE LIST
===================================================== */

.ys-logistics-network-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 28px;
}

.ys-logistics-network-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-24px);
  animation: ysNetworkPoint 0.7s ease forwards;
}

.ys-logistics-network-list li:nth-child(1) { animation-delay: .2s; }
.ys-logistics-network-list li:nth-child(2) { animation-delay: .35s; }
.ys-logistics-network-list li:nth-child(3) { animation-delay: .5s; }
.ys-logistics-network-list li:nth-child(4) { animation-delay: .65s; }
.ys-logistics-network-list li:nth-child(5) { animation-delay: .8s; }

.ys-logistics-check {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37,99,235,0.45);
  transition: transform 0.35s ease;
}

.ys-logistics-network-list li:hover .ys-logistics-check {
  transform: scale(1.15) rotate(10deg);
}

.ys-logistics-network-list strong {
  display: block;
  font-size: 1.05rem;
  color: #020617;
  margin-bottom: 4px;
}

.ys-logistics-network-list p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
}

/* =====================================================
   STATS
===================================================== */

.ys-logistics-network-stats {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.ys-logistics-stat {
  width: 220px;
  padding: 34px 20px;
  text-align: center;
  background: rgba(255,255,255,0.9);
  border-radius: 22px;
  box-shadow:
    0 14px 40px rgba(15,23,42,0.12),
    inset 0 0 0 1px rgba(148,163,184,0.2);
  animation: ysNetworkFloat 6s ease-in-out infinite;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

.ys-logistics-stat:nth-child(2) { animation-delay: 2s; }
.ys-logistics-stat:nth-child(3) { animation-delay: 4s; }

.ys-logistics-stat:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 35px 80px rgba(30,64,175,0.25),
    inset 0 0 0 1px rgba(99,102,241,0.35);
}

.ys-logistics-stat h3 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 8px;
}

.ys-logistics-stat span {
  font-size: 0.95rem;
  color: #475569;
}

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

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

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

@keyframes ysNetworkFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

@media (max-width: 992px) {
  .ys-logistics-network-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


/* =====================================================
   BUSINESS BENEFITS – LOGISTICS ERP (ADVANCED)
===================================================== */

.ys-logistics-benefits {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.ys-logistics-benefits-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.ys-logistics-benefits-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 90px;
}

.ys-logistics-benefits-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 18px;

  animation: ysTitleReveal 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-logistics-benefits-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #64748b;

  animation: ysFadeUp 1.1s ease forwards;
}

/* =====================================================
   FLOW / TIMELINE
===================================================== */

.ys-logistics-benefits-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
  padding-left: 40px;
}

/* Vertical backbone line */
.ys-logistics-benefits-flow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    #2563eb,
    #38bdf8,
    transparent
  );
  opacity: 0.4;
}

/* =====================================================
   BENEFIT ITEM
===================================================== */

.ys-benefit-item {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 12px 30px rgba(2, 6, 23, 0.06);
  transform: translateY(30px);
  opacity: 0;

  animation: ysItemReveal 0.8s ease forwards;
}

/* Stagger animation */
.ys-benefit-item:nth-child(1) { animation-delay: .1s; }
.ys-benefit-item:nth-child(2) { animation-delay: .2s; }
.ys-benefit-item:nth-child(3) { animation-delay: .3s; }
.ys-benefit-item:nth-child(4) { animation-delay: .4s; }
.ys-benefit-item:nth-child(5) { animation-delay: .5s; }
.ys-benefit-item:nth-child(6) { animation-delay: .6s; }
.ys-benefit-item:nth-child(7) { animation-delay: .7s; }
.ys-benefit-item:nth-child(8) { animation-delay: .8s; }

/* =====================================================
   SIGNAL DOT
===================================================== */

.ys-benefit-dot {
  position: relative;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(37, 99, 235, 0.6);

  animation: ysPulse 2s infinite;
}

/* Glow ring */
.ys-benefit-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  opacity: 0;
  animation: ysGlow 2s infinite;
}

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

.ys-benefit-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #0f172a;
}

/* =====================================================
   HOVER INTERACTION
===================================================== */

.ys-benefit-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 45px rgba(37, 99, 235, 0.18);
}

.ys-benefit-item:hover .ys-benefit-dot {
  background: #38bdf8;
}

/* =====================================================
   FOOTER
===================================================== */

.ys-logistics-benefits-footer {
  margin-top: 90px;
  text-align: center;
}

.ys-logistics-benefits-footer p {
  font-size: 1.2rem;
  color: #334155;
}

.ys-logistics-benefits-footer strong {
  color: #2563eb;
  font-weight: 800;
}

/* =====================================================
   KEYFRAMES
===================================================== */

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

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

@keyframes ysItemReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

@keyframes ysGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

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

@media (max-width: 768px) {
  .ys-logistics-benefits-flow {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .ys-logistics-benefits-flow::before {
    display: none;
  }

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


/* =====================================================
   USE CASES – LOGISTICS ERP (ADVANCED)
===================================================== */

.yl-usecases-zone {
  padding: 60px 0;
  background:
    linear-gradient(135deg, #f8fafc 0%, #ffffff 60%),
    radial-gradient(circle at bottom left, rgba(14,165,233,.15), transparent 45%);
  position: relative;
  overflow: hidden;
}

.yl-usecases-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.yl-usecases-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.yl-usecases-title {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #020617;
  margin-bottom: 16px;

  animation: ylTitleSlide 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.yl-usecases-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  animation: ylFadeSoft 1.2s ease forwards;
}

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

.yl-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* =====================================================
   CARD
===================================================== */

.yl-usecase-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    0 10px 28px rgba(2, 6, 23, 0.08);
  overflow: hidden;

  transform: translateY(40px) scale(.96);
  opacity: 0;
  animation: ylCardReveal .9s ease forwards;
}

/* Stagger reveal */
.yl-usecase-card:nth-child(1) { animation-delay: .1s; }
.yl-usecase-card:nth-child(2) { animation-delay: .25s; }
.yl-usecase-card:nth-child(3) { animation-delay: .4s; }
.yl-usecase-card:nth-child(4) { animation-delay: .55s; }
.yl-usecase-card:nth-child(5) { animation-delay: .7s; }

/* =====================================================
   INDEX BADGE
===================================================== */

.yl-usecase-index {
  display: inline-block;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #0ea5e9;
  margin-bottom: 14px;
}

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

.yl-usecase-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.yl-usecase-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* =====================================================
   HOVER MOTION
===================================================== */

.yl-usecase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(14,165,233,0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.yl-usecase-card:hover::before {
  transform: translateX(100%);
}

.yl-usecase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(14,165,233,0.25);
}

/* =====================================================
   KEYFRAMES
===================================================== */

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

@keyframes ylFadeSoft {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ylCardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 992px) {
  .yl-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .yl-usecases-grid {
    grid-template-columns: 1fr;
  }

  .yl-usecases-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   PLATFORM ADVANTAGES – ADVANCED ADOPTION UI
===================================================== */

.yp-platform-advantages {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(223, 233, 255, 0.18), transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(14,165,233,.15), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* subtle moving noise layer */
.yp-platform-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.04) 0%, transparent 60%);
  animation: ypBgShift 12s linear infinite;
  pointer-events: none;
}

.yp-platform-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.yp-platform-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 100px;
}

.yp-platform-title {
  font-size: 2.9rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #020617;
  margin-bottom: 18px;

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

.yp-platform-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #64748b;

  opacity: 0;
  transform: translateY(20px);
  animation: ypSubReveal 1.2s ease forwards;
  animation-delay: .2s;
}

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

.yp-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

/* =====================================================
   CARD – GLASS + DEPTH SYSTEM
===================================================== */

.yp-platform-card {
  position: relative;
  padding: 42px 36px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.85),
      rgba(255,255,255,.65)
    );
  backdrop-filter: blur(8px);
  box-shadow:
    0 18px 45px rgba(2,6,23,.08);
  overflow: hidden;

  opacity: 0;
  transform:
    translateY(50px)
    scale(.94);
  animation: ypCardEnter 0.9s ease forwards;
}

/* staggered appearance */
.yp-platform-card:nth-child(1) { animation-delay: .1s; }
.yp-platform-card:nth-child(2) { animation-delay: .25s; }
.yp-platform-card:nth-child(3) { animation-delay: .4s; }
.yp-platform-card:nth-child(4) { animation-delay: .55s; }
.yp-platform-card:nth-child(5) { animation-delay: .7s; }
.yp-platform-card:nth-child(6) { animation-delay: .85s; }
.yp-platform-card:nth-child(7) { animation-delay: 1s; }

/* animated edge accent */
.yp-platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(37,99,235,.18),
      transparent 70%
    );
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity .4s ease;
}

/* glowing base line */
.yp-platform-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #2563eb,
    #38bdf8,
    transparent
  );
  opacity: 0;
  transition: opacity .4s ease;
}

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

.yp-platform-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.yp-platform-card p {
  font-size: 1.03rem;
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

/* =====================================================
   HOVER – MAGNETIC DEPTH
===================================================== */

.yp-platform-card:hover {
  transform:
    translateY(-12px)
    scale(1.03);
  box-shadow:
    0 35px 70px rgba(37,99,235,.28);
}

.yp-platform-card:hover::before {
  opacity: 1;
  animation: ypLightSweep .9s ease;
}

.yp-platform-card:hover::after {
  opacity: 1;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes ypTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ypSubReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ypCardEnter {
  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}

@keyframes ypLightSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes ypBgShift {
  0% { background-position: 0 0; }
  100% { background-position: 300px 300px; }
}

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

@media (max-width: 992px) {
  .yp-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .yp-platform-grid {
    grid-template-columns: 1fr;
  }

  .yp-platform-title {
    font-size: 2.2rem;
  }
}

/* =====================================================
   PLATFORM ADVANTAGES – LIGHT SYSTEM STYLE
===================================================== */

.yp-platform-advantages {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

/* subtle blueprint grid */
.yp-platform-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  animation: ypGridDrift 22s linear infinite;
  pointer-events: none;
}

.yp-platform-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

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

.yp-platform-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #020617;
  margin-bottom: 18px;

  opacity: 0;
  clip-path: inset(0 0 100% 0);
  animation: ypScanReveal .9s ease forwards;
}

.yp-platform-intro {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.9;

  opacity: 0;
  animation: ypSoftAppear .8s ease forwards;
  animation-delay: .3s;
}

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

.yp-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

/* =====================================================
   CARD – LIGHT BLUE SYSTEM NODE
===================================================== */

.yp-platform-card {
  position: relative;
  padding: 38px 34px 42px;
  border-radius: 14px;
  background:
    linear-gradient(
      180deg,
      #60a5fa,
      #3b82f6
    );
  box-shadow:
    0 14px 30px rgba(37,99,235,.25);
  overflow: hidden;

  opacity: 0;
  transform: scale(.96);
  animation: ypNodeBoot .7s ease forwards;
}

/* staggered system load */
.yp-platform-card:nth-child(1) { animation-delay: .2s; }
.yp-platform-card:nth-child(2) { animation-delay: .35s; }
.yp-platform-card:nth-child(3) { animation-delay: .5s; }
.yp-platform-card:nth-child(4) { animation-delay: .65s; }
.yp-platform-card:nth-child(5) { animation-delay: .8s; }
.yp-platform-card:nth-child(6) { animation-delay: .95s; }
.yp-platform-card:nth-child(7) { animation-delay: 1.1s; }

/* scanning activation line */
.yp-platform-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff,
    transparent
  );
  opacity: 0;
}

/* =====================================================
   TEXT – WHITE
===================================================== */

.yp-platform-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.yp-platform-card p {
  font-size: 1.03rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  opacity: .95;
}

/* =====================================================
   HOVER – SYSTEM ACTIVATION
===================================================== */

.yp-platform-card:hover::before {
  opacity: 1;
  animation: ypScanLine 1.1s linear infinite;
}

.yp-platform-card:hover {
  box-shadow:
    0 26px 55px rgba(37,99,235,.45);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes ypScanReveal {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ypSoftAppear {
  to {
    opacity: 1;
  }
}

@keyframes ypNodeBoot {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ypScanLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes ypGridDrift {
  from { background-position: 0 0; }
  to { background-position: 42px 42px; }
}

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

@media (max-width: 992px) {
  .yp-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .yp-platform-grid {
    grid-template-columns: 1fr;
  }

  .yp-platform-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   YUVAASOFT ECOSYSTEM - BASE STYLES
   ===================================================== */
.ye-ecosystem-zone {
  padding: 60px 0;
  background-color: #ffffff;
}

.ye-chip {
  background: #f1f5f9;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ye-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 20px;
  color: #0f172a;
}

.ye-title span {
  color: #2563eb;
  display: block;
}

/* =====================================================
   ORBIT LAYOUT (Desktop & Laptop Default)
   ===================================================== */
.ye-orbit {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cbd5e1; /* Decorative outer ring */
  border-radius: 50%;
}

.ye-core {
  background: #2563eb;
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.ye-node {
  position: absolute;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

/* Precise Circular Positioning */
.ye-node.top    { top: 0; transform: translateY(-50%); }
.ye-node.bottom { bottom: 0; transform: translateY(50%); }
.ye-node.left   { left: 0; transform: translateX(-50%); }
.ye-node.right  { right: 0; transform: translateX(50%); }

/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */

/* --- Laptop (up to 1024px) --- */
@media (max-width: 1024px) {
  .ye-orbit {
    width: 400px;
    height: 400px;
  }
  .ye-title { font-size: 2.2rem; }
}

/* --- Tablet (up to 768px) --- */
@media (max-width: 768px) {
  .ye-orbit {
    width: 100%;
    height: auto; /* Allow height to grow with content */
    border: none; /* Hide the dashed ring */
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
  }

  /* Force the Hub to stay at the top */
  .ye-core {
    order: 1;
    margin-bottom: 30px;
    width: 150px;
    height: 150px;
  }

  /* Reset all Nodes from Absolute to Static/Relative */
  .ye-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    
    width: 90%;
    max-width: 300px;
    text-align: center;
    order: 2; /* Nodes follow the Core */
  }

  .ye-title { font-size: 1.8rem; }
}

/* --- Mobile (up to 480px) --- */
@media (max-width: 480px) {
  .ye-ecosystem-zone { padding: 40px 0; }
  
  .ye-title { font-size: 1.5rem; }
  
  .ye-core {
    width: 130px;
    height: 130px;
    font-size: 14px;
  }
  
  .ye-node {
    font-size: 14px;
    padding: 10px;
  }
  
  .ye-ecosystem-caption {
    font-size: 14px;
    padding: 0 15px;
  }
}

/* =====================================================
   DEMO & ONBOARDING – ASSISTED LAUNCH STYLE
===================================================== */

.yl-launch-zone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.yl-launch-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.yl-launch-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.yl-launch-title {
  font-size: 2.9rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 22px;

  opacity: 0;
  transform: translateY(30px);
  animation: ylRevealUp .8s ease forwards;
}

.yl-launch-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 40px;

  opacity: 0;
  transform: translateY(20px);
  animation: ylRevealUp .9s ease forwards;
  animation-delay: .15s;
}

.yl-launch-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(20px);
  animation: ylRevealUp .9s ease forwards;
  animation-delay: .3s;
}

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

.yl-launch-btn {
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.yl-launch-btn.primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37,99,235,.35);
}

.yl-launch-btn.ghost {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.yl-launch-btn:hover {
  transform: translateY(-4px);
}

.yl-launch-btn.primary:hover {
  box-shadow: 0 22px 45px rgba(37,99,235,.45);
}

/* =====================================================
   RIGHT PANEL (SUPPORT MODULES)
===================================================== */

.yl-launch-panel {
  position: relative;
  padding: 40px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #eff6ff, #ffffff);
  box-shadow:
    0 30px 70px rgba(2,6,23,.12);
}

/* panel glow */
.yl-launch-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(37,99,235,.18),
      transparent
    );
  opacity: .7;
}

/* =====================================================
   PANEL ITEMS
===================================================== */

.yl-panel-item {
  position: relative;
  padding: 18px 22px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #ffffff;
  font-weight: 700;
  color: #0f172a;
  box-shadow:
    0 10px 24px rgba(2,6,23,.08);

  opacity: 0;
  transform: translateX(30px);
  animation: ylPanelSlide .7s ease forwards;
}

/* staggered panel items */
.yl-panel-item:nth-child(1) { animation-delay: .4s; }
.yl-panel-item:nth-child(2) { animation-delay: .55s; }
.yl-panel-item:nth-child(3) { animation-delay: .7s; }
.yl-panel-item:nth-child(4) { animation-delay: .85s; }
.yl-panel-item:nth-child(5) { animation-delay: 1s; }

.yl-panel-item:last-child {
  margin-bottom: 0;
}

/* subtle hover */
.yl-panel-item:hover {
  transform: translateX(6px);
  box-shadow:
    0 16px 36px rgba(37,99,235,.25);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes ylRevealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ylPanelSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 992px) {
  .yl-launch-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 640px) {
  .yl-launch-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   FAQ – MODERN ENTERPRISE STYLE
===================================================== */

.yf-faq-zone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.yf-faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.yf-faq-head {
  text-align: center;
  margin-bottom: 80px;
}

.yf-faq-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 16px;

  opacity: 0;
  transform: translateY(26px);
  animation: yfFadeUp .8s ease forwards;
}

.yf-faq-intro {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.9;

  opacity: 0;
  transform: translateY(16px);
  animation: yfFadeUp .9s ease forwards;
  animation-delay: .15s;
}

/* =====================================================
   FAQ LIST
===================================================== */

.yf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =====================================================
   FAQ ITEM
===================================================== */

.yf-faq-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 12px 30px rgba(2,6,23,.08);
  overflow: hidden;

  opacity: 0;
  transform: translateY(24px);
  animation: yfItemIn .7s ease forwards;
}

/* stagger */
.yf-faq-item:nth-child(1) { animation-delay: .1s; }
.yf-faq-item:nth-child(2) { animation-delay: .25s; }
.yf-faq-item:nth-child(3) { animation-delay: .4s; }
.yf-faq-item:nth-child(4) { animation-delay: .55s; }
.yf-faq-item:nth-child(5) { animation-delay: .7s; }

/* =====================================================
   SUMMARY (QUESTION)
===================================================== */

.yf-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 28px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.yf-faq-item summary::-webkit-details-marker {
  display: none;
}

/* =====================================================
   ICON
===================================================== */

.yf-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.yf-faq-icon::before,
.yf-faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #2563eb;
  transition: transform .3s ease;
}

.yf-faq-icon::before {
  width: 18px;
  height: 2px;
}

.yf-faq-icon::after {
  width: 2px;
  height: 18px;
}

/* =====================================================
   ANSWER
===================================================== */

.yf-faq-item p {
  padding: 0 28px 26px;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
}

/* =====================================================
   OPEN STATE
===================================================== */

.yf-faq-item[open] {
  box-shadow:
    0 20px 45px rgba(37,99,235,.25);
}

.yf-faq-item[open] .yf-faq-icon::after {
  transform: scaleY(0);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes yfFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes yfItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 640px) {
  .yf-faq-title {
    font-size: 2.2rem;
  }

  .yf-faq-item summary {
    font-size: 1.05rem;
  }
}


/* =====================================================
   FINAL CTA – ENTERPRISE CONVERSION STYLE
===================================================== */

.yc-final-cta {
  padding: 60px 0;
  background: #1f6fe5;
  position: relative;
  overflow: hidden;
}

/* subtle animated light sweep */
.yc-final-cta::before {
  content: "";
  position: absolute;
  inset: -50%;
}

/* =====================================================
   WRAPPER
===================================================== */

.yc-final-wrap {
  margin-left: 150px;
  position: relative;
  z-index: 1;
}

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

.yc-final-content {
  text-align: left;
  color: #ffffff;
}

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

.yc-final-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  margin-bottom: 22px;
  line-height: 1.15;

  opacity: 0;
  transform: translateY(30px);
  animation: ycFadeUp .8s ease forwards;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.yc-final-desc {
  font-size: 1.2rem;
  line-height: 1.9;
  max-width: 820px;
  color: rgba(255,255,255,.95);
  margin-bottom: 36px;

  opacity: 0;
  transform: translateY(20px);
  animation: ycFadeUp .9s ease forwards;
  animation-delay: .15s;
}

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

.yc-final-actions {
  display: flex;
  justify-content: left;
  gap: 26px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(20px);
  animation: ycFadeUp .9s ease forwards;
  animation-delay: .3s;
}

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

.yc-cta-btn {
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease,
    color .3s ease;
}

/* primary */
.yc-cta-btn.solid {
  background: #ffffff;
  color: #1f6fe5;
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
}

/* secondary */
.yc-cta-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

/* hover */
.yc-cta-btn:hover {
  transform: translateY(-5px);
}

.yc-cta-btn.solid:hover {
  box-shadow: 0 26px 55px rgba(0,0,0,.3);
}

.yc-cta-btn.outline:hover {
  background: #ffffff;
  color: #1f6fe5;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes ycFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE — ALL DEVICES (FIXED)
===================================================== */

/* SMALL PHONES */
@media (max-width: 480px) {
  .yc-final-cta {
    padding: 48px 20px;
  }

  .yc-final-wrap {
    margin-left: 0;
    max-width: 100%;
  }

  .yc-final-content {
    text-align: center;
  }

  .yc-final-title {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .yc-final-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 320px;
    margin: 0 auto 28px;
  }

  .yc-final-actions {
    justify-content: center;
  }

  .yc-cta-btn {
    padding: 14px 26px;
    font-size: 0.95rem;
  }
}

/* PHONES & SMALL TABLETS */
@media (min-width: 481px) and (max-width: 768px) {
  .yc-final-cta {
    padding: 56px 30px;
  }

  .yc-final-wrap {
    margin-left: 0;
  }

  .yc-final-content {
    text-align: center;
  }

  .yc-final-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .yc-final-desc {
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
  }

  .yc-final-actions {
    justify-content: center;
  }
}

/* TABLETS & SMALL LAPTOPS */
@media (min-width: 769px) and (max-width: 1024px) {
  .yc-final-cta {
    padding: 60px 40px;
  }

  .yc-final-wrap {
    margin-left: 60px;
  }

  .yc-final-title {
    font-size: 2.6rem;
  }

  .yc-final-desc {
    font-size: 1.1rem;
  }
}

/* DESKTOPS */
@media (min-width: 1025px) and (max-width: 1440px) {
  .yc-final-wrap {
    margin-left: 120px;
  }

  .yc-final-title {
    font-size: 2.9rem;
  }
}

/* LARGE / 4K SCREENS */
@media (min-width: 1441px) {
  .yc-final-cta {
    padding: 80px 0;
  }

  .yc-final-wrap {
    margin-left: 180px;
  }

  .yc-final-title {
    font-size: 3.3rem;
  }

  .yc-final-desc {
    font-size: 1.25rem;
  }
}



/* -----------------------------------------Gofiniky Smart Desk--------------------------------------------- */
/* =====================================================
GOFINICKY SMARTDESK – ADVANCED HERO
===================================================== */

.gf-hero-zone {
  position: relative;
  padding: clamp(70px, 6vw, 70px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, #e0f2feaa, transparent 45%),
    radial-gradient(circle at 15% 85%, #f1f5f9, transparent 55%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

/* =====================================================
AMBIENT BACKGROUND
===================================================== */

.gf-hero-bg span {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  animation: gfOrbDrift 36s linear infinite;
}

.gf-hero-bg span:nth-child(1) {
  background: #bae6fd;
  top: -120px;
  left: -140px;
}

.gf-hero-bg span:nth-child(2) {
  background: #c7d2fe;
  bottom: -140px;
  right: -140px;
  animation-duration: 44s;
}

.gf-hero-bg span:nth-child(3) {
  background: #99f6e4;
  top: 35%;
  right: 12%;
  animation-duration: 52s;
}

@keyframes gfOrbDrift {
  50% { transform: translate(90px,-140px); }
}

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

.gf-hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =====================================================
LEFT CONTENT
===================================================== */

.gf-hero-content > * {
  opacity: 0;
  transform: translateY(26px);
  animation: gfReveal .9s cubic-bezier(.22,.61,.36,1) forwards;
}

.gf-hero-badge { animation-delay: .1s; }
.gf-hero-title { animation-delay: .25s; }
.gf-hero-description { animation-delay: .4s; }
.gf-hero-subtext { animation-delay: .55s; }
.gf-hero-actions { animation-delay: .7s; }

@keyframes gfReveal {
  to { opacity: 1; transform: translateY(0); }
}

.gf-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #e0f2fe, #ecfeff);
  color: #0369a1;
  font-weight: 700;
  font-size: .82rem;
  border-radius: 999px;
  margin-bottom: 22px;
}

.gf-hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  color: #020617;
  margin-bottom: 24px;
}

.gf-hero-title span {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gf-hero-description {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #475569;
}

.gf-hero-subtext {
  font-size: .95rem;
  color: #64748b;
  margin-top: 12px;
}

/* Buttons */
.gf-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.gf-btn {
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gf-btn-primary {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  box-shadow: 0 18px 42px rgba(37,99,235,.35);
}

.gf-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(37,99,235,.45);
}

.gf-btn-outline {
  border: 1.8px solid #c7d2fe;
  color: #1e40af;
  background: #fff;
}

.gf-btn-outline:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

/* =====================================================
RIGHT SIDE – ULTRA ADVANCED AI HUB
===================================================== */

.gf-hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

/* Hub container */
.gf-ai-hub {
  position: relative;
  width: 420px;
  height: 420px;
}

/* Core */
.gf-ai-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 170px;
  height: 170px;
  border-radius: 100px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 50px 140px rgba(37,99,235,.55);
  animation: coreFloat 8s ease-in-out infinite;
}

.gf-ai-core strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.gf-ai-core small {
  font-size: .7rem;
  opacity: .9;
}

.gf-ai-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(37,99,235,.55), transparent 70%);
  filter: blur(80px);
  animation: glowPulse 6s ease-in-out infinite;
  z-index: -1;
}

/* Modules */
.gf-ai-module {
  position: absolute;
  width: 150px;
  padding: 16px 18px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15,23,42,.2);
  text-align: center;
  animation: moduleDrift 5s ease-in-out infinite;
}

.gf-ai-module span {
  font-size: .7rem;
  color: #64748b;
}

.gf-ai-module strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: #020617;
}

.gf-ai-module small {
  font-size: .7rem;
  color: #16a34a;
}

/* =====================================================
INVISIBLE ORBIT POSITIONS – ADVANCED ANIMATION
===================================================== */

.gf-ai-hub {
  position: relative;
  width: 420px;
  height: 420px;
  transform-style: preserve-3d;
}

/* AI MODULE BASE STYLES */
.gf-ai-module {
  position: absolute;
  padding: 18px 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15,23,42,.2);
  text-align: center;
  transform: scale(0.9);
  animation: moduleFloat 9s cubic-bezier(.22,.61,.36,1) infinite; /* Main animation */
}

/* Module Title and Content */
.gf-ai-module span {
  font-size: .75rem;
  color: #64748b;
}

.gf-ai-module strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #020617;
}

.gf-ai-module small {
  font-size: .75rem;
  color: #16a34a;
}

/* Positioning: Invisible Orbit Path */
.mod-leads { top: 0%; left: 34%; transform: translateX(-50%); }
.mod-followups { right: -14%; top: 40%; transform: translateY(-50%);  }
.mod-billing { bottom: 0%; left: 34%; transform: translateX(-50%);  }
.mod-score { left: -14%; top: 40%; transform: translateY(-50%) ; }

/* ===============================
MODULE ANIMATIONS – ADVANCED
================================ */

@keyframes moduleFloat {
  0%, 100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.1) translateY(-16px);
  }
  50% {
    opacity: 0.85;
    transform: scale(1) translateY(12px);
  }
  75% {
    opacity: 1;
    transform: scale(1.05) translateY(-8px);
  }
}

/* Adding staggered delays for each module */
.mod-followups { animation-delay: 1s; }
.mod-billing { animation-delay: 3s; }
.mod-score { animation-delay: 5s; }
.mod-leads { animation-delay: 7s; }

/* ===============================
MOBILE STACKING AND ANIMATION
================================ */
@media (max-width: 768px) {
  .gf-ai-hub {
    width: 100%;
    height: auto;
    display: grid;
    gap: 12px;
    margin-top: 50px;
    justify-items: center;
  }

  /* Adjust sizes and scale on mobile */
  .gf-ai-module {
    width: 80%;
    max-width: 400px;
    transform: none;
    animation: moduleFloat 9s cubic-bezier(.22,.61,.36,1) infinite;
  }

  .mod-leads,
  .mod-followups,
  .mod-billing,
  .mod-score {
    transform: none;
  }
}

/* =====================================================
ACCESSIBILITY – REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  .gf-ai-module {
    animation: none !important;
    transform: none !important;
  }
}

/* =====================================================
RESPONSIVE (MOBILE = APP STYLE STACK)
===================================================== */

@media (max-width: 900px) {
  .gf-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gf-hero-actions {
    justify-content: center;
  }

  .gf-ai-hub {
    width: 100%;
    height: auto;
    display: grid;
    gap: 14px;
    margin-top: 48px;
  }

  .gf-ai-core,
  .gf-ai-module {
    position: relative;
    inset: auto;
    width: 55%;
    animation: none;
  }
}

/* =====================================================
ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transform: none !important;
  }
}


/* =====================================================
 WHO SMARTDESK IS FOR – ADVANCED STYLES
===================================================== */

.sd-audience-zone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.sd-audience-shell {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* Header */
.sd-audience-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.sd-audience-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  animation: sdTitleRise 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.sd-audience-title span {
  color: #2563eb;
}

.sd-audience-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  animation: sdFadeSoft 1.1s ease forwards;
}

/* Grid */
.sd-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

/* Item */
.sd-audience-item {
  position: relative;
  padding: 28px 26px 28px 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  animation: sdCardReveal 0.9s ease forwards;
}

.sd-audience-item:nth-child(1) { animation-delay: 0.1s; }
.sd-audience-item:nth-child(2) { animation-delay: 0.25s; }
.sd-audience-item:nth-child(3) { animation-delay: 0.4s; }
.sd-audience-item:nth-child(4) { animation-delay: 0.55s; }
.sd-audience-item:nth-child(5) { animation-delay: 0.7s; }

/* Animated Line */
.sd-audience-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #2563eb, #38bdf8);
  animation: sdLineGrow 1s ease forwards;
  animation-delay: inherit;
}

.sd-audience-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #020617;
}

.sd-audience-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

/* Hover Motion */
.sd-audience-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(37,99,235,0.18);
}

/* Footer */
.sd-audience-footer {
  margin-top: 60px;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
  animation: sdFadeSoft 1.3s ease forwards;
}

/* Animations */
@keyframes sdTitleRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sdFadeSoft {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sdCardReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sdLineGrow {
  to { height: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
  .sd-audience-title {
    font-size: 2.1rem;
  }
}


/* =====================================================
 SMARTDESK PROBLEMS – PREMIUM UI
===================================================== */

.sd-problemverse {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Soft animated background */
.sd-problemverse-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(99,102,241,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16,185,129,0.12), transparent 45%);
  animation: sdFloatBg 18s linear infinite;
  z-index: 0;
}

@keyframes sdFloatBg {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

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

.sd-problemverse-head {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.sd-problemverse-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #020617;
  margin-bottom: 18px;
  animation: sdTitleRise 0.9s ease forwards;
}

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

.sd-problemverse-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  animation: sdFade 1.2s ease forwards;
}

@keyframes sdFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.sd-problemverse-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* =====================================================
 PROBLEM CARD
===================================================== */

.sd-problem-node {
  position: relative;
  padding: 38px 32px;
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(2,6,23,0.06);
  box-shadow: 0 25px 60px rgba(2,6,23,0.08);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  opacity: 0;
  transform: translateY(40px);
  animation: sdCardIn 0.9s forwards;
}

@keyframes sdCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sd-problem-node:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 80px rgba(99,102,241,0.25);
}

/* Stagger delays */
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }
.delay-5 { animation-delay: .7s; }
.delay-6 { animation-delay: .85s; }

/* Index badge */
.sd-node-index {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #6366f1;
  background: rgba(99,102,241,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Content */
.sd-problem-node h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #020617;
}

.sd-problem-node p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
 FOOTER
===================================================== */

.sd-problemverse-footer {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 90px auto 0;
  text-align: center;
}

.sd-problemverse-footer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
}

/* =====================================================
 CORE KEY FEATURES 
===================================================== */
/* =====================================================
 SMARTDESK RESPONSIVE FEATURE ZONE
===================================================== */

.sdx-featurezone {
  background: radial-gradient(circle at top, #eef2ff, #ffffff 65%);
  font-family: 'Inter', sans-serif;
}

/* Header */
.sdx-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  color: #020617;
}

.sdx-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: #64748b;
  margin-top: 10px;
}

/* Center Hub */
.sdx-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(79,70,229,0.45);
  animation: sdxPulse 3.5s ease-in-out infinite;
}

/* Pulse */
@keyframes sdxPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =====================================================
 CARD
===================================================== */

.sdx-card {
  width: 100%;
  max-width: 220px;
  height: 150px;
  perspective: 1200px;
}

.sdx-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}

.sdx-card:hover .sdx-card-inner {
  transform: rotateY(180deg) translateY(-6px);
}

/* Front & Back */
.sdx-front,
.sdx-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 18px 50px rgba(2,6,23,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.sdx-front i {
  font-size: 1.6rem;
  color: #6366f1;
  margin-bottom: 8px;
}

.sdx-front h5 {
  font-weight: 800;
  font-size: 0.95rem;
  color: #020617;
}

/* Back */
.sdx-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
}

.sdx-back p {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 600;
}

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

/* Tablets */
@media (max-width: 991px) {
  .sdx-center {
    margin: 30px auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sdx-card {
    max-width: 260px;
    height: 160px;
  }

  .sdx-center {
    width: 140px;
    height: 140px;
  }
}

/* =====================================================
 SCALE ZONE – MULTI BRANCH / MULTI COMPANY
===================================================== */

.ys-scalezone {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: 'Inter', sans-serif;
}

/* LEFT CONTENT */
.ys-scalezone-content {
  max-width: 520px;
}

.ys-scalezone-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 18px;
  animation: ysFadeUp 0.9s ease forwards;
}

.ys-scalezone-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  animation: ysFadeUp 1.1s ease forwards;
}

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

.ys-scalezone-grid {
  display: grid;
  gap: 26px;
}

/* ITEM */
.ys-scalezone-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 18px 50px rgba(2,6,23,0.08);
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
  animation: ysSlideIn 0.9s ease forwards;
}

.ys-scalezone-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(99,102,241,0.25);
}

/* ICON */
.ys-scalezone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(99,102,241,0.15);
  color: #4f46e5;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

/* TEXT */
.ys-scalezone-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 6px;
}

.ys-scalezone-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

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

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

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

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

@media (max-width: 991px) {
  .ys-scalezone-content {
    text-align: center;
    margin: 0 auto;
  }
}


/* =====================================================
 BUSINESS BENEFITS – FLOW ZONE (NEW STYLE)
===================================================== */

.ys-flowzone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  font-family: 'Inter', sans-serif;
}

/* Header */
.ys-flowzone-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.ys-flowzone-intro {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
}

/* =====================================================
 FLOW RAIL
===================================================== */

.ys-flowzone-rail {
  position: relative;
  margin-top: 70px;
  padding-left: 48px;
}

/* Vertical line */
.ys-flowzone-rail::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    #6366f1,
    rgba(99,102,241,0.2)
  );
  animation: ysRailGrow 1.2s ease forwards;
}

@keyframes ysRailGrow {
  from { height: 0; }
  to { height: 100%; }
}

/* =====================================================
 FLOW STEP
===================================================== */

.ys-flowstep {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  margin-bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(2,6,23,0.06);
  box-shadow: 0 14px 40px rgba(2,6,23,0.08);
  transform: translateX(-20px);
  opacity: 0;
  animation: ysStepIn 0.7s ease forwards;
}

.ys-flowstep:nth-child(1) { animation-delay: .1s; }
.ys-flowstep:nth-child(2) { animation-delay: .2s; }
.ys-flowstep:nth-child(3) { animation-delay: .3s; }
.ys-flowstep:nth-child(4) { animation-delay: .4s; }
.ys-flowstep:nth-child(5) { animation-delay: .5s; }
.ys-flowstep:nth-child(6) { animation-delay: .6s; }
.ys-flowstep:nth-child(7) { animation-delay: .7s; }
.ys-flowstep:nth-child(8) { animation-delay: .8s; }

@keyframes ysStepIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Index bubble */
.ys-flowindex {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6366f1;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text */
.ys-flowstep p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

/* Hover expansion */
.ys-flowstep:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 28px 70px rgba(99,102,241,0.28);
}

/* =====================================================
 FOOTER
===================================================== */

.ys-flowzone-footer {
  margin-top: 80px;
}

.ys-flowzone-footer p {
  font-size: 1.1rem;
  font-weight: 800;
  color: #020617;
}

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

@media (max-width: 768px) {
  .ys-flowzone-rail {
    padding-left: 36px;
  }

  .ys-flowstep:hover {
    transform: translateY(-6px);
  }
}


/* =====================================================
 SPLIT ZONE – IMAGE + CONTENT SECTIONS
===================================================== */

.ys-splitzone {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: 'Inter', sans-serif;
}

.ys-split-alt {
  background: #ffffff;
}

/* Titles */
.ys-split-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 28px;
  animation: ysFadeUp 0.9s ease forwards;
}

/* List */
.ys-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.ys-split-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.6;
  animation: ysFadeUp 1.1s ease forwards;
}

.ys-split-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f46e5;
  font-weight: 900;
}

/* Image wrapper */
.ys-split-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(2,6,23,0.15);
  animation: ysImageFloat 1s ease forwards;
}

.ys-split-image img {
  width: 100%;
  display: block;
}

/* Image accent */
.ys-image-right::after,
.ys-image-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), transparent);
}

/* Animations */
@keyframes ysFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 991px) {
  .ys-split-title {
    text-align: center;
  }

  .ys-split-list {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* =====================================================
 ECOSPACE – YUVAASOFT ECOSYSTEM
===================================================== */

.ys-ecospace {
  padding: 60px 0;
  background:
    radial-gradient(circle at top, rgba(99,102,241,0.12), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

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

.ys-ecospace-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 18px;
  animation: ysEcosFade 0.9s ease forwards;
}

.ys-ecospace-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  animation: ysEcosFade 1.1s ease forwards;
}

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

/* =====================================================
 ECOSYSTEM LANE
===================================================== */

.ys-ecospace-lane {
  margin: 90px auto 0;
  display: flex;
  justify-content: center;
  gap: 34px;
  position: relative;
  flex-wrap: wrap;
}

/* Animated baseline */
.ys-ecospace-lane::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  right: -5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99,102,241,0.4),
    transparent
  );
  animation: ysEcosWave 4s linear infinite;
}

@keyframes ysEcosWave {
  0% { opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

/* =====================================================
 NODES
===================================================== */

.ys-ecospace-node {
  position: relative;
  min-width: 160px;
  padding: 26px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 24px 70px rgba(2,6,23,0.12);
  text-align: center;
  font-weight: 800;
  color: #2c53ff;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  animation: ysNodeRise 0.8s ease forwards;
}

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

/* Primary node */
.ys-ecospace-node.primary {
  background: #ffffff;
  color: #2c53ff;
  box-shadow: 0 35px 100px rgba(79,70,229,0.45);
  transform: scale(1.08);
}

/* Hover interaction */
.ys-ecospace-node:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 40px 120px rgba(99,102,241,0.35);
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
}

/* Glow pulse for primary */
.ys-ecospace-node.primary::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
  opacity: 0;
  animation: ysGlowPulse 3.2s ease-in-out infinite;
}

@keyframes ysGlowPulse {
  0%,100% { opacity: 0.2; }
  50%, ✔ { opacity: 0.6; }
}

/* =====================================================
 FOOTER
===================================================== */

.ys-ecospace-footer {
  margin-top: 90px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.ys-ecospace-footer p {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8;
  color: #020617;
}

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

@media (max-width: 991px) {
  .ys-ecospace-lane {
    gap: 24px;
  }

  .ys-ecospace-lane::before {
    display: none;
  }
}


/* =====================================================
 DEMO & ONBOARDING – GUIDED ADOPTION
===================================================== */

.ys-onboardzone {
  padding: 60px 0;
  background:
    radial-gradient(circle at right top, rgba(99,102,241,0.12), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: 'Inter', sans-serif;
}

/* =====================================================
 LEFT CONTENT
===================================================== */

.ys-onboard-content {
  max-width: 480px;
}

.ys-onboard-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 20px;
  animation: ysFadeUp 0.9s ease forwards;
}

.ys-onboard-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  animation: ysFadeUp 1.1s ease forwards;
}

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

.ys-onboard-cta {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ys-btn-primary {
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg,#1f6fe5);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(29, 112, 255, 0.45);
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
}

.ys-btn-primary:hover {
  transform: translateY(-4px);
  color: #ffff;
  box-shadow: 0 30px 80px rgba(255, 255, 255, 0.6);
}

.ys-btn-secondary {
  padding: 14px 28px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,0.12);
  color: #020617;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ys-btn-secondary:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}

/* =====================================================
 RIGHT TRACK (STEPS)
===================================================== */

.ys-onboard-track {
  position: relative;
  display: grid;
  gap: 20px;
  padding-left: 36px;
}

/* Vertical guide */
.ys-onboard-track::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    #6366f1,
    rgba(99,102,241,0.2)
  );
  animation: ysTrackGrow 1.2s ease forwards;
}

@keyframes ysTrackGrow {
  from { height: 0; }
  to { height: 100%; }
}

/* Step */
.ys-onboard-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(2,6,23,0.06);
  box-shadow: 0 16px 45px rgba(2,6,23,0.08);
  transform: translateX(-18px);
  opacity: 0;
  animation: ysStepReveal 0.7s ease forwards;
}

.ys-onboard-step:nth-child(1) { animation-delay: .1s; }
.ys-onboard-step:nth-child(2) { animation-delay: .25s; }
.ys-onboard-step:nth-child(3) { animation-delay: .4s; }
.ys-onboard-step:nth-child(4) { animation-delay: .55s; }
.ys-onboard-step:nth-child(5) { animation-delay: .7s; }

@keyframes ysStepReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Index */
.ys-step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #4f46e5;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text */
.ys-onboard-step p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

/* Hover */
.ys-onboard-step:hover {
  transform: translateX(8px);
  box-shadow: 0 28px 70px rgba(99,102,241,0.28);
}

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

@media (max-width: 991px) {
  .ys-onboard-content {
    text-align: center;
    margin: 0 auto;
  }

  .ys-onboard-cta {
    justify-content: center;
  }

  .ys-onboard-step:hover {
    transform: translateY(-6px);
  }
}


/* =====================================================
 FAQ FLOW – ADVANCED SaaS STYLE
===================================================== */

.ys-faqflow {
  padding: 60px 0;
  background:
    radial-gradient(circle at top, rgba(99,102,241,0.12), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.ys-faqflow-head {
  max-width: 720px;
  margin: 0 auto 70px;
}

.ys-faqflow-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 14px;
  animation: ysFaqFadeUp 0.9s ease forwards;
}

.ys-faqflow-subtitle {
  font-size: 1.05rem;
  color: #475569;
  animation: ysFaqFadeUp 1.1s ease forwards;
}

/* =====================================================
 FAQ LIST
===================================================== */

.ys-faqflow-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* FAQ ITEM */
.ys-faqflow-item {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 18px 55px rgba(2,6,23,0.08);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

/* Remove default marker */
.ys-faqflow-item summary {
  list-style: none;
}

.ys-faqflow-item summary::-webkit-details-marker {
  display: none;
}

/* SUMMARY */
.ys-faqflow-item summary {
  cursor: pointer;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  font-size: 1rem;
  color: #020617;
  position: relative;
}

/* Icon */
.ys-faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #6366f1;
  position: relative;
  transition: transform 0.4s ease;
}

.ys-faq-icon::before,
.ys-faq-icon::after {
  content: "";
  position: absolute;
  background: #6366f1;
}

.ys-faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ys-faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* CONTENT */
.ys-faqflow-content {
  max-height: 0;
  opacity: 0;
  padding: 0 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.22,.61,.36,1);
}

.ys-faqflow-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin: 18px 0 26px;
}

/* =====================================================
 OPEN STATE
===================================================== */

.ys-faqflow-item[open] {
  box-shadow: 0 28px 90px rgba(99,102,241,0.28);
}

.ys-faqflow-item[open] .ys-faqflow-content {
  max-height: 200px;
  opacity: 1;
}

.ys-faqflow-item[open] .ys-faq-icon {
  transform: rotate(45deg);
}

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

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

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

@media (max-width: 768px) {
  .ys-faqflow-item summary {
    padding: 22px;
  }

  .ys-faqflow-content {
    padding: 0 22px;
  }
}


/* =====================================================
 FINAL CTA – CONVERSION FORCE
===================================================== */

.ys-ctaforce {
  position: relative;
  padding: 60px 20px;
  background:
    linear-gradient(135deg, #1f6fe5, #508aff);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* Animated light sweep */
.ys-ctaforce::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.18),
    transparent 70%
  );
  animation: ysCtaSweep 6s linear infinite;
}

@keyframes ysCtaSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* INNER PANEL */
.ys-ctaforce-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 20px 6px;
  text-align: left;
  animation: ysCtaRise 0.9s ease forwards;
}

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

/* CONTENT */
.ys-ctaforce-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 18px;
}

.ys-ctaforce-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  max-width: 1160px;
}

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

.ys-ctaforce-actions {
  display: flex;
  gap: 18px;
  justify-content: left;
  flex-wrap: wrap;
}

.ys-ctaforce-btn {
  position: relative;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}

/* Primary */
.ys-ctaforce-btn.primary {
  background: #ffffff;
  color: #1f6fe5;
  box-shadow: 0 20px 60px rgba(255,255,255,0.35);
}

.ys-ctaforce-btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(79,70,229,0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ys-ctaforce-btn.primary:hover::after {
  opacity: 1;
}

.ys-ctaforce-btn.primary:hover {
  transform: translateY(-6px) scale(1.05);
}

/* Secondary */
.ys-ctaforce-btn.secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: #ffffff;
}

.ys-ctaforce-btn.secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

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

@media (max-width: 768px) {
  .ys-ctaforce-inner {
    padding: 48px 28px;
  }

  .ys-ctaforce-actions {
    flex-direction: column;
  }
}




/*--------------------------------- GOFINICKY SPORTSSHOP POS – PRODUCT PAGE --------------------------------------------------------------- */

/* =====================================================
   GOFINICKY SPORTSSHOP POS – HERO STYLES
===================================================== */

.gfs-hero-zone {
  position: relative;
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top right, #eef2ff, transparent 45%),
    radial-gradient(circle at bottom left, #f8fafc, transparent 50%),
    #ffffff;
  overflow: hidden;
}

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

.gfs-hero-content {
  animation: gfsFadeUp 1s cubic-bezier(.22,.61,.36,1) both;
}

.gfs-hero-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .4px;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 20px;
  margin-bottom: 18px;
}

.gfs-hero-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #020617;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
}

.gfs-hero-title span {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gfs-hero-desc {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #475569;
  max-width: 560px;
  margin-bottom: 14px;
}

.gfs-hero-desc.muted {
  color: #64748b;
}

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

.gfs-hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gfs-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}

.gfs-btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37,99,235,.25);
}

.gfs-btn-primary:hover {
  transform: translateY(-3px);
  color: #f1f5f9;
  box-shadow: 0 18px 45px rgba(37,99,235,.35);
}

.gfs-btn-outline {
  background: #ffffff;
  color: #1d4ed8;
  border: 2px solid #dbeafe;
}

.gfs-btn-outline:hover {
  background: #eff6ff;
  transform: translateY(-3px);
}

/* =====================================================
SYSTEM VISUAL BASE
===================================================== */

.gfs-system-visual {
  position: relative;
  width: 480px;
  height: 480px;
  margin: auto;
}

/* =====================================================
ORBIT BASE (ALIGNMENT CONTROL)
===================================================== */

.gfs-orbit-base {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
}

/* =====================================================
ROTATING HEXAGON (AI FEEL)
===================================================== */

/* .gfs-hexagon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 260px;
  height: 260px;
  background: rgba(37,99,235,.08);
  clip-path: polygon(
    25% 0%, 75% 0%,
    100% 50%, 75% 100%,
    25% 100%, 0% 50%
  );
  animation: hexRotate 20s linear infinite;
} */

/* =====================================================
CORE
===================================================== */

.gfs-system-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 60px 160px rgba(37,99,235,.45);
  animation: corePulse 8s ease-in-out infinite;
  z-index: 2;
}

.gfs-system-core .core-title {
  font-size: 1.15rem;
  font-weight: 900;
}

.gfs-system-core .core-subtitle {
  font-size: .75rem;
  opacity: .9;
}

/* =====================================================
ORBIT PILLS (SMARTDESK SHAPE)
===================================================== */

.gfs-orbit-pill {
  position: absolute;
  width: 150px;
  height: 180px;
  padding: 18px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-radius: 90px;
  box-shadow: 0 30px 70px rgba(15,23,42,.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: pillFloat 9s cubic-bezier(.22,.61,.36,1) infinite;
}

.gfs-orbit-pill .pill-category {
  font-size: .7rem;
  color: #64748b;
}

.gfs-orbit-pill .pill-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
}

.gfs-orbit-pill .pill-info {
  font-size: .7rem;
  color: #16a34a;
}

/* =====================================================
EXACT SMARTDESK POSITIONS
===================================================== */

.pill-top {
  top: 12%;
  left: 50%;
  animation-delay: 0s;
}

.pill-bottom {
  bottom: -30%;
  left: 50%;
  animation-delay: 0s;
}

.pill-right {
  right: -20%;
  top: 50%;
  animation-delay: 0s;
}

.pill-left {
  left: 10%;
  top: 50%;
  animation-delay: 0s;
}

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

@keyframes pillFloat {
  0%   { transform: translate(-50%, -50%) translateY(0); }
  50%  { transform: translate(-50%, -50%) translateY(-14px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

@keyframes corePulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.06); }
}

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

/* =====================================================
MOBILE STACK
===================================================== */

@media (max-width: 900px) {
  .gfs-system-visual {
    width: 100%;
    height: auto;
    display: grid;
    gap: 14px;
  }

  .gfs-system-core,
  .gfs-orbit-pill,
  .gfs-hexagon {
    position: relative;
    inset: auto;
    transform: none;
    animation: none;
    width: 180px;
    margin: auto;
  }
}


/* =====================================================
   WHO SPORTSSHOP POS IS FOR – STYLES
===================================================== */

.ssp-target-zone {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, #eef2ff, transparent 40%),
    radial-gradient(circle at bottom right, #f8fafc, transparent 45%),
    #ffffff;
}

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

.ssp-target-head {
  max-width: 820px;
  margin: 0 auto 70px;
}

.ssp-target-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  animation: sspTitleReveal .9s cubic-bezier(.22,.61,.36,1) both;
}

.ssp-target-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  animation: sspFadeSoft 1.2s ease both;
}

/* =====================================================
   CARDS
===================================================== */

.ssp-target-card {
  position: relative;
  height: 100%;
  padding: 34px 30px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  animation: sspCardFloat 1s ease both;
}

.ssp-target-card:hover {
  transform: translateY(-10px);
  border-color: #c7d2fe;
  box-shadow: 0 28px 60px rgba(37,99,235,.12);
}

/* ICON */

.ssp-target-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #e0e7ff, #eff6ff);
  margin-bottom: 20px;
}

/* TEXT */

.ssp-target-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ssp-target-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
   FOOTER LINE
===================================================== */

.ssp-target-footer {
  margin-top: 70px;
}

.ssp-target-footer p {
  font-size: 1.05rem;
  color: #334155;
  max-width: 760px;
  margin: 0 auto;
}

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

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

@keyframes sspFadeSoft {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@media (max-width: 991px) {
  .ssp-target-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   SPORTSSHOP POS – CHALLENGES STYLES
===================================================== */

.ssp-challenge-zone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.ssp-challenge-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.ssp-challenge-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
  animation: sspChallengeTitle .9s cubic-bezier(.22,.61,.36,1) both;
}

.ssp-challenge-intro {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #64748b;
  animation: sspChallengeFade 1.2s ease both;
}

/* =====================================================
   CARDS
===================================================== */

.ssp-challenge-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 36px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  animation: sspChallengeCard 1s ease both;
}

.ssp-challenge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #e0e7ff, #f8fafc);
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 0;
}

.ssp-challenge-card:hover::before {
  opacity: 1;
}

.ssp-challenge-card:hover {
  transform: translateY(-10px);
  border-color: #c7d2fe;
  box-shadow: 0 30px 70px rgba(37,99,235,.12);
}

.ssp-challenge-card > * {
  position: relative;
  z-index: 1;
}

/* BADGE */

.ssp-challenge-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .4px;
  color: #1d4ed8;
  background: #eef2ff;
  border-radius: 18px;
  margin-bottom: 16px;
}

/* TEXT */

.ssp-challenge-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ssp-challenge-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

/* =====================================================
   FOOTER LINE
===================================================== */

.ssp-challenge-footer {
  margin-top: 90px;
}

.ssp-challenge-footer p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #334155;
}

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

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

@keyframes sspChallengeFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@media (max-width: 991px) {
  .ssp-challenge-title {
    font-size: 2.3rem;
  }
}


/* =====================================================
   CORE FUNCTIONALITY – SPORTSSHOP POS (WORKING)
===================================================== */

.ssp-core-zone {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

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

.ssp-core-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.ssp-core-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ssp-core-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* ================= SYSTEM LAYOUT ================= */

.ssp-core-system {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= CENTER HUB ================= */

.ssp-core-hub {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 250px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 30px 70px rgba(37,99,235,.35);
  animation: sspHubFloat 5s ease-in-out infinite;
  z-index: 5;
}

/* ================= FUNCTION NODES ================= */

.ssp-core-nodes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ssp-core-nodes li {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #020617;
  text-align: center;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
  transform:
    translate(-50%, -50%)
    rotate(calc(60deg * var(--i)))
    translate(260px)
    rotate(calc(-60deg * var(--i)));
}

/* ================= ORBIT RINGS ================= */

.ssp-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed #c7d2fe;
  animation: sspOrbit linear infinite;
}

.ring-sm {
  width: 360px;
  height: 360px;
  animation-duration: 28s;
}

.ring-lg {
  width: 520px;
  height: 520px;
  animation-duration: 44s;
}

/* ================= FOOTER ================= */

.ssp-core-footer {
  margin-top: 90px;
}

.ssp-core-footer p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #334155;
}

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

@keyframes sspHubFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

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

/* ================= RESPONSIVE (MOBILE SAFE) ================= */

@media (max-width: 991px) {
  .ssp-core-system {
    height: auto;
    flex-direction: column;
  }

  .ssp-core-hub {
    position: static;
    margin-bottom: 40px;
  }

  .ssp-core-nodes li {
    position: static;
    transform: none;
    margin-bottom: 16px;
    width: 100%;
    max-width: 360px;
  }

  .ssp-core-ring {
    display: none;
  }
}


/* =====================================================
   KEY FEATURES – SPORTSSHOP POS
===================================================== */

.ssp-feature-zone {
  padding: 60px 0;
  background: #f8fafc;
}

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

.ssp-feature-head {
  max-width: 880px;
  margin: 0 auto 80px;
}

.ssp-feature-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ssp-feature-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* ================= FEATURE CARDS ================= */

.ssp-feature-card {
  height: 100%;
  padding: 34px 30px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: all .35s ease;
}

.ssp-feature-card:hover {
  transform: translateY(-8px);
  border-color: #c7d2fe;
  box-shadow: 0 22px 45px rgba(37,99,235,.12);
}

/* TEXT */

.ssp-feature-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 12px;
}

.ssp-feature-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

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

@media (max-width: 991px) {
  .ssp-feature-title {
    font-size: 2.2rem;
  }
}



/* =====================================================
   MULTI-BRANCH & MULTI-COMPANY SUPPORT
===================================================== */

.ssp-scale-zone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.ssp-scale-head {
  max-width: 880px;
  margin: 0 auto 80px;
}

.ssp-scale-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ssp-scale-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* ================= CARDS ================= */

.ssp-scale-card {
  height: 100%;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: all .35s ease;
}

.ssp-scale-card:hover {
  transform: translateY(-8px);
  border-color: #c7d2fe;
  box-shadow: 0 24px 50px rgba(37,99,235,.12);
}

/* CHECK ICON */

.ssp-scale-check {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* TEXT */

.ssp-scale-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ssp-scale-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

/* ================= FOOTER ================= */

.ssp-scale-footer {
  margin-top: 80px;
}

.ssp-scale-footer p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #334155;
}

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

@media (max-width: 991px) {
  .ssp-scale-title {
    font-size: 2.2rem;
  }
}



/* =====================================================
   RETAIL + WHOLESALE READY
===================================================== */

.ssp-dual-zone {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

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

.ssp-dual-head {
  max-width: 900px;
  margin: 0 auto 90px;
}

.ssp-dual-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ssp-dual-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* ================= PANELS ================= */

.ssp-dual-panel {
  height: 100%;
  padding: 40px 36px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: all .45s ease;
  position: relative;
  overflow: hidden;
}

/* Retail Animation */
.ssp-dual-panel.retail {
  animation: sspSlideLeft 1s cubic-bezier(.22,.61,.36,1) both;
}

/* Wholesale Animation */
.ssp-dual-panel.wholesale {
  animation: sspSlideRight 1s cubic-bezier(.22,.61,.36,1) both;
}

/* Hover Effect */
.ssp-dual-panel:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(37,99,235,.12);
  border-color: #c7d2fe;
}

/* Headings */
.ssp-dual-panel h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 20px;
}

/* List */
.ssp-dual-panel ul {
  padding-left: 18px;
  margin: 0;
}

.ssp-dual-panel li {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 10px;
}

/* ================= FOOTER ================= */

.ssp-dual-footer {
  margin-top: 90px;
}

.ssp-dual-footer p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #334155;
}

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

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

@keyframes sspSlideRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 991px) {
  .ssp-dual-title {
    font-size: 2.3rem;
  }

  .ssp-dual-panel {
    animation: none;
  }
}


/* =====================================================
   BUSINESS BENEFITS – SPORTSSHOP POS
===================================================== */

.ssp-benefit-zone {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.ssp-benefit-head {
  max-width: 900px;
  margin: 0 auto 90px;
}

.ssp-benefit-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.ssp-benefit-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* ================= FLOW ================= */

.ssp-benefit-flow {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.ssp-benefit-flow::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #c7d2fe, transparent);
}

/* Item */
.ssp-benefit-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 34px;
  animation: sspBenefitReveal .8s ease both;
}

.ssp-benefit-item:nth-child(odd) {
  animation-delay: .1s;
}

.ssp-benefit-item:nth-child(even) {
  animation-delay: .2s;
}

/* Dot */
.ssp-benefit-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 0 0 6px rgba(37,99,235,.15);
}

/* Text */
.ssp-benefit-item p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #334155;
  margin: 0;
}

/* ================= FOOTER ================= */

.ssp-benefit-footer {
  margin-top: 90px;
}

.ssp-benefit-footer p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #020617;
}

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

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

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

@media (max-width: 991px) {
  .ssp-benefit-title {
    font-size: 2.3rem;
  }

  .ssp-benefit-flow::before {
    left: 6px;
  }
}



body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #ffffff;
  color: #020617;
}

.ssp-usecase-zone {
  padding: 60px 20px;
}

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

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

.ssp-usecase-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 90px;
}

.ssp-usecase-title {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ssp-usecase-intro {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
}

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

.ssp-usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

/* ================= CARD ================= */

.ssp-usecase-card {
  padding: 38px 34px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all .4s ease;
  position: relative;
}

.ssp-usecase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(37,99,235,.12);
  border-color: #c7d2fe;
}

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

.ssp-usecase-card h4 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

/* OUTLINE ICON BADGE */
.ssp-icon-outline {
  width: 70px;
  height: 40px;
  border-radius: 14px;
  border: 2px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .45s ease;
}

/* ICON LINE */
.ssp-icon-outline svg {
  width: 22px;
  height: 22px;
  stroke: #1d4ed8;
  stroke-width: 2;
  fill: none;
  transition: all .45s ease;
}

/* HOVER EFFECT */
.ssp-usecase-card:hover .ssp-icon-outline {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-color: transparent;
  transform: rotate(6deg) scale(1.1);
}

.ssp-usecase-card:hover svg {
  stroke: #ffffff;
}

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

.ssp-usecase-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

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

@media (max-width: 768px) {
  .ssp-usecase-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   PLATFORM ADVANTAGES – STYLES
===================================================== */

.ssp-platform-zone {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ssp-platform-container {
  max-width: 900px;
  margin: auto;
}

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

.ssp-platform-head {
  margin-bottom: 80px;
}

.ssp-platform-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ssp-platform-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

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

.ssp-platform-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ITEM */
.ssp-platform-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 14px;
  border-left: 4px solid #e0e7ff;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);

  animation: sspSlideReveal .7s ease forwards;
  opacity: 0;
}

/* Staggered reveal */
.ssp-platform-item:nth-child(1) { animation-delay: .05s; }
.ssp-platform-item:nth-child(2) { animation-delay: .1s; }
.ssp-platform-item:nth-child(3) { animation-delay: .15s; }
.ssp-platform-item:nth-child(4) { animation-delay: .2s; }
.ssp-platform-item:nth-child(5) { animation-delay: .25s; }
.ssp-platform-item:nth-child(6) { animation-delay: .3s; }
.ssp-platform-item:nth-child(7) { animation-delay: .35s; }

/* ICON */
.ssp-platform-icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
}

/* TEXT */
.ssp-platform-item p {
  margin: 0;
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.6;
}

/* Hover effect */
.ssp-platform-item:hover {
  border-left-color: #2563eb;
}

.ssp-platform-item:hover .ssp-platform-icon {
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.1);
}

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

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

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

@media (max-width: 768px) {
  .ssp-platform-title {
    font-size: 2.2rem;
  }
}



/* =====================================================
   YUVAASOFT ECOSYSTEM – CORRECT & WORKING CSS
===================================================== */

.ys-ecosystem-zone {
  padding: 60px 20px;
  background:
    radial-gradient(circle at top right, #eef2ff, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* ================= WRAPPER ================= */

.ys-ecosystem-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.ys-ecosystem-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

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

/* ================= VISUAL AREA ================= */

.ys-ecosystem-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= CENTER HUB ================= */

.ys-ecosystem-hub {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 250px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 35px 80px rgba(37,99,235,.35);
  animation: ysHubPulse 4s ease-in-out infinite;
  z-index: 5;
}

/* ================= ECOSYSTEM NODES ================= */

.ys-eco-node {
  position: absolute;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
  animation: ysNodeFade .9s ease both;
}

/* NODE POSITIONS */
.node-1 { top: -5%; left: 43.5%; animation-delay: 1s; }
.node-2 { top: 40%; left: 20%; animation-delay: 1.5s; }
.node-3 { bottom: 8%; left: 30%; animation-delay: 2s; }
.node-4 { top: 40%; right: 20%; animation-delay: 2.5s; }
.node-5 { bottom: 8%; right: 30%; animation-delay: 3s; }
/* ================= ORBIT RINGS ================= */

.ys-eco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed #c7d2fe;
  animation: ysOrbit linear infinite;
}

.ring-a {
  width: 360px;
  height: 360px;
  animation-duration: 28s;
}

.ring-b {
  width: 520px;
  height: 520px;
  animation-duration: 44s;
}

/* ================= FOOTER ================= */

.ys-ecosystem-footer {
  margin-top: 100px;
  text-align: center;
}

.ys-ecosystem-footer p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #334155;
}

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

@keyframes ysHubPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 35px 80px rgba(37,99,235,.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 50px 110px rgba(37,99,235,.45);
  }
}

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

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

/* ================= RESPONSIVE (SAFE) ================= */

@media (max-width: 991px) {

  .ys-ecosystem-visual {
    height: auto;
    flex-direction: column;
    gap: 20px;
  }

  .ys-ecosystem-hub {
    position: static;
    margin-bottom: 20px;
  }

  .ys-eco-node {
    position: static;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .ys-eco-ring {
    display: none;
  }
}


/* =====================================================
   DEMO & ONBOARDING – WAVE ADOPTION STYLE
===================================================== */

.gs-adopt-zone {
  padding: 60px 20px;
  background:
    radial-gradient(circle at bottom left, #eef2ff, transparent 45%),
    #ffffff;
}

.gs-adopt-wrap {
  max-width: 1100px;
  margin: auto;
}

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

.gs-adopt-head {
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}

.gs-adopt-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

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

/* ================= TRACK ================= */

.gs-adopt-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

/* ================= BLOCK ================= */

.gs-adopt-block {
  position: relative;
  padding: 38px 32px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  text-align: center;
  animation: gsWaveUp 1s ease both;
  transition: all .35s ease;
}

/* stagger wave */
.gs-adopt-block:nth-child(1) { animation-delay: .05s; }
.gs-adopt-block:nth-child(2) { animation-delay: .12s; }
.gs-adopt-block:nth-child(3) { animation-delay: .18s; }
.gs-adopt-block:nth-child(4) { animation-delay: .24s; }
.gs-adopt-block:nth-child(5) { animation-delay: .30s; }

.gs-adopt-block:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(37,99,235,.14);
  border-color: #c7d2fe;
}

/* ================= STEP NUMBER ================= */

.gs-adopt-step {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1d4ed8;
  background: #e0e7ff;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

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

.gs-adopt-block h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.gs-adopt-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

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

.gs-adopt-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.gs-btn {
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all .35s ease;
}

.gs-btn.primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(37,99,235,.35);
}

.gs-btn.primary:hover {
  transform: translateY(-3px);
}

.gs-btn.outline {
  background: #ffffff;
  color: #1d4ed8;
  border: 2px solid #dbeafe;
}

.gs-btn.outline:hover {
  background: #eff6ff;
}

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

@keyframes gsWaveUp {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 768px) {
  .gs-adopt-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   FAQ SECTION – DIFFERENT STYLE
===================================================== */

.gs-faq-zone {
  padding: 60px 20px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.gs-faq-wrap {
  max-width: 880px;
  margin: auto;
}

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

.gs-faq-head {
  text-align: center;
  margin-bottom: 90px;
}

.gs-faq-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.gs-faq-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* ================= FAQ LIST ================= */

.gs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ================= FAQ ITEM ================= */

.gs-faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all .35s ease;
}

/* Summary (Question) */
.gs-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: #020617;
}

.gs-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Icon */
.gs-faq-item summary i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}

.gs-faq-item summary i::before,
.gs-faq-item summary i::after {
  content: "";
  position: absolute;
  background: #1d4ed8;
  transition: all .35s ease;
}

.gs-faq-item summary i::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.gs-faq-item summary i::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

/* Answer */
.gs-faq-item p {
  padding: 0 26px 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
  animation: gsFaqDrop .4s ease;
}

/* Open State */
.gs-faq-item[open] {
  border-color: #c7d2fe;
  box-shadow: 0 22px 50px rgba(37,99,235,.12);
}

.gs-faq-item[open] summary i::after {
  transform: scaleY(0);
}

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

@keyframes gsFaqDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .gs-faq-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   FINAL CTA – CENTER CARD STYLE
===================================================== */

.ssp-cta-stage {
  min-height: 300px;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 40px 20px;

  background: linear-gradient(
    135deg,
    #1d4ed8 0%,
    #2563eb 50%,
    #3b82f6 100%
  );

  animation: sspBgFade 1.2s ease forwards;
}

/* ================= CARD ================= */

.ssp-cta-card {
  padding: 30px 30px;
  padding-left: 150px;
  text-align: left;
  justify-content: left;
  animation: sspCardFloat 4.5s ease-in-out infinite;
}

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

.ssp-cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.7px;
  margin-bottom: 22px;
  animation: sspTextUp .9s ease forwards;
}

.ssp-cta-subtext {
  max-width: 720px;
  font-size: 1.1rem;
  font-weight: 1300;
  line-height: 1.85;
  color: rgba(255,255,255,.9);
  animation: sspTextUp 1.1s ease forwards;
}

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

.ssp-cta-actions {
  display: flex;
  justify-content: left;
  gap: 20px;
  flex-wrap: wrap;
}

.ssp-cta-btn {
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  transition: all .35s ease;
}

/* Primary */
.ssp-cta-btn.primary {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 16px 45px rgba(0,0,0,.25);
}

.ssp-cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(0,0,0,.35);
}

/* Secondary */
.ssp-cta-btn.secondary {
  border: 2px solid rgba(255,255,255,.7);
  color: #ffffff;
}

.ssp-cta-btn.secondary:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

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

@keyframes sspBgFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes sspCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

@media (max-width: 768px) {
  .ssp-cta-card {
    padding: 60px 28px;
  }

  .ssp-cta-title {
    font-size: 2.2rem;
  }
}



/* ------------------------------------------------GOFINICKY MOBILESHOP POS – PRODUCT PAGE ---------------------------------------------------*/

/* =====================================================
   GOFINICKY MOBILESHOP POS – HERO
===================================================== */

.ms-hero-wrap {
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, #e0e7ff, transparent 40%),
    radial-gradient(circle at bottom left, #f1f5f9, transparent 45%),
    #ffffff;
  overflow: hidden;
}

/* ---------- Content ---------- */

.ms-hero-content {
  animation: msFadeSlide 1s ease forwards;
}

.ms-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  background: #eef2ff;
  color:  #1f6fe5;
  margin-bottom: 20px;
}

.ms-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: #020617;
  margin-bottom: 22px;
}

.ms-hero-title span {
  color: #1f6fe5;
  position: relative;
}

.ms-hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: #c7d2fe;
  z-index: -1;
  animation: msUnderline 1.4s ease forwards;
}

.ms-hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color:  #1f6fe5;
  margin-bottom: 14px;
}

.ms-hero-subtext {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 32px;
}

/* ---------- Actions ---------- */

.ms-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ms-btn-primary {
  padding: 14px 30px;
  border-radius: 40px;
  background:  #1f6fe5;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(79,70,229,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.ms-btn-primary:hover {
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(79,70,229,0.45);
}

.ms-btn-outline {
  padding: 14px 30px;
  border-radius: 40px;
  border: 2px solid #e0e7ff;
  color:  #1f6fe5;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.ms-btn-outline:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

/* ---------- Visual System ---------- */
.ms-hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ms-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed #c7d2fe;
  animation: msRotate linear infinite;
}

.ms-orbit-one {
  width: 360px;
  height: 360px;
  animation-duration: 18s;
}

.ms-orbit-two {
  width: 260px;
  height: 260px;
  animation-duration: 12s;
  animation-direction: reverse;
}

.ms-device-card {
  position: absolute;
  padding: 14px 22px;
  background: #ffffff;
  border-radius: 18px;
  font-weight: 600;
  color: #1e293b;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(15,23,42,0.15);
  animation: msFloat 4s ease-in-out infinite;
}

/* Adjust positions for device cards */
.ms-device-card.delay {
  top: 60px;
  right: 40px;
  animation-delay: 1.2s;
}

.ms-device-card.slow {
  bottom: 60px;
  left: 40px;
  animation-delay: 2s;
}

/* ---------- Animations ---------- */
@keyframes msFadeSlide {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes msUnderline {
  from { width: 0; }
  to { width: 100%; }
}

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

@keyframes msFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Additional animations */
@keyframes msOrbitOne {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes msOrbitTwo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ---------- Mobile Stack and Adjustments ---------- */
@media (max-width: 768px) {
  .ms-hero-visual {
    height: 350px;
  }

  .ms-orbit {
    width: 220px;
    height: 220px;
  }

  .ms-device-card {
    width: 80%;
    max-width: 300px;
  }

  .ms-device-card.slow {
    bottom: 20px;
    left: 10%;
  }

  .ms-device-card.delay {
    top: 20px;
    right: 10px;
  }
}


/* =====================================================
   WHO MOBILESHOP POS IS FOR
   Primary Color: #1f6fe5
===================================================== */

.ms-fit-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, rgba(31,111,229,0.08), transparent 40%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-fit-head {
  max-width: 820px;
  margin: 0 auto 70px;
}

.ms-fit-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.1);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ms-fit-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 18px;
}

.ms-fit-title span {
  color: #1f6fe5;
  position: relative;
}

.ms-fit-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: rgba(31,111,229,0.2);
  z-index: -1;
}

.ms-fit-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Cards ---------- */

.ms-fit-card {
  height: 100%;
  padding: 34px 28px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  transition: transform .4s ease, box-shadow .4s ease;
  animation: msCardReveal .8s ease forwards;
}

.ms-fit-card.wide {
  padding: 38px 36px;
}

.ms-fit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(31,111,229,0.18);
}

.ms-fit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ms-fit-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 10px;
}

.ms-fit-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Footer ---------- */

.ms-fit-footer {
  max-width: 760px;
  margin: 70px auto 0;
  font-size: 1rem;
  color: #334155;
}

/* ---------- Animations ---------- */

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

/* =====================================================
   MOBILESHOP POS – PROBLEMS SOLVED
   Primary Color: #1f6fe5
===================================================== */

.ms-problem-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom left, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-problem-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.ms-problem-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ms-problem-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 18px;
}

.ms-problem-title span {
  color: #1f6fe5;
  position: relative;
}

.ms-problem-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: rgba(31,111,229,0.25);
  z-index: -1;
}

.ms-problem-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Cards ---------- */

.ms-problem-card {
  position: relative;
  height: 100%;
  padding: 36px 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: transform .4s ease, box-shadow .4s ease;
  animation: msProblemReveal .9s ease forwards;
}

.ms-problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(31,111,229,0.22);
}

/* Accent Dot */
.ms-problem-dot {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f6fe5;
  box-shadow: 0 0 0 rgba(31,111,229,0.5);
  animation: msPulse 2.2s infinite;
}

.ms-problem-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 12px;
}

.ms-problem-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Footer ---------- */

.ms-problem-footer {
  max-width: 760px;
  margin: 80px auto 0;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Animations ---------- */

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

@keyframes msPulse {
  0% { box-shadow: 0 0 0 0 rgba(31,111,229,0.45); }
  70% { box-shadow: 0 0 0 12px rgba(31,111,229,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,111,229,0); }
}



/* =====================================================
   CORE FUNCTIONALITY – ALIGNED SYSTEM
===================================================== */

.ms-core-wrap {
  padding: 60px 0;
  background: #ffffff;
}

/* ---------- Header ---------- */

.ms-core-head {
  max-width: 850px;
  margin: 0 auto 80px;
}

.ms-core-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.ms-core-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
}

.ms-core-title span {
  color: #1f6fe5;
}

.ms-core-intro {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 14px;
}

/* ---------- Circular System ---------- */

.ms-core-circle {
  position: relative;
  width: 460px;
  height: 460px;
  margin: 0 auto;
}

/* Center Hub */
.ms-core-center {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 25px 60px rgba(31,111,229,0.45);
}

.ms-core-center strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.ms-core-center span {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* ---------- Nodes ---------- */

.ms-core-item {
  position: absolute;
  top: 35%;
  left: 35%;
  width: 130px;
  padding: 14px 12px;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(15,23,42,0.12);
  text-align: center;
  font-size: 1.4rem;
  transform:
    rotate(calc(360deg / 7 * var(--i)))
    translate(220px)
    rotate(calc(-360deg / 7 * var(--i)));
}

.ms-core-item p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 6px;
}

/* ---------- Orbit Ring ---------- */
.ms-core-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(31,111,229,0.4);
  animation: rotateRing 25s linear infinite;
}

/* ---------- Animation ---------- */

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

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-core-circle {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ms-core-circle::before,
  .ms-core-center {
    display: none;
  }

  .ms-core-item {
    position: static;
    transform: none;
    width: 100%;
  }
}


/* =====================================================
   KEY FEATURES – MOBILESHOP POS
===================================================== */

.ms-feature-wrap {
  padding: 70px 0;
  background:
    radial-gradient(circle at top right, rgba(31,111,229,0.08), transparent 40%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-feature-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.ms-feature-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ms-feature-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.ms-feature-title span {
  color: #1f6fe5;
}

.ms-feature-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Grid ---------- */

.ms-feature-grid {
  align-items: stretch;
}

/* ---------- Cards ---------- */

.ms-feature-card {
  height: 100%;
  padding: 36px 30px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: msFeatureFade .7s ease forwards;
}

.ms-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(31,111,229,0.2);
}

/* ---------- Icon ---------- */

.ms-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

/* ---------- Text ---------- */

.ms-feature-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ms-feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Animation ---------- */

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


/* =====================================================
   MULTI-BRANCH & MULTI-COMPANY SUPPORT
===================================================== */

.gf-scaleX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom right, rgba(31,111,229,.08), transparent 45%),
    #fff;
}

/* ---------- Header ---------- */

.gf-scaleX-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.gf-scaleX-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,.12);
  color: #1f6fe5;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.gf-scaleX-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.gf-scaleX-title span {
  color: #1f6fe5;
}

.gf-scaleX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Grid ---------- */

.gf-scaleX-grid {
  align-items: stretch;
}

/* ---------- Cards ---------- */

.gf-scaleX-card {
  height: 100%;
  padding: 38px 32px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gf-scaleX-card.wide {
  padding: 42px 40px;
}

.gf-scaleX-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(31,111,229,.22);
}

/* ---------- Icon ---------- */

.gf-scaleX-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(31,111,229,.12);
  color: #1f6fe5;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

/* ---------- Text ---------- */

.gf-scaleX-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 12px;
}

.gf-scaleX-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-scaleX-wrap {
    padding: 90px 0;
  }

  .gf-scaleX-title {
    font-size: 2.1rem;
  }
}



/* =====================================================
   RETAIL + WHOLESALE READY
===================================================== */

.ms-rw-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-rw-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.ms-rw-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ms-rw-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.ms-rw-title span {
  color: #1f6fe5;
}

.ms-rw-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Grid ---------- */

.ms-rw-grid {
  align-items: stretch;
}

/* ---------- Cards ---------- */

.ms-rw-card {
  height: 100%;
  padding: 42px 38px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ms-rw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(31,111,229,0.2);
}

.ms-rw-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.ms-rw-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 16px;
}

/* ---------- Lists ---------- */

.ms-rw-card ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.ms-rw-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #475569;
}

.ms-rw-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f6fe5;
  font-weight: 800;
}

/* ---------- Footer ---------- */

.ms-rw-footer {
  max-width: 760px;
  margin: 80px auto 0;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-rw-wrap {
    padding: 90px 0;
  }
}


/* =====================================================
   BUSINESS BENEFITS – MOBILESHOP POS
===================================================== */

.ms-benefit-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-benefit-head {
  max-width: 880px;
  margin: 0 auto 80px;
}

.ms-benefit-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ms-benefit-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.ms-benefit-title span {
  color: #1f6fe5;
}

.ms-benefit-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Grid ---------- */

.ms-benefit-grid {
  align-items: stretch;
}

/* ---------- Cards ---------- */

.ms-benefit-card {
  height: 100%;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ms-benefit-card.wide {
  padding: 42px 40px;
}

.ms-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(31,111,229,0.2);
}

/* ---------- Icon ---------- */

.ms-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ---------- Text ---------- */

.ms-benefit-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ms-benefit-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Footer ---------- */

.ms-benefit-footer {
  max-width: 760px;
  margin: 80px auto 0;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-benefit-wrap {
    padding: 90px 0;
  }
}


/* =====================================================
   USE CASES – MOBILESHOP POS
===================================================== */

.ms-use-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom left, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-use-head {
  max-width: 860px;
  margin: 0 auto 80px;
}

.ms-use-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ms-use-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.ms-use-title span {
  color: #1f6fe5;
}

.ms-use-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Grid ---------- */

.ms-use-grid {
  align-items: stretch;
}

/* ---------- Cards ---------- */

.ms-use-card {
  height: 100%;
  padding: 38px 34px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ms-use-card.wide {
  padding: 44px 42px;
}

.ms-use-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(31,111,229,0.2);
}

/* ---------- Icon ---------- */

.ms-use-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

/* ---------- Text ---------- */

.ms-use-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 12px;
}

.ms-use-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-use-wrap {
    padding: 90px 0;
  }
}


/* =====================================================
   PLATFORM ADVANTAGES – MOBILESHOP POS
===================================================== */

.ms-platform-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-platform-head {
  max-width: 880px;
  margin: 0 auto 80px;
}

.ms-platform-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ms-platform-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.ms-platform-title span {
  color: #1f6fe5;
}

.ms-platform-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Grid ---------- */

.ms-platform-grid {
  align-items: stretch;
}

/* ---------- Cards ---------- */

.ms-platform-card {
  height: 100%;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ms-platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(31,111,229,0.2);
}

/* ---------- Icon ---------- */

.ms-platform-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ---------- Text ---------- */

.ms-platform-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ms-platform-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Footer ---------- */

.ms-platform-footer {
  max-width: 760px;
  margin: 80px auto 0;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-platform-wrap {
    padding: 90px 0;
  }
}


/* =====================================================
   ADVANCED ECOSYSTEM – PULSE NETWORK
===================================================== */

.ms-ecoX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at center, rgba(31,111,229,0.08), transparent 55%),
    #ffffff;
  overflow: hidden;
}

/* ---------- Header ---------- */

.ms-ecoX-head {
  max-width: 920px;
  margin: 0 auto 110px;
}

.ms-ecoX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ms-ecoX-title {
  font-size: 3rem;
  font-weight: 900;
  color: #020617;
  line-height: 1.15;
}

.ms-ecoX-title span {
  color: #1f6fe5;
}

.ms-ecoX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin-top: 18px;
}

/* ---------- Network ---------- */

.ms-ecoX-network {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto;
}

/* Center Core */
.ms-ecoX-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:
    0 0 0 rgba(31,111,229,0.6),
    0 30px 80px rgba(31,111,229,0.55);
  animation: ecoCorePulse 3.5s ease-in-out infinite;
  z-index: 5;
}

.ms-ecoX-core strong {
  font-size: 1.15rem;
  font-weight: 900;
}

.ms-ecoX-core small {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Orbit Nodes */
.ms-ecoX-node {
  position: absolute;
  width: 150px;
  padding: 16px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 18px 45px rgba(15,23,42,0.12);
  animation: ecoFloat 5s ease-in-out infinite;
}

.n1 { top: 5%; left: 37.5%;   }
.n2 { right: 0; top: 50%;  }
.n3 { bottom: 0; left: 37.5%;  }
.n4 { left: -5%; top: 50%;  }

/* Glow Rings */
.ms-ecoX-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(31,111,229,0.25);
}

.r1 {
  width: 360px;
  height: 360px;
  animation: ecoRotate 22s linear infinite;
}

.r2 {
  width: 460px;
  height: 460px;
  animation: ecoRotateReverse 32s linear infinite;
}

/* Footer */
.ms-ecoX-footer {
  max-width: 760px;
  margin: 100px auto 0;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Animations ---------- */

@keyframes ecoCorePulse {
  0%,100% {
    box-shadow:
      0 0 0 rgba(31,111,229,0.6),
      0 30px 80px rgba(31,111,229,0.55);
  }
  50% {
    box-shadow:
      0 0 40px rgba(31,111,229,0.45),
      0 40px 100px rgba(31,111,229,0.75);
  }
}

@keyframes ecoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

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

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

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-ecoX-network {
    width: 100%;
    height: 420px;
  }

  .ms-ecoX-node {
    width: 130px;
    font-size: 0.85rem;
  }

  .ms-ecoX-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   MOBILE & TABLET (The "Vertical Stack" View)
   ===================================================== */
@media (max-width: 768px) {
  
  /* 1. Reset the container to remove the fixed height/width */
  .ms-ecoX-network {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 15px; /* Creates even space between items */
    margin: 20px 0;
  }

  /* 2. Hide the orbit rings so they don't block the text */
  .ms-ecoX-ring {
    display: none;
  }

  /* 3. Force the Core (MobileShop POS) to stay at the center/top */
  .ms-ecoX-core {
    position: relative; /* Break away from absolute logic */
    margin-bottom: 20px;
    order: 1; /* Ensures it appears first */
    width: 200px;
    height: 200px;
  }

  /* 4. Reset ALL nodes to be standard blocks */
  .ms-ecoX-node {
    position: relative !important; /* Forces layout back to normal flow */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important; /* Removes the center-alignment translations */
    
    width: 90%; /* Makes them consistent width on phone */
    max-width: 320px;
    text-align: center;
    order: 2; /* Ensures they appear after the core */
  }
}

/* Extra small mobile fix */
@media (max-width: 480px) {
  .ms-ecoX-title { font-size: 24px; }
  .ms-ecoX-core { width: 200px; height: 200px; }
}
/* =====================================================
   DEMO & ONBOARDING – ADVANCED JOURNEY STYLE
===================================================== */

.ms-demoX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, rgba(31,111,229,0.08), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ---------- Header ---------- */

.ms-demoX-head {
  max-width: 900px;
  margin: 0 auto 100px;
}

.ms-demoX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ms-demoX-title {
  font-size: 3rem;
  font-weight: 900;
  color: #020617;
  line-height: 1.2;
}

.ms-demoX-title span {
  color: #1f6fe5;
}

.ms-demoX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin-top: 20px;
}

/* ---------- Timeline ---------- */

.ms-demoX-timeline {
  max-width: 820px;
  margin: 0 auto 90px;
  position: relative;
}

.ms-demoX-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(31,111,229,0.15),
    rgba(31,111,229,0.6),
    rgba(31,111,229,0.15)
  );
  animation: demoFlow 3s ease-in-out infinite;
}

.ms-demoX-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.ms-demoX-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #1f6fe5;
  box-shadow: 0 0 0 rgba(31,111,229,0.5);
  animation: demoPulse 2.5s infinite;
  flex-shrink: 0;
}

.ms-demoX-content {
  background: #ffffff;
  padding: 28px 34px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(15,23,42,0.08);
  animation: demoSlide .9s ease forwards;
}

.ms-demoX-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 8px;
}

.ms-demoX-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Actions ---------- */

.ms-demoX-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ms-demoX-btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s ease;
}

.ms-demoX-btn.primary {
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(31,111,229,0.45);
}

.ms-demoX-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(31,111,229,0.65);
}

.ms-demoX-btn.outline {
  border: 2px solid #1f6fe5;
  color: #1f6fe5;
}

.ms-demoX-btn.outline:hover {
  background: rgba(31,111,229,0.08);
}

/* ---------- Animations ---------- */

@keyframes demoPulse {
  0% { box-shadow: 0 0 0 0 rgba(31,111,229,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(31,111,229,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,111,229,0); }
}

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

@keyframes demoFlow {
  0%,100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-demoX-title {
    font-size: 2.2rem;
  }

  .ms-demoX-step {
    gap: 20px;
  }
}

/* =====================================================
   FAQ – ADVANCED SMART ACCORDION
===================================================== */

.ms-faqX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.ms-faqX-head {
  max-width: 860px;
  margin: 0 auto 90px;
}

.ms-faqX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ms-faqX-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
}

.ms-faqX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin-top: 18px;
}

/* ---------- FAQ List ---------- */

.ms-faqX-list {
  max-width: 820px;
  margin: 0 auto;
}

/* ---------- FAQ Item ---------- */

.ms-faqX-item {
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  transition: box-shadow .35s ease, transform .35s ease;
}

.ms-faqX-item[open] {
  box-shadow: 0 28px 65px rgba(31,111,229,0.2);
  transform: translateY(-4px);
}

/* ---------- Summary ---------- */

.ms-faqX-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ms-faqX-item summary::-webkit-details-marker {
  display: none;
}

/* ---------- Icon ---------- */

.ms-faqX-icon {
  width: 18px;
  height: 18px;
  border-right: 3px solid #1f6fe5;
  border-bottom: 3px solid #1f6fe5;
  transform: rotate(45deg);
  transition: transform .35s ease;
}

.ms-faqX-item[open] .ms-faqX-icon {
  transform: rotate(-135deg);
}

/* ---------- Content ---------- */

.ms-faqX-content {
  padding: 0 32px 28px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
  animation: faqReveal .4s ease;
}

/* ---------- Animations ---------- */

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ms-faqX-title {
    font-size: 2.2rem;
  }

  .ms-faqX-item summary {
    padding: 22px 24px;
  }

  .ms-faqX-content {
    padding: 0 24px 24px;
  }
}

/* =====================================================
   FINAL CTA – ENTERPRISE CONVERSION SYSTEM
===================================================== */

.cta-control-zone {
  position: relative;
  padding: 60px 20px;
  background:
    linear-gradient(180deg, #1f6fe5 10%, #2563eb 70%);
  overflow: hidden;
}

/* Ambient glow layer */
.cta-control-zone::before {
  content: "";
  position: absolute;
  inset: -40%;
}

.cta-control-wrap {
  position: relative;
  max-width: 980px;
  margin: auto;
  display: flex;
  justify-content: left;
  align-items: left;
  text-align: left;
  z-index: 2;
}

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

.cta-control-content {
  max-width: 1200px;
}

.cta-control-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.9px;
  color: #ffffff;
  margin-bottom: 22px;
  opacity: 0;
  animation: ctaTitleReveal 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.cta-control-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #cbd5f5;
  margin-bottom: 52px;
  opacity: 0;
  animation: ctaFadeUp 1.1s ease forwards;
  animation-delay: 0.25s;
}

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

.cta-control-actions {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: ctaFadeUp 1.1s ease forwards;
  animation-delay: 0.45s;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
}

/* Primary CTA */
.cta-btn-primary {
  background: linear-gradient(135deg, #ffff);
  color: #2563eb;
  box-shadow: 0 14px 34px rgba(37,99,235,0.45);
}

.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(37,99,235,0.6);
}

/* Secondary CTA */
.cta-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  transform: translateY(-4px);
}

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

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

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

@keyframes ctaGlowMove {
  0%,100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

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

@media (max-width: 768px) {
  .cta-control-title {
    font-size: 2.4rem;
  }

  .cta-control-text {
    font-size: 1.05rem;
  }
}


/* -------------------------------- Gofinicky POS ------------------------------------ */

/* =====================================================
ADVANCED HERO – PREMIUM SAAS
===================================================== */

.gf-advanced-hero {
  padding: clamp(90px, 10vw, 160px) 0 clamp(80px, 8vw, 140px);
  background:
    radial-gradient(circle at top left, #eef4ff, transparent 45%),
    radial-gradient(circle at right center, #e0e7ff, transparent 55%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  overflow: hidden;
}

.gf-advanced-hero .row {
  align-items: center;
}

/* =====================================================
LEFT CONTENT
===================================================== */

.gf-badge-premium {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0e7ff, #eef2ff);
  color: #2563eb;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 20px;
}

.gf-hero-title-adv {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #020617;
}

.gf-hero-title-adv span {
  color: #2563eb;
}

.gf-hero-desc-adv {
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  color: #334155;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 14px;
}

.gf-hero-subdesc-adv {
  font-size: clamp(0.85rem, 2.4vw, 0.95rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.gf-hero-actions-adv {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.gf-btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gf-btn.primary {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37,99,235,.35);
}

.gf-btn.outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

/* =====================================================
ADVANCED ORBIT (DESKTOP / TABLET)
===================================================== */

.gf-orbit-advanced {
  position: relative;
  width: min(90vw, 440px);
  height: min(90vw, 440px);
  margin: auto;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Glow */
.orbit-glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37,99,235,.25), transparent 60%);
  filter: blur(40px);
  animation: glowBreath 6s ease-in-out infinite;
}

@keyframes glowBreath {
  0%,100% { opacity: .5; }
  50% { opacity: .85; }
}

/* Orbit rings */
.orbit-layer {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1.5px dashed rgba(37,99,235,.35);
  animation: rotateOrbit linear infinite;
}

.layer-1 { width: 55%; height: 55%; animation-duration: 22s; }
.layer-2 { width: 73%; height: 73%; animation-duration: 32s; animation-direction: reverse; }
.layer-3 { width: 92%; height: 92%; animation-duration: 42s; }

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

/* Center core */
.orbit-core-adv {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(82px, 18vw, 120px);
  height: clamp(82px, 18vw, 120px);
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(37,99,235,.55);
  z-index: 3;
  animation: coreBreath 5s ease-in-out infinite;
}

@keyframes coreBreath {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.orbit-core-adv small {
  font-size: 0.6rem;
  opacity: .9;
}

/* Floating nodes */
.orbit-node {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(15,23,42,.15);
  animation: floatNode 6s ease-in-out infinite;
}

.node-1 { top: 6%; right: 34%; animation-delay: 1s; }
.node-02 { left: -8%; top: 45%; animation-delay: 1.5s; }
.node-3 { bottom: 6%; animation-delay: 3s; }

@keyframes floatNode {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* =====================================================
RESPONSIVE – TABLET & BELOW
===================================================== */

@media (max-width: 991px) {
  .gf-advanced-hero .row {
    flex-direction: column;
    text-align: center;
  }

  .gf-hero-desc-adv,
  .gf-hero-subdesc-adv {
    margin-left: auto;
    margin-right: auto;
  }

  .gf-hero-actions-adv {
    justify-content: center;
  }

  .gf-orbit-advanced {
    margin-top: 48px;
  }
}

/* =====================================================
MOBILE-ONLY ALTERNATE ORBIT LAYOUT (≤480px)
===================================================== */

@media (max-width: 480px) {

  /* Remove circular visuals */
  .orbit-glow,
  .orbit-layer {
    display: none;
  }

  /* Stack container */
  .gf-orbit-advanced {
    width: 100%;
    height: auto;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Core becomes highlight card */
  .orbit-core-adv {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 18px 16px;
    animation: none;
    box-shadow: 0 18px 40px rgba(37,99,235,.35);
  }

  .orbit-core-adv small {
    font-size: 0.75rem;
  }

  /* Nodes become stacked feature cards */
  .orbit-node {
    position: relative;
    inset: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 14px 16px;
    border-radius: 14px;
    animation: none;
  }

  .orbit-node::before {
    content: "✓";
    margin-right: 10px;
    color: #2563eb;
    font-weight: 900;
  }

  .node-1,
  .node-2,
  .node-3 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .gf-hero-actions-adv {
    flex-direction: column;
  }

  .gf-btn {
    width: 100%;
  }
}

/* =====================================================
ACCESSIBILITY
===================================================== */

/* Manual toggle */
body.reduced-motion * {
  animation: none !important;
  transition: none !important;
}

/* System preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media (hover: none) {
  .orbit-node {
    animation: none;
  }
}

/* =====================================================
MOTION TOGGLE
===================================================== */

.motion-toggle {
  background: #f1f5f9;
  border: 1px solid #cbd5f5;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
  margin-bottom: 18px;
}



/* =====================================================
   WHO GOFINICKY POS IS FOR – RETAIL SPECTRUM FLOW
===================================================== */

.gf-spectrum-wrap {
  padding: 130px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* ---------- Header ---------- */

.gf-spectrum-head {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.gf-spectrum-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.gf-spectrum-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.gf-spectrum-title span {
  color: #1f6fe5;
}

.gf-spectrum-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Spectrum Track ---------- */

.gf-spectrum-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* Row */
.gf-spectrum-row {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: spectrumMove 28s linear infinite;
}

.gf-spectrum-track:hover .gf-spectrum-row {
  animation-play-state: paused;
}

/* ---------- Items ---------- */

.gf-spectrum-item {
  padding: 18px 32px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gf-spectrum-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 60px rgba(31,111,229,0.25);
}

/* Highlight */
.gf-spectrum-item.highlight {
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  border: none;
}

/* ---------- Footer ---------- */

.gf-spectrum-footer {
  max-width: 760px;
  margin: 70px auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Animation ---------- */

@keyframes spectrumMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-spectrum-title {
    font-size: 2.2rem;
  }

  .gf-spectrum-item {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}


/* ===============================
 PROBLEMS SOLVED – PREMIUM STYLE
=============================== */

.gf-problemX-wrap {
  padding: 60px 0;
  background: radial-gradient(circle at top, #f8fbff, #ffffff);
  overflow: hidden;
}

/* ---------- Header ---------- */

.gf-problemX-chip {
  padding: 8px 22px;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .5px;
  display: inline-block;
  margin-bottom: 16px;
}

.gf-problemX-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
}

.gf-problemX-title span {
  color: #2563eb;
}

.gf-problemX-intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- Cards ---------- */

.gf-problemX-side {
  padding: 42px 36px;
  border-radius: 28px;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(226,232,240,0.7);
  box-shadow: 0 30px 70px rgba(2,6,23,.08);
  transition: all .45s cubic-bezier(.4,0,.2,1);
  margin-bottom: 20px;
  position: relative;
}

.gf-problemX-side:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 45px 90px rgba(2,6,23,.15);
}

/* Problem side */

.gf-problemX-side.problem h4 {
  color: #dc2626;
  font-weight: 900;
  margin-bottom: 20px;
}

.gf-problemX-side.problem ul {
  padding-left: 0;
  list-style: none;
}

.gf-problemX-side.problem li {
  padding-left: 30px;
  margin-bottom: 14px;
  position: relative;
  color: #475569;
}

.gf-problemX-side.problem li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 800;
}

/* Solution side */

.gf-problemX-side.solution h4 {
  color: #16a34a;
  font-weight: 900;
  margin-bottom: 18px;
}

.gf-problemX-side.solution p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
}

/* ---------- Animated Wave Divider ---------- */

.gf-problemX-wave {
  width: 6px;
  height: 280px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    transparent,
    #2563eb,
    #22c55e,
    #2563eb,
    transparent
  );
  animation: waveFlow 3.8s ease-in-out infinite;
  opacity: .7;
}

@keyframes waveFlow {
  0%,100% { transform: scaleY(.85); }
  50% { transform: scaleY(1.05); }
}

/* ---------- Footer ---------- */

.gf-problemX-footer {
  font-size: 1.05rem;
  color: #475569;
}

/* ---------- Scroll Reveal ---------- */

.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateY(0);
  transition: all .9s ease;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .gf-problemX-title {
    font-size: 2.2rem;
  }

  .gf-problemX-wave {
    display: none;
  }
}


/* =====================================================
   CORE FUNCTIONALITY – COMMAND LANES STYLE
===================================================== */

.gf-coreX-wrap {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ---------- Header ---------- */

.gf-coreX-head {
  max-width: 900px;
  margin: 0 auto 90px;
  text-align: center;
}

.gf-coreX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.gf-coreX-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.gf-coreX-title span {
  color: #1f6fe5;
}

.gf-coreX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Console ---------- */

.gf-coreX-console {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ---------- Lanes ---------- */

.gf-coreX-lane {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 36px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  overflow: hidden;
  animation: laneScan 0.9s ease forwards;
}

.gf-coreX-lane::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(31,111,229,0.15),
    transparent
  );
  animation: laneSweep 3.5s linear infinite;
}

/* Hover focus */
.gf-coreX-lane:hover {
  box-shadow: 0 30px 75px rgba(31,111,229,0.25);
  transform: translateY(-6px);
}

/* Index */
.gf-coreX-index {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(31,111,229,0.4);
  min-width: 48px;
}

/* Content */
.gf-coreX-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 6px;
}

.gf-coreX-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Footer ---------- */

.gf-coreX-footer {
  max-width: 760px;
  margin: 90px auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Animations ---------- */

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

@keyframes laneSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-coreX-title {
    font-size: 2.2rem;
  }

  .gf-coreX-lane {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* =====================================================
   KEY FEATURES – FEATURE SIGNAL BLOCKS
===================================================== */

.gf-featureX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, rgba(31,111,229,0.08), transparent 45%),
    #ffffff;
}

/* ---------- Header ---------- */

.gf-featureX-head {
  max-width: 900px;
  margin: 0 auto 90px;
  text-align: center;
}

.gf-featureX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.gf-featureX-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.gf-featureX-title span {
  color: #1f6fe5;
}

.gf-featureX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Stack ---------- */

.gf-featureX-stack {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ---------- Blocks ---------- */

.gf-featureX-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 34px 38px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  overflow: hidden;
  animation: featureRise .9s ease forwards;
}

/* Signal line */
.gf-featureX-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(31,111,229,0.3),
    rgba(31,111,229,0.9),
    rgba(31,111,229,0.3)
  );
  animation: signalPulse 2.6s ease-in-out infinite;
}

/* Hover focus */
.gf-featureX-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(31,111,229,0.25);
}

/* ---------- Icon ---------- */

.gf-featureX-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Content ---------- */

.gf-featureX-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 6px;
}

.gf-featureX-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Animations ---------- */

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

@keyframes signalPulse {
  0%,100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-featureX-title {
    font-size: 2.2rem;
  }

  .gf-featureX-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}


/* =====================================================
   MULTI-BRANCH & MULTI-COMPANY – EXPANSION GRID
===================================================== */

.gf-scaleX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at center, rgba(37,99,235,.12), transparent 60%),
    #fff;
  overflow: hidden;
}

/* ---------- Header ---------- */

.gf-scaleX-head {
  max-width: 860px;
  margin: 0 auto 90px;
}

.gf-scaleX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(37,99,235,.12);
  color: #2563eb;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.gf-scaleX-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 14px;
}

.gf-scaleX-title span {
  color: #2563eb;
}

.gf-scaleX-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #64748b;
}

/* ---------- Map ---------- */

.gf-scaleX-map {
  position: relative;
  width: 520px;
  height: 520px;
  margin-bottom: 80px;
}

/* ---------- Core ---------- */

.gf-scaleX-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg,#2563eb,#3b82f6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 35px 90px rgba(37,99,235,.55);
  animation: corePulse 3.6s ease-in-out infinite;
  z-index: 5;
}

.gf-scaleX-core strong {
  font-size: 1.15rem;
  font-weight: 900;
}

.gf-scaleX-core span {
  font-size: .8rem;
  opacity: .9;
}

/* ---------- Nodes ---------- */

.gf-scaleX-node {
  position: absolute;
  padding: 14px 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 18px 45px rgba(15,23,42,.12);
  animation: nodeFloat 5.2s ease-in-out infinite;
}

.gf-scaleX-node.company {
  border-left: 4px solid #2563eb;
}

/* Positions */
.n1 { top: -8px; left: 50%; transform: translateX(-50%); }
.n2 { right: -10px; top: 50%; transform: translateY(-50%); }
.n3 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.c1 { left: -10px; top: 34%; }
.c2 { left: -10px; bottom: 34%; }

/* ---------- Rings ---------- */

.gf-scaleX-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px dashed rgba(37,99,235,.25);
}

.gf-scaleX-ring.r1 {
  width: 360px;
  height: 360px;
  animation: rotate 28s linear infinite;
}

.gf-scaleX-ring.r2 {
  width: 460px;
  height: 460px;
  animation: rotateReverse 40s linear infinite;
}

/* ---------- Points ---------- */

.gf-scaleX-points {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px 30px;
  font-size: .95rem;
  color: #334155;
}

.gf-scaleX-footer {
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Animations ---------- */

@keyframes corePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes nodeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

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

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

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-scaleX-map {
    width: 100%;
    height: 420px;
  }

  .gf-scaleX-title {
    font-size: 2.1rem;
  }

  .gf-scaleX-points {
    grid-template-columns: 1fr;
  }

  .gf-scaleX-ring {
    display: none;
  }
}


/* =====================================================
   RETAIL + WHOLESALE – DUAL-TRACK CONVEYOR
===================================================== */
.gf-dualX-wrap {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* ===============================
   HEADER
================================ */
.gf-dualX-head {
  max-width: 900px;
  margin: 0 auto 80px;
}

.gf-dualX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.gf-dualX-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.gf-dualX-title span {
  color: #1f6fe5;
}

.gf-dualX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ===============================
   CONVEYOR
================================ */
.gf-dualX-conveyor {
  max-width: 1100px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Row (center holder) */
.gf-dualX-row {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* Track */
.gf-dualX-track {
  display: flex;
  gap: 22px;
  align-items: center;
  will-change: transform;
}

/* Motion */
.gf-dualX-track.retail {
  animation: slideLeft 28s linear infinite;
}

.gf-dualX-track.wholesale {
  animation: slideRight 32s linear infinite;
}

/* Pause on hover */
.gf-dualX-conveyor:hover .gf-dualX-track {
  animation-play-state: paused;
}

/* ===============================
   TILES
================================ */
.gf-dualX-tile {
  min-width: 260px;
  padding: 22px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.gf-dualX-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(31,111,229,0.25);
}

.gf-dualX-tile .icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.gf-dualX-tile strong {
  font-size: 1rem;
  font-weight: 800;
  color: #020617;
}

.gf-dualX-tile small {
  font-size: 0.85rem;
  color: #64748b;
}

/* ===============================
   FOOTER
================================ */
.gf-dualX-footer {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #334155;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

@keyframes slideRight {
  from { transform: translateX(0); }
  to { transform: translateX(40%); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .gf-dualX-title {
    font-size: 2.2rem;
  }

  .gf-dualX-tile {
    min-width: 220px;
  }
}


/* =====================================================
 BUSINESS BENEFITS – PREMIUM FLOAT STYLE
===================================================== */

.gf-benefitP-wrap {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

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

.gf-benefitP-head {
  max-width: 900px;
  margin: 0 auto 90px;
}

.gf-benefitP-chip {
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31, 111, 229, 0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.gf-benefitP-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  line-height: 1.2;
}

.gf-benefitP-title span {
  color: #1f6fe5;
}

.gf-benefitP-intro {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
}

/* =====================================================
 CORE BLOCK
===================================================== */

.gf-benefitP-core {
  width: 240px;
  height: 200px;
  margin: 0 auto;
  border-radius: 90px;
  background: linear-gradient(71deg, #ffffff00, #3b82f645);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 40px 90px rgba(31, 111, 229, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  animation: coreFloat 4s ease-in-out infinite;
  text-align: center;
}

.gf-benefitP-img{
  width: auto;
  height: auto;
  border-radius: 30px;
}

.gf-benefitP-core i {
  font-size: 3.6rem;
  margin-bottom: 14px;
  opacity: 0.95;
}

.gf-benefitP-core h4 {
  font-weight: 900;
  margin-bottom: 6px;
}

.gf-benefitP-core span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* =====================================================
 BENEFIT CARDS
===================================================== */

.gf-benefitP-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(15,23,42,0.04);

  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s ease forwards;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.gf-benefitP-card i {
  font-size: 2.4rem;
  color: #1f6fe5;
  flex-shrink: 0;
}

.gf-benefitP-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(31, 111, 229, 0.25),
    inset 0 0 0 1px rgba(31,111,229,0.25);
}

/* =====================================================
 STAGGERED ANIMATION DELAYS
===================================================== */

.float-delay-1 { animation-delay: 0.1s; }
.float-delay-2 { animation-delay: 0.25s; }
.float-delay-3 { animation-delay: 0.4s; }
.float-delay-4 { animation-delay: 0.55s; }
.float-delay-5 { animation-delay: 0.7s; }
.float-delay-6 { animation-delay: 0.85s; }

/* =====================================================
 FOOTER
===================================================== */

.gf-benefitP-footer {
  margin-top: 90px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  color: #334155;
}

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

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

@keyframes coreFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 991px) {
  .gf-benefitP-core {
    margin: 10px auto 20px;
  }
}

@media (max-width: 576px) {
  .gf-benefitP-title {
    font-size: 2.1rem;
  }

  .gf-benefitP-card {
    font-size: 0.9rem;
  }

  .gf-benefitP-card i {
    font-size: 2rem;
  }
}



/* =====================================================
 GOFINICKY POS – USE CASES (FLOATING JOURNEY STYLE)
===================================================== */

.gf-premium-usecase {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.gf-premium-usecase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(99,102,241,.08), transparent 40%);
}

/* ---------- Header ---------- */

.gf-premium-chip {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 50px;
  color: #1d4ed8;
  background: linear-gradient(90deg, #e0e7ff, #eff6ff);
  display: inline-block;
}

.gf-premium-title {
  font-size: 3rem;
  font-weight: 900;
  color: #020617;
}

.gf-premium-title span {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gf-premium-intro {
  max-width: 680px;
  margin: 14px auto 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Timeline Container ---------- */

.gf-premium-timeline {
  position: relative;
  margin-top: 80px;
  padding-left: 0;
}

/* central glowing path */
.gf-premium-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #2563eb,
    #60a5fa,
    #4f46e5
  );
  border-radius: 10px;
  opacity: 0.6;
}

/* ---------- Items ---------- */

.gf-premium-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 80px;
  animation: floatIn 0.9s ease forwards;
  opacity: 0;
}

.gf-premium-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.gf-premium-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.gf-premium-item:nth-child(1){animation-delay:.1s}
.gf-premium-item:nth-child(2){animation-delay:.3s}
.gf-premium-item:nth-child(3){animation-delay:.5s}
.gf-premium-item:nth-child(4){animation-delay:.7s}
.gf-premium-item:nth-child(5){animation-delay:.9s}

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

/* Connector Dot */
.gf-premium-item::before {
  content: "";
  position: absolute;
  top: 26px;
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(37,99,235,.2),
    0 0 25px rgba(37,99,235,.6);
}

.gf-premium-item:nth-child(odd)::before {
  right: -9px;
}

.gf-premium-item:nth-child(even)::before {
  left: -9px;
}

/* ---------- Cards ---------- */

.gf-premium-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 34px;
  box-shadow: 0 25px 60px rgba(2,6,23,.12);
  transition: all 0.45s cubic-bezier(.4,0,.2,1);
  position: relative;
}

/* glowing border on hover */
.gf-premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s ease;
}

.gf-premium-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 45px 100px rgba(37,99,235,.35);
}

.gf-premium-card:hover::after {
  opacity: 0.25;
}

.gf-premium-card h4 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.gf-premium-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}

/* ---------- Final Step (Destination) ---------- */

.gf-premium-item.active .gf-premium-card {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 50px 120px rgba(37,99,235,.55);
}

.gf-premium-item.active h4,
.gf-premium-item.active p {
  color: #ffffff;
}

/* ---------- Mobile ---------- */

@media (max-width: 992px) {
  .gf-premium-timeline::before {
    left: 20px;
  }

  .gf-premium-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left !important;
    left: 0 !important;
  }

  .gf-premium-item::before {
    left: 11px !important;
    right: auto;
  }
}

/* =====================================================
 GOFINICKY POS – PLATFORM ADVANTAGES (ENERGY GRID)
===================================================== */

.gf-adoptX-wrap {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(99,102,241,.08), transparent 40%),
    linear-gradient(180deg, #f8fbff, #ffffff);
  overflow: hidden;
}

/* ---------- Header ---------- */

.gf-adoptX-head {
  max-width: 820px;
  margin: 0 auto 90px;
  text-align: center;
}

.gf-adoptX-chip {
  display: inline-block;
  padding: 8px 22px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #2563eb;
  border-radius: 50px;
  background: linear-gradient(90deg, #e0e7ff, #eff6ff);
  margin-bottom: 14px;
}

.gf-adoptX-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #020617;
}

.gf-adoptX-title span {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gf-adoptX-intro {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.75;
  margin-top: 12px;
}

/* ---------- Grid ---------- */

.gf-adoptX-waves {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
}

/* ---------- Cards ---------- */

.gf-adoptX-wave {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(2,6,23,.12);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  animation: floatWave 6s ease-in-out infinite;
}

/* staggered floating */
.gf-adoptX-wave:nth-child(odd) {
  animation-delay: -2s;
}
.gf-adoptX-wave:nth-child(even) {
  animation-delay: -4s;
}

@keyframes floatWave {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* neon border */
.gf-adoptX-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
}

/* hover energy */
.gf-adoptX-wave:hover {
  transform: translateY(-22px) scale(1.04);
  box-shadow: 0 50px 120px rgba(37,99,235,.35);
}

.gf-adoptX-wave:hover::before {
  opacity: 1;
}

/* ---------- Icon ---------- */

.gf-adoptX-wave .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 1.9rem;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(37,99,235,.45);
}

/* ---------- Text ---------- */

.gf-adoptX-wave strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.gf-adoptX-wave p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* ---------- Highlight Card (Power Core) ---------- */

.gf-adoptX-wave.highlight {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 60px 140px rgba(37,99,235,.55);
}

.gf-adoptX-wave.highlight strong,
.gf-adoptX-wave.highlight p {
  color: #ffffff;
}

.gf-adoptX-wave.highlight .icon {
  background: #ffffff;
  color: #2563eb;
}

/* pulsing aura */
.gf-adoptX-wave.highlight::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(37,99,235,.35), transparent 70%);
  animation: pulseAura 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseAura {
  0%,100% { opacity: .4; }
  50% { opacity: .9; }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-adoptX-title {
    font-size: 2.2rem;
  }

  .gf-adoptX-wave.highlight {
    transform: none;
  }
}


/* =====================================================
   GOFINICKY POS – ECOSYSTEM ORBIT MATRIX
===================================================== */

.gf-ecoX-wrap {
  padding: 60px 0;
  background:
    radial-gradient(circle at center, rgba(31,111,229,0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* ---------- Header ---------- */

.gf-ecoX-head {
  max-width: 920px;
  margin: 0 auto 120px;
  text-align: center;
}

.gf-ecoX-chip {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.gf-ecoX-title {
  font-size: 3rem;
  font-weight: 900;
  color: #020617;
  line-height: 1.2;
  margin-bottom: 18px;
}

.gf-ecoX-title span {
  color: #1f6fe5;
}

.gf-ecoX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Orbit System ---------- */

.gf-ecoX-orbit {
  position: relative;
  width: 560px;
  height: 560px;
  margin: 0 auto 100px;
}

/* Core */
.gf-ecoX-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 40px 100px rgba(31,111,229,0.6);
  animation: coreBreath 4s ease-in-out infinite;
  z-index: 5;
}

.gf-ecoX-core strong {
  font-size: 1.15rem;
  font-weight: 900;
}

.gf-ecoX-core small {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Nodes */
.gf-ecoX-node {
  position: absolute;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 16px;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 18px 45px rgba(15,23,42,0.12);
  animation: nodeFloat 5s ease-in-out infinite;
}

/* Node positions */
.n1 { top: 0; left: 36%; transform: translateX(-50%); }
.n2 { right: -7%; top: 50%; transform: translateY(-50%); }
.n3 { bottom: 0; left: 36%; transform: translateX(-50%); }
.n4 { left: -6%; top: 50%; transform: translateY(-40%); }

/* Rings */
.gf-ecoX-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(31,111,229,0.25);
}

.gf-ecoX-ring.r1 {
  width: 380px;
  height: 380px;
  animation: orbitSpin 26s linear infinite;
}

.gf-ecoX-ring.r2 {
  width: 500px;
  height: 500px;
  animation: orbitSpinReverse 38s linear infinite;
}

/* Footer */
.gf-ecoX-footer {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
}

/* ---------- Animations ---------- */

@keyframes coreBreath {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes nodeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

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

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

/* --- Tablet & Mobile Optimization --- */
@media (max-width: 768px) {
  .gf-ecoX-wrap {
    padding: 40px 0;
  }

  /* Reset Orbit container to a simple vertical stack */
  .gf-ecoX-orbit {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    gap: 15px; /* Spacing between the stacked items */
  }

  /* Hide the rings/circles entirely on mobile */
  .gf-ecoX-ring {
    display: none;
  }

  /* 1. Ensure the Core (Center Hub) stays on top */
  .gf-ecoX-core {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    order: 1; /* Forces it to the top of the stack */
    z-index: 5;
  }

  /* 2. Reset the Nodes (Orbiting Items) */
  .gf-ecoX-node {
    position: relative !important; /* Overrides absolute positioning */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important; /* Removes the center translations */
    
    width: 90%; /* Makes labels wide enough for mobile */
    max-width: 280px;
    text-align: center;
    order: 2; /* Places them after the core */
    
    /* Visual styling for mobile buttons */
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e1ecff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  /* 3. Adjust Heading sizes for smaller screens */
  .gf-ecoX-title {
    font-size: 26px;
    padding: 0 10px;
  }
}

/* Specific fix for very small phones */
@media (max-width: 480px) {
  .gf-ecoX-core {
    width: 170px;
    height: 170px;
  }
}

/* =====================================================
   DEMO & ONBOARDING – GUIDED RUNWAY STYLE
===================================================== */

.gf-demoX-wrap {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ---------- Header ---------- */

.gf-demoX-head {
  max-width: 900px;
  margin: 0 auto 110px;
  text-align: center;
}

.gf-demoX-chip {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.gf-demoX-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 18px;
}

.gf-demoX-title span {
  color: #1f6fe5;
}

.gf-demoX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- Runway ---------- */

.gf-demoX-runway {
  max-width: 1100px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 26px;
  position: relative;
}

/* Runway line */
.gf-demoX-runway::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    rgba(31,111,229,0.15),
    rgba(31,111,229,0.6),
    rgba(31,111,229,0.15)
  );
  animation: runwayFlow 3.5s ease-in-out infinite;
}

/* ---------- Steps ---------- */

.gf-demoX-step {
  position: relative;
  background: #ffffff;
  padding: 42px 26px;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  text-align: center;
  animation: stepGlow 4.5s ease-in-out infinite;
  transition:
    transform 0.45s cubic-bezier(.4,0,.2,1),
    box-shadow 0.45s cubic-bezier(.4,0,.2,1),
    border-color 0.45s ease,
    background 0.45s ease;
}

/* stagger animation */
.gf-demoX-step:nth-child(1) { animation-delay: 0s; }
.gf-demoX-step:nth-child(2) { animation-delay: .6s; }
.gf-demoX-step:nth-child(3) { animation-delay: 1.2s; }
.gf-demoX-step:nth-child(4) { animation-delay: 1.8s; }
.gf-demoX-step:nth-child(5) { animation-delay: 2.4s; }

/* ---------- Hover Highlight ---------- */

.gf-demoX-step:hover {
  transform: translateY(-14px) scale(1.03);
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border-color: #1f6fe5;
  box-shadow:
    0 35px 90px rgba(31,111,229,0.35),
    0 0 0 6px rgba(31,111,229,0.12);
}

/* glow aura */
.gf-demoX-step::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 34px;
  background: linear-gradient(135deg, #1f6fe5, #60a5fa);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.45s ease;
}

.gf-demoX-step:hover::after {
  opacity: 0.35;
}

/* ---------- Icon ---------- */

.gf-demoX-step .icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition:
    transform .4s ease,
    background .4s ease,
    box-shadow .4s ease,
    color .4s ease;
}

/* icon hover */
.gf-demoX-step:hover .icon {
  transform: scale(1.15) rotate(-4deg);
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(31,111,229,.45);
}

/* ---------- Text ---------- */

.gf-demoX-step strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 8px;
}

.gf-demoX-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #475569;
}

/* ---------- Highlight Final Step ---------- */

.gf-demoX-step.highlight {
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  border-color: transparent;
  box-shadow: 0 40px 110px rgba(31,111,229,.5);
}

.gf-demoX-step.highlight strong,
.gf-demoX-step.highlight p {
  color: #ffffff;
}

.gf-demoX-step.highlight .icon {
  background: rgba(255,255,255,0.22);
  color: #ffffff;
}

/* ---------- Base Animation ---------- */

@keyframes stepGlow {
  0%,100% {
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  }
  50% {
    box-shadow: 0 22px 65px rgba(31,111,229,0.18);
  }
}
/* ---------- Actions ---------- */

.gf-demoX-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.gf-demoX-btn {
  padding: 18px 14px;
  border-radius: 60px;
  font-weight: 800;
  text-decoration: none;
  transition: all .35s ease;
}

.gf-demoX-btn.primary {
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  box-shadow: 0 25px 70px rgba(31,111,229,0.6);
}

.gf-demoX-btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 100px rgba(31,111,229,0.8);
}

.gf-demoX-btn.outline {
  border: 2px solid #1f6fe5;
  color: #1f6fe5;
}

.gf-demoX-btn.outline:hover {
  background: rgba(31,111,229,0.1);
}

/* ---------- Animations ---------- */

@keyframes runwayFlow {
  0%,100% { opacity: .4; }
  50% { opacity: 1; }
}

@keyframes stepGlow {
  0%,100% { box-shadow: 0 18px 45px rgba(15,23,42,0.08); }
  50% { box-shadow: 0 28px 75px rgba(31,111,229,0.35); }
}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
  .gf-demoX-runway {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gf-demoX-runway::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .gf-demoX-title {
    font-size: 2.2rem;
  }
}


/* =====================================================
   FAQ – CLARITY DROPDOWNS STYLE
===================================================== */

.gf-faqX-wrap {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ---------- Header ---------- */

.gf-faqX-head {
  max-width: 900px;
  margin: 0 auto 90px;
  text-align: center;
}

.gf-faqX-chip {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.gf-faqX-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 16px;
}

.gf-faqX-title span {
  color: #1f6fe5;
}

.gf-faqX-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* ---------- FAQ List ---------- */

.gf-faqX-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- FAQ Item ---------- */

.gf-faqX-item {
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  overflow: hidden;
  transition: box-shadow .35s ease;
}

.gf-faqX-item[open] {
  box-shadow: 0 30px 80px rgba(31,111,229,0.25);
}

/* Question */
.gf-faqX-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 34px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #020617;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gf-faqX-item summary::-webkit-details-marker {
  display: none;
}

/* Icon */
.gf-faqX-item .icon {
  font-size: 1.4rem;
  color: #1f6fe5;
  transition: transform .35s ease;
}

.gf-faqX-item[open] .icon {
  transform: rotate(45deg);
}

/* Answer */
.gf-faqX-item p {
  padding: 0 34px 28px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  animation: answerSlide .35s ease;
}

/* ---------- Animations ---------- */

@keyframes answerSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .gf-faqX-title {
    font-size: 2.2rem;
  }

  .gf-faqX-item summary {
    padding: 22px 26px;
  }

  .gf-faqX-item p {
    padding: 0 26px 24px;
  }
}


/* =====================================================
   FINAL CTA – CONTROL WAVE STYLE
===================================================== */

.gf-ctaX-wrap {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #1f6fe5 , #2563eb);
  overflow: hidden;
}

/* Animated background waves */
.gf-ctaX-bg {
  inset: -40%;
  position: relative;
  background:
    radial-gradient(circle at top right, #dbeafe, transparent 45%),
    radial-gradient(circle at bottom left, #e0e7ff, transparent 45%),
    linear-gradient(180deg, #1f6fe5 10%, #2563eb 70%);
  overflow: hidden;
  animation: ctaWaveRotate 28s linear infinite;
  filter: blur(120px);
}

.gf-ctaX-bg::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(99,102,241,0.18), transparent 60%);
  animation: ctaGlowMove 10s ease-in-out infinite;
}

/* Core */
.gf-ctaX-core {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #ffffff;
}

/* Title */
.gf-ctaX-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 100%;
}
.gf-ctaX-title span {
  color: #0f172a;
}

/* Text */
.gf-ctaX-text {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.8;
  color: #fff;
}

/* Actions */
.gf-ctaX-actions {
  display: flex;
  justify-content: left;
  gap: 28px;
  flex-wrap: wrap;
}

/* Buttons */
.gf-ctaX-btn {
  padding: 18px 26px;
  border-radius: 60px;
  font-weight: 900;
  text-decoration: none;
  transition: all .35s ease;
}

/* Primary */
.gf-ctaX-btn.primary {
  background: linear-gradient(135deg, #ffff);
  color: #1f6fe5;
  box-shadow: 0 28px 90px rgba(31,111,229,0.7);
}

.gf-ctaX-btn.primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 40px 120px rgba(31,111,229,0.9);
}

/* Secondary */
.gf-ctaX-btn.secondary {
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
}

.gf-ctaX-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

/* Animation */
@keyframes ctaWaveRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .gf-ctaX-title {
    font-size: 2.2rem;
  }

  .gf-ctaX-wrap {
    padding: 60px 0;
  }
}

