* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #f1f5f9;
  background: #141a1a;
}

/* ── Hero (nav + heading unified) ── */

.hero {
  display: flex;
  flex-direction: column;
  padding: 0 2rem 4rem;
  background: radial-gradient(ellipse at 50% 120%, rgba(255, 122, 24, 0.1) 0%, #141a1a 60%);
  border-bottom: 1px solid #2a2a2a;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.hero-nav-logo {
  width: 140px;
  display: block;
  mix-blend-mode: lighten;
}

.hero-nav-links {
  display: flex;
  gap: 2rem;
}

.hero-nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-nav-links a:hover {
  color: #ff7a18;
}

.hero-content {
  text-align: center;
  padding-top: 3rem;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-heading em {
  font-style: normal;
  color: #ff7a18;
}

.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a18, #ff4500);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.2s;
}

.hero-cta:hover {
  box-shadow: 0 0 28px rgba(255, 122, 24, 0.5);
  transform: translateY(-2px);
}

/* ── Products ── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.products-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff9d4d;
  margin-bottom: 0.25rem;
  grid-column: 1 / -1;
}

.product-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 2.25rem;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: #ff7a18;
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.18);
}

.product-card--soon {
  opacity: 0.55;
  position: relative;
}

.product-card--soon:hover {
  border-color: #333;
  box-shadow: none;
  opacity: 0.7;
}

.soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  border: 1px solid #475569;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.75rem;
}

.product-name {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffb02e;
  margin-bottom: 1.1rem;
}

.product-price-note {
  font-size: 0.85rem;
  font-weight: 400;
  color: #94a3b8;
}

.buy-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a18, #ff4500);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s;
}

.buy-button:hover {
  box-shadow: 0 0 20px rgba(255, 122, 24, 0.5);
  transform: translateY(-1px);
}

/* ── Promo code ── */

.promo-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.promo-input {
  flex: 1;
  background: #1a2020;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.promo-input:focus {
  border-color: #ff7a18;
}

.promo-input::placeholder {
  color: #475569;
}

.promo-apply {
  background: #2e2e2e;
  color: #cbd5e1;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.promo-apply:hover {
  background: #3a3a3a;
  border-color: #ff7a18;
  color: #ff9d4d;
}

.promo-msg {
  font-size: 0.82rem;
  min-height: 1.1rem;
  margin-bottom: 0.75rem;
  color: transparent;
}

.promo-msg--ok {
  color: #4ade80;
}

.promo-msg--err {
  color: #f87171;
}

.install-note {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #1a2020;
  border: 1px solid #2e3d3d;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

.install-note strong {
  color: #cbd5e1;
}

.install-note em {
  font-style: normal;
  color: #ffb02e;
}

/* ── Nav dropdown ── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%);
  background: #1e2424;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.3rem 0;
  min-width: 130px;
  z-index: 100;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-dropdown-menu a:hover {
  color: #ff9d4d;
}

/* ── Product card read-more link ── */

.product-readmore {
  display: inline-block;
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
  margin-top: 0.6rem;
  transition: color 0.2s;
}

.product-readmore:hover {
  color: #ff9d4d;
}

/* ── Footer ── */

.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid #2a2a2a;
}

.footer-text {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.contact {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 1px solid #475569;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.contact:hover {
  border-color: #ff7a18;
  color: #ffb02e;
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.35);
}
