/* HERO */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,400px);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: .75rem;
  gap: .5rem;
}
.eyebrow-badge {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.4);
  color: #6ee7b7;
  padding: .3rem .5rem;
  border-radius: 999px;
  font-size: .7rem;
  line-height: 1.2;
  box-shadow: 0 12px 32px rgba(16,185,129,.4);
}

.hero-title {
  font-size: clamp(1.9rem,1.2vw,2.3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 20px 60px rgba(99,102,241,.5);
  filter: drop-shadow(0 30px 60px rgba(20,184,166,.4));
}

.hero-desc {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  margin-bottom: 1.5rem;
}

.btn-main-xl {
  display: inline-block;
  background: var(--grad-accent);
  color: #fff;
  font-weight: 500;
  font-size: .9rem;
  line-height: 1.2;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(99,102,241,.4);
  transition: var(--transition-fast);
  border: 0;
}
.btn-main-xl:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 40px 100px rgba(99,102,241,.6);
}

.trust-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--text-soft);
  margin-top: .75rem;
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(52,211,153,.8), 0 0 30px rgba(52,211,153,.4);
}
.trust-text {
  line-height: 1.4;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chip {
  font-size: .7rem;
  line-height: 1.2;
  color: var(--text-main);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  padding: .5rem .6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
}

/* ORDER CARD (RIGHT SIDE) */
.order-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem .75rem;
  min-height: 200px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: breathing 4s infinite;
}
@keyframes breathing {
  0%,100% { box-shadow: 0 30px 120px rgba(99,102,241,.25); }
  50%     { box-shadow: 0 30px 120px rgba(20,184,166,.3); }
}

.order-card-top {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: .75rem;
  margin-bottom: .75rem;
  font-size: .8rem;
  line-height: 1.4;
}
.file-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .4rem;
  color: var(--text-main);
}
.file-name {
  font-weight: 500;
}
.file-pages {
  color: var(--text-soft);
}
.file-desc {
  color: var(--text-soft);
}
.file-price {
  font-weight: 600;
  color: var(--accent-green);
}

.order-card-mid {
  font-size: .8rem;
  margin-bottom: .75rem;
}
.status-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.status-dot {
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(52,211,153,.8), 0 0 30px rgba(52,211,153,.4);
  margin-right: .5rem;
}
.status-dot.ready {
  background: var(--accent-green);
}
.status-text {
  flex: 1;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.status-time {
  font-size: .7rem;
  color: var(--text-soft);
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 20px rgba(0,0,0,.8);
}
.progress-bar-inner {
  width: 65%;
  height: 100%;
  background: var(--grad-accent);
  box-shadow: 0 0 20px rgba(99,102,241,.8), 0 0 60px rgba(99,102,241,.4);
  animation: progressFlow 2.5s infinite;
}
@keyframes progressFlow {
  0%   { width: 40%; }
  50%  { width: 80%; }
  100% { width: 65%; }
}

.order-card-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  font-size: .75rem;
}
.mini-info {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: .6rem .7rem;
  line-height: 1.4;
  box-shadow: var(--shadow-card);
}
.mini-label {
  color: var(--text-soft);
  font-size: .7rem;
}
.mini-value {
  color: var(--text-main);
  font-weight: 500;
  font-size: .8rem;
}

/* floating bubbles */
.floating-bubble {
  position: absolute;
  background: rgba(17,25,40,.7);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: .5rem .6rem;
  font-size: .7rem;
  line-height: 1.3;
  color: var(--text-dim);
  box-shadow: var(--shadow-floating);
  animation: floaty 4s ease-in-out infinite;
  white-space: nowrap;
}
.bubble-1 { top: -10px; right: -10px; animation-delay: 0s; }
.bubble-2 { bottom: 20px; right: -40px; animation-delay: .8s; }
.bubble-3 {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  animation-delay: 1.6s;
}
.glow-soft {
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(52,211,153,.8), 0 0 30px rgba(52,211,153,.5);
}
@keyframes floaty {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-6px) scale(1.03); }
}

/* FEATURES + WHY */
.section-head {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 20px 60px rgba(0,0,0,.8);
}
.section-head.left { text-align: left; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(260px,100%),1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition-fast);
}
.feature-card::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 20%, rgba(99,102,241,.15) 0%, rgba(0,0,0,0) 70%);
  opacity:0;
  transition: var(--transition-fast);
}
.feature-card:hover::before { opacity:1; }
.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 40px 140px rgba(0,0,0,.9), 0 60px 160px rgba(99,102,241,.4);
}

