/* ═══ WINDOWS SIGNAGE PAGE SPECIFIC STYLES ═══ */

/* ═══ HERO ═══ */
.win-hero {
  margin-top: 100px;
  min-height: 88vh;
  background: linear-gradient(135deg, #f2f9f5 0%, #ffffff 50%, #e6f4eb 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
}

.win-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(46, 184, 114, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(20, 56, 38, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.win-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

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

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: 3%;
  background: radial-gradient(circle, rgba(46, 184, 114, 0.15), transparent 70%);
  animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: 8%;
  background: radial-gradient(circle, rgba(30, 92, 62, 0.1), transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 35%;
  left: 42%;
  background: radial-gradient(circle, rgba(46, 184, 114, 0.08), transparent 70%);
  animation: orbFloat3 6s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0)scale(1)
  }

  33% {
    transform: translate(-30px, 40px)scale(1.1)
  }

  66% {
    transform: translate(20px, -20px)scale(0.95)
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0)scale(1)
  }

  50% {
    transform: translate(40px, -50px)scale(1.15)
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0)scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-20px, 30px)scale(1.2);
    opacity: 1
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(10, 31, 20, 0.04);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '●';
  font-size: 0.6rem;
  color: var(--green-light);
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.hero-title span {
  background: linear-gradient(120deg, var(--green-light), var(--green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══ HERO VISUAL ═══ */
.hero-visual {
  perspective: 1500px;
  animation: fadeUp 1s 0.2s ease both;
  display: flex;
  justify-content: center;
  align-items: center;
}

.win-dashboard-premium {
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(46, 184, 114, 0.15);
  box-shadow: 0 40px 100px rgba(10, 31, 20, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transform: rotateY(-20deg) rotateX(10deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: winHeroFloat 8s ease-in-out infinite;
}

.win-dashboard-premium:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 60px 120px rgba(10, 31, 20, 0.2);
}

@keyframes winHeroFloat {
  0%, 100% { transform: rotateY(-20deg) rotateX(10deg) translateY(0); }
  50% { transform: rotateY(-20deg) rotateX(10deg) translateY(-20px); }
}

.win-dash-header {
  background: #f8fbfa;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(46, 184, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.win-dash-dots { display: flex; gap: 8px; }
.win-dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e0eadd; }
.win-dash-dots span:nth-child(1) { background: #ff5f56; }
.win-dash-dots span:nth-child(2) { background: #ffbd2e; }
.win-dash-dots span:nth-child(3) { background: #27c93f; }

.win-dash-title { font-size: 0.75rem; font-weight: 700; color: var(--green-dark); opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }

.win-dash-body { display: flex; height: 320px; }

.win-dash-sidebar { width: 70px; background: #fafdfb; border-right: 1px solid rgba(46, 184, 114, 0.08); padding: 20px 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.win-dash-item { width: 32px; height: 32px; border-radius: 8px; background: #eef5f1; transition: all 0.3s ease; }
.win-dash-item.active { background: var(--green-light); box-shadow: 0 4px 12px rgba(46, 184, 114, 0.3); }

.win-dash-main { flex: 1; padding: 30px; background: #fff; }
.win-dash-stats { display: flex; gap: 20px; margin-bottom: 30px; }
.win-dash-stat-box { flex: 1; height: 80px; border-radius: 12px; background: linear-gradient(135deg, #f0f7f3, #ffffff); border: 1px solid rgba(46, 184, 114, 0.1); position: relative; overflow: hidden; }
.win-dash-stat-box::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--green-light); opacity: 0.3; }

.win-dash-chart { height: 120px; background: #fdfdfd; border-radius: 12px; border: 1px solid rgba(46, 184, 114, 0.05); position: relative; padding: 15px; }
.win-chart-line { width: 100%; height: 100%; background: radial-gradient(circle at 10% 20%, rgba(46, 184, 114, 0.1) 0%, transparent 40%); border-bottom: 2px solid var(--green-light); position: relative; }
.win-chart-line::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(46, 184, 114, 0.05), transparent); animation: winChartShimmer 3s linear infinite; }

@keyframes winChartShimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.win-floating-badge { position: absolute; bottom: 30px; right: -20px; background: #fff; padding: 12px 20px; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid rgba(46, 184, 114, 0.2); font-size: 0.85rem; font-weight: 800; color: var(--green-dark); display: flex; align-items: center; gap: 10px; z-index: 10; transform: rotate(5deg); transition: all 0.3s ease; }
.win-floating-badge i { color: #27c93f; font-size: 1.1rem; }
.win-dashboard-premium:hover .win-floating-badge { transform: rotate(0deg) translateX(-10px); }


/* ═══ OVERVIEW SECTION ═══ */
.win-overview {
  background: var(--white);
  padding: 100px 5%;
  border-bottom: 1px solid var(--border);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}

.overview-img-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 31, 20, 0.15);
  border: 1px solid var(--border);
}

.overview-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.overview-img-box:hover img {
  transform: scale(1.06) rotate(-0.8deg);
}

.overview-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.check-list li i {
  color: var(--green-light);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══ SPECS TABLE ═══ */
.win-specs {
  background: var(--green-ultra-pale);
  padding: 100px 5%;
  border-bottom: 1px solid var(--border);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

.specs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.specs-card-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.specs-card-header i {
  color: var(--green-light);
  font-size: 1.4rem;
}

.specs-card-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
}

.specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 45%;
  background: rgba(242, 249, 245, 0.4);
}

.specs-table td:last-child {
  color: var(--text-dark);
  font-weight: 500;
}


/* ═══ CTA SECTION ═══ */
.win-cta {
  background: linear-gradient(135deg, #f2f9f5, #e6f4eb);
  padding: 100px 5%;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.win-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.win-cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {

  .hero-grid,
  .overview-grid,
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  /* Full image — no height crop */
  .overview-img-box img {
    height: auto !important;
    object-fit: contain !important;
  }

  /* Flatten 3D dashboard so it fits on screen */
  .win-dashboard-premium {
    transform: none !important;
    animation: none !important;
    max-width: 100%;
  }
}
