@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #0f1115;
  --bg-soft: #121722;
  --bg-card: #141a24;
  --bg-contrast: #f6f7f9;
  --text: #e8edf2;
  --text-muted: #b7c0cc;
  --text-dark: #1a1f27;
  --accent: #1ee1d7;
  --accent-2: #2c6cff;
  --accent-warm: #f2a65a;
  --border: #233044;
  --shadow: 0 18px 45px rgba(7, 10, 16, 0.45);
  --shadow-soft: 0 10px 30px rgba(5, 10, 18, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #141a24 0%, #0f1115 55%, #0c0e12 100%);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-title {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  margin: 0 0 12px;
}

.section-lead {
  color: var(--text-muted);
  margin: 0 0 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(30, 225, 215, 0.12);
  color: var(--accent);
  border: 1px solid rgba(30, 225, 215, 0.25);
}

.badge-warm {
  background: rgba(242, 166, 90, 0.15);
  color: var(--accent-warm);
  border-color: rgba(242, 166, 90, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #0c0f14;
  box-shadow: 0 10px 20px rgba(30, 225, 215, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 225, 215, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: rgba(30, 225, 215, 0.5);
  color: var(--accent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-bar {
  background: linear-gradient(90deg, #101620 0%, #162030 50%, #101620 100%);
  color: var(--text);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-bar .promo-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.promo-bar .promo-highlight {
  color: var(--accent);
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(12, 15, 20, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c0f14;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-item {
  position: relative;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 4px;
}

.nav-item:hover {
  color: var(--text);
}

.nav-item:hover .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(8px);
}

.search {
  flex: 1;
  max-width: 360px;
  position: relative;
}

.search input {
  width: 100%;
  padding: 12px 42px 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 998;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
}

.mega {
  position: absolute;
  left: -140px;
  top: 100%;
  width: 700px;
  background: #0f141d;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.mega h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.mega a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mega a:hover {
  color: var(--text);
}

.mega .promo {
  background: linear-gradient(135deg, rgba(30, 225, 215, 0.12), rgba(44, 108, 255, 0.15));
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.hero {
  padding: 60px 0 40px;
}

.hero-slider {
  display: grid;
  gap: 24px;
}

.hero-slider.is-slider .hero-slide {
  display: none;
}

.hero-slider.is-slider .hero-slide.is-active {
  display: grid;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.hero-slide {
  background: linear-gradient(135deg, rgba(18, 23, 34, 0.9), rgba(12, 15, 20, 0.9));
  border-radius: 36px;
  padding: 36px;
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-slide::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(30, 225, 215, 0.08);
  right: -80px;
  bottom: -80px;
}

.hero-copy h1 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 10px;
}

.hero-copy p {
  color: var(--text-muted);
  margin: 0 0 20px;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.trust-card img {
  width: 46px;
  height: 46px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.product-card .product-image {
  background: #0f141d;
  border-radius: var(--radius-md);
  padding: 8px;
}

.product-card .rating {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 8px;
}

.product-card .card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.deal-tile {
  background: linear-gradient(135deg, rgba(18, 24, 34, 0.95), rgba(12, 16, 22, 0.95));
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
}

.deal-tile img {
  border-radius: 20px;
}

.software-section {
  background: linear-gradient(135deg, rgba(30, 225, 215, 0.08), rgba(44, 108, 255, 0.12));
  border-radius: 36px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 1fr;
}

.software-grid {
  display: grid;
  gap: 16px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.footer {
  background: #0b0e13;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer h4 {
  margin: 0 0 12px;
}

.footer a {
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  max-width: 520px;
  margin: 0 auto;
}

.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  margin-bottom: 14px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.table th, .table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: #0b0f15;
  border-right: 1px solid var(--border);
  padding: 24px;
}

.admin-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.admin-sidebar a.active, .admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.admin-main {
  padding: 32px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.admin-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}


/* Collection / product detail */
.collection-banner {
  background: linear-gradient(120deg, rgba(30, 225, 215, 0.12), rgba(44, 108, 255, 0.12));
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.filter-bar select, .filter-bar input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.product-gallery {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border);
}

.product-summary {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  position: sticky;
  top: 110px;
  align-self: start;
}

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

.specs-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cart-table th, .cart-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.cart-summary {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}


/* Mobile */
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .search {
    order: 3;
    width: 100%;
    max-width: 100%;
  }
  .mega {
    width: 90vw;
    left: -40px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-summary {
    position: static;
  }
  .software-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 90vw);
    background: #0f141d;
    padding: 24px;
    z-index: 1000;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }
  .mobile-nav.open {
    display: block;
  }
  .mobile-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
  }
  .hero-slide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 12px 0;
  }
  .section {
    padding: 60px 0;
  }
  .hero-slide {
    padding: 26px;
  }
  .product-grid, .category-grid, .deal-grid {
    grid-template-columns: 1fr;
  }
}