.feature-emoji {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: .4rem;
}
.feature-desc {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.why-inner {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,300px);
  gap: 2rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.why-inner::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 80% 0%, rgba(99,102,241,.18) 0%, rgba(0,0,0,0) 70%);
  opacity:.4;
  pointer-events:none;
}

.why-list {
  list-style: none;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--text-dim);
  display: grid;
  gap: .5rem;
  margin-top: 1rem;
}



    .stat-card {
      background: rgba(0,0,0,.2);
      border-radius: var(--radius-md);
      border: 1px solid rgba(255,255,255,.15);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    /* Radial gradient background */
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 20%, rgba(99,102,241,.28) 0%, rgba(0,0,0,0) 70%);
      opacity: 1;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    /* Animated light beam */
    .stat-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -100%;
      width: 100%;
      height: 200%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(99,102,241,.4) 30%,
        rgba(139,92,246,.6) 50%,
        rgba(99,102,241,.4) 70%,
        transparent
      );
      transform: skewX(-20deg);
      animation: shimmer 3s infinite;
      pointer-events: none;
      opacity: 0;
    }

    @keyframes shimmer {
      0% {
        left: -100%;
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        left: 200%;
        opacity: 0;
      }
    }

    /* Hover effects */
    .stat-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(99,102,241,.6);
      box-shadow: 
        0 0 30px rgba(99,102,241,.5),
        0 0 60px rgba(99,102,241,.3),
        0 30px 120px rgba(0,0,0,.9);
    }

    .stat-card:hover::before {
      opacity: 0;
    }

    .stat-card:hover::after {
      animation: shimmer 1.5s ease-in-out;
    }

    /* Floating particles */
    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(99,102,241,.8);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
    }

    .stat-card:hover .particle {
      animation: float 2s ease-in-out infinite;
    }

    .particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
    .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.3s; }
    .particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 0.6s; }
    .particle:nth-child(4) { top: 75%; left: 25%; animation-delay: 0.9s; }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
      }
      25% {
        opacity: 1;
      }
      50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 0.8;
      }
      75% {
        opacity: 0.4;
      }
    }

    /* Glowing edge effect */
    .neon-border {
      position: relative;
    }

    .neon-border::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: var(--radius-md);
      padding: 2px;
      background: linear-gradient(45deg, 
        rgba(99,102,241,.6),
        rgba(139,92,246,.6),
        rgba(99,102,241,.6)
      );
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .neon-border:hover::before {
      opacity: 1;
      animation: glow-pulse 2s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%, 100% {
        filter: blur(4px);
        opacity: 0.8;
      }
      50% {
        filter: blur(8px);
        opacity: 1;
      }
    }

    .stat-main {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: .5rem;
      position: relative;
      z-index: 1;
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--text-main);
      text-shadow: 0 20px 60px rgba(0,0,0,.8), 0 0 40px rgba(99,102,241,.6);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .stat-card:hover .stat-number {
      transform: scale(1.1);
      text-shadow: 
        0 0 20px rgba(99,102,241,1),
        0 0 40px rgba(139,92,246,.8),
        0 20px 60px rgba(0,0,0,.9);
      color: #a78bfa;
    }

    .stat-label {
      font-size: .85rem;
      color: var(--text-soft);
      text-align: right;
      max-width: 140px;
      line-height: 1.3;
      position: relative;
      z-index: 1;
      transition: color 0.3s ease;
    }

    .stat-card:hover .stat-label {
      color: #e0e7ff;
    }

    .stat-foot {
      font-size: .75rem;
      color: var(--text-dim);
      line-height: 1.4;
      position: relative;
      z-index: 1;
      transition: color 0.3s ease;
    }

    .stat-card:hover .stat-foot {
      color: #c7d2fe;
    }

    /* Lift effect for second card */
    .hover-lift:hover {
      transform: translateY(-12px) rotateX(5deg);
    }

    /* Ripple effect on click */
    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(99,102,241,.4);
      transform: scale(0);
      animation: ripple-animation 0.6s ease-out;
      pointer-events: none;
    }

    @keyframes ripple-animation {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* Icon glow effect */
    .stat-foot::before {
      content: '✨';
      margin-right: 4px;
      display: inline-block;
      animation: icon-pulse 2s ease-in-out infinite;
    }

    @keyframes icon-pulse {
      0%, 100% {
        opacity: 0.5;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }
/* RESPONSIVE FOR HOME */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
}
.hero-right {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 5;
}
.order-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
