:root {
  --brand: #e8941a;
  --brand-dark: #c97a10;
  --brand-light: rgba(232,148,26,.12);
  --cyan: #38bdf8;
  --text: #e8eef4;
  --text-muted: #7a9ab5;
  --border: #1a3350;
  --bg: #0b1929;
  --bg-alt: #0d1f33;
  --bg-card: #102236;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

/* Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,25,41,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
}

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

.btn-nav {
  background: var(--brand) !important;
  color: #fff !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.btn-nav:hover { background: var(--brand-dark) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 7rem 0 6rem;
  background: url('images/hero-bg.png') center right / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, #0b1929 100%),
    linear-gradient(90deg,
      rgba(11,25,41,.97) 0%,
      rgba(11,25,41,.85) 45%,
      rgba(11,25,41,.35) 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 580px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--text-muted);
}

.hero-badge .stars { color: #f59e0b; letter-spacing: .05em; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 4px 18px rgba(232,148,26,.35);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 24px rgba(232,148,26,.5);
}
.btn-primary:active { transform: scale(.98); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  color: #fff;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.rating-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1.5rem 0 1rem;
  font-size: .9rem;
  color: var(--text-muted);
}

.stars { color: #f59e0b; font-size: 1rem; letter-spacing: .05em; }

.store-links { display: flex; gap: .75rem; flex-wrap: wrap; }

.store-link {
  display: inline-block;
  padding: .35rem .85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: border-color .15s, background .15s, color .15s;
}

.store-link:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-3px);
  border-color: rgba(232,148,26,.3);
}

.product-gif {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: block;
}

.product-card:nth-child(3) .product-gif {
  object-position: 10% center;
}

.product-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
  color: var(--brand);
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #fff;
}

.product-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: .75rem; }

.product-link {
  font-size: .85rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.product-link:hover { text-decoration: underline; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-details li { display: flex; flex-direction: column; gap: .2rem; }

.contact-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  font-weight: 600;
}

.contact-details a { color: var(--cyan); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
address { font-style: normal; color: var(--text-muted); font-size: .95rem; line-height: 1.5; }

.social-links { display: flex; gap: .6rem; margin-top: 1.5rem; }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}

.social-links a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .875rem; font-weight: 500; color: var(--text); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,148,26,.15);
}

.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }

.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: .8rem; }

.form-status { margin-top: .75rem; font-size: .9rem; min-height: 1.4em; }
.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* Footer */
footer {
  background: #060e18;
  color: var(--text-muted);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
}

footer a { color: var(--text-muted); text-decoration: none; transition: color .15s; }
footer a:hover { color: var(--brand); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11,25,41,.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .two-col,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero { padding: 5rem 0 4rem; min-height: auto; }
  .hero::before { background: rgba(11,25,41,.92); }
  .section { padding: 3.5rem 0; }
  .footer-inner { flex-direction: column; gap: .5rem; text-align: center; }
}
