/* =============================================
   HOGWILD HANDIWORK — Styles
   ============================================= */

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

:root {
  --bg:          #07111e;
  --bg-surface:  #0c1c2e;
  --bg-card:     #112540;
  --bg-alt:      #091828;
  --blue:        #4d9ecf;
  --blue-light:  #7ec8eb;
  --blue-dark:   #2a6fa8;
  --green:       #22c55e;
  --text:        #e8f4fc;
  --text-muted:  #6fa3c4;
  --text-faint:  #2e4d66;
  --border:      rgba(77,158,207,0.1);
  --border-blue: rgba(77,158,207,0.25);
  --shadow:      0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.65);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   18px;
  --nav-h:       70px;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* =============================================
   LAYOUT & UTILITIES
   ============================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(77,158,207,0.08);
  border: 1px solid var(--border-blue);
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(77,158,207,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.btn-order {
  background: transparent;
  color: var(--blue);
  border-color: var(--border-blue);
}
.btn-order:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(77,158,207,0.35);
}

/* =============================================
   NAVIGATION
   ============================================= */

#nav-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s;
}

#nav-header.scrolled {
  background: rgba(7,17,30,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(77,158,207,0.08), var(--shadow);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-top {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.logo-bottom {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blue);
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-link-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  margin-left: 0.5rem;
}
.nav-link-cta:hover {
  background: var(--blue-light) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(77,158,207,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 95%, rgba(77,158,207,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem 1.5rem;
  max-width: 800px;
}

.hero-logo {
  margin-bottom: 1.25rem;
}

.hero-logo img {
  width: min(220px, 55vw);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.55));
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* =============================================
   PLAYER PACKS
   ============================================= */

.section-packs {
  padding: 5.5rem 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.section-packs::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(77,158,207,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.section-packs .container {
  position: relative;
  z-index: 1;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pack-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
}

.pack-featured {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, rgba(77,158,207,0.07) 0%, var(--bg-card) 60%);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(77,158,207,0.18);
}
.pack-featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pack-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(77,158,207,0.4);
}

.pack-tier {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
  text-align: center;
}

.pack-price {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pack-from {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.pack-price strong {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.pack-per {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pack-items-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  flex: 1;
}
.pack-items-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.55rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
}
.pack-items-list li + li {
  border-top: 1px dashed rgba(77,158,207,0.12);
}
.pack-items-list li::before {
  content: '✓';
  color: var(--blue-light);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 1px;
}
.pack-items-list em {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 600;
}

.pack-cta {
  width: 100%;
}

/* =============================================
   PRODUCT SECTIONS
   ============================================= */

.section-products {
  padding: 6rem 0;
  background: var(--bg);
}
.section-products.section-alt {
  background: var(--bg-surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ---- Carousel ---- */
.product-carousel {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #112540 0%, #07111e 100%);
  flex-shrink: 0;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-bg {
  font-size: 5rem;
  opacity: 0.11;
  user-select: none;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  z-index: 2;
  padding: 0;
}
.product-carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(0,0,0,0.85); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--blue-light);
  transform: scale(1.4);
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.detail-tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(77,158,207,0.07);
  color: var(--blue);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(77,158,207,0.15);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.product-price strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blue);
}
.product-price span,
.product-price em {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-style: normal;
}

.product-note {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* Pricing tiers (hats) */
.pricing-tiers {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(77,158,207,0.04);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-sm);
}
.tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 0.2rem;
}
.tier-sep {
  width: 1px;
  height: 36px;
  background: var(--border-blue);
  flex-shrink: 0;
}
.tier-qty {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.tier-price {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue);
}

/* =============================================
   WHY US
   ============================================= */

.section-why {
  padding: 6rem 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77,158,207,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.why-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   COMMUNITY (Discord)
   ============================================= */

.section-community {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.section-community::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(77,158,207,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.community-text {
  max-width: 520px;
}

.community-text .section-title {
  margin-top: 0.5rem;
}

.community-text .section-sub {
  margin-bottom: 2rem;
}

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

.discord-icon {
  font-size: 1.1rem;
}

.community-widget iframe {
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .community-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-items: center;
    text-align: center;
  }
  .community-text { max-width: 600px; }
  .community-actions { justify-content: center; }
  .community-widget iframe { width: 100%; max-width: 400px; }
}

/* =============================================
   CONTACT / ORDER FORM
   ============================================= */

.section-contact {
  padding: 6rem 0;
  background: var(--bg-surface);
  position: relative;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

.order-form {
  max-width: 840px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.required { color: var(--blue); }
.optional {
  font-weight: 400;
  color: var(--text-faint);
}

input, textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder {
  color: var(--text-faint);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77,158,207,0.12);
}
input[type="date"] {
  color-scheme: dark;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.checkbox-item:hover {
  border-color: var(--border-blue);
  background: rgba(77,158,207,0.04);
}
.checkbox-item.is-checked {
  border-color: var(--border-blue);
  background: rgba(77,158,207,0.07);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
  display: block;
}
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-custom {
  background: var(--blue);
  border-color: var(--blue);
}
.checkbox-item input[type="checkbox"]:checked ~ .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 6px; height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* Submit */
.form-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding-top: 0.5rem;
}

.btn-submit {
  min-width: 220px;
}
.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-faint);
  text-align: center;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
}
.form-status.error {
  display: block;
  background: rgba(239,68,68,0.09);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 900px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .pack-featured {
    transform: none;
  }
  .pack-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    inset: var(--nav-h) 0 0;
    background: rgba(7,17,30,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 0.9rem 2rem; }
  .nav-link-cta { margin-left: 0; margin-top: 0.5rem; }

  /* Sections */
  .section-products,
  .section-packs,
  .section-why,
  .section-contact { padding: 4rem 0; }

  .products-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .btn { justify-content: center; }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  .checkbox-grid { grid-template-columns: 1fr; }
}
