/* ══════════════════════════════════════
   INGINERUL CU AI — CSS Global
══════════════════════════════════════ */

:root {
  --midnight: #0A1931;
  --midnight2: #0d2040;
  --anthracite: #2D3436;
  --forest: #1B4332;
  --emerald: #2ECC71;
  --gold: #F39C12;
  --gold-dim: #c47d0a;
  --white: #FFFFFF;
  --gray: #BDC3C7;
  --dgray: #636E72;
  --bg: #080f1e;
  --bg2: #0d1829;
  --card-bg: #0f1e35;
  --border: rgba(243, 156, 18, 0.15);
  --border-dim: rgba(255, 255, 255, 0.07);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ── SCROLLBAR ───────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: var(--midnight);
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
  position: relative;
}

.logo-badge::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(243, 156, 18, 0.25);
}

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

.logo-line1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-line2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.btn-nav {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-dim);
  gap: 4px;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--gray);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-mobile {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 18px 48px;
  font-size: 17px;
}

/* ══════════════════════════════════════
   HERO — CENTRAT CU CĂRȚI LATERALE
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 156, 18, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 156, 18, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(243, 156, 18, 0.07);
  top: -200px;
  right: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(27, 67, 50, 0.15);
  bottom: -100px;
  left: -100px;
}

/* ── CONȚINUT CENTRAT ── */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.gold {
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--dgray);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.stat-div {
  width: 1px;
  height: 44px;
  background: var(--border-dim);
}

/* ══════════════════════════════════════
   CĂRȚI LATERALE — HERO BOOKS
══════════════════════════════════════ */
.hero-books-left,
.hero-books-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}

.hero-books-left {
  left: 40px;
  align-items: flex-start;
}

.hero-books-right {
  right: 40px;
  align-items: flex-end;
}

.hbook {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  padding: 14px 18px 14px 14px;
  width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-books-right .hbook {
  flex-direction: row-reverse;
  padding: 14px 14px 14px 18px;
}

.hbook:hover {
  transform: translateY(-4px) scale(1.02);
}

.hbook-spine {
  width: 5px;
  height: 44px;
  background: var(--gold);
  border-radius: 3px;
  flex-shrink: 0;
}

.hbook-spine-green {
  background: var(--emerald);
}

.hbook-spine-dim {
  background: #5d6d7e;
}

.hbook-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
}

/* Animații individuale cărți stânga */
.hb-l1 {
  animation: slideInLeft 0.7s 0.3s ease both;
}

.hb-l2 {
  animation: slideInLeft 0.7s 0.5s ease both;
}

.hb-l3 {
  animation: slideInLeft 0.7s 0.7s ease both;
}

/* Animații individuale cărți dreapta */
.hb-r1 {
  animation: slideInRight 0.7s 0.3s ease both;
}

.hb-r2 {
  animation: slideInRight 0.7s 0.5s ease both;
}

.hb-r3 {
  animation: slideInRight 0.7s 0.7s ease both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-strip {
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  background: rgba(255, 255, 255, 0.02);
  padding: 28px 0;
}

.features-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  flex: 1;
  min-width: 0;
}

.feat-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
}

.feature-item span {
  font-size: 11px;
  color: var(--dgray);
  white-space: nowrap;
}

.feat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-dim);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products-section {
  padding: 100px 0;
}

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

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  border-color: rgba(243, 156, 18, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-featured {
  border-color: rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, #0f1e35, #1a2f15);
  grid-column: span 2;
}

.card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(243, 156, 18, 0.2);
}

.featured-ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: #000;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  border-radius: 0 0 8px 8px;
}

.product-tag-vol {
  display: inline-block;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.2);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  align-self: flex-start;
}

/* Featured Card Layout */
.featured-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-left {
  flex-shrink: 0;
}

.featured-center {
  flex: 1;
  min-width: 200px;
}

.featured-right {
  text-align: right;
  flex-shrink: 0;
}

.featured-price {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .featured-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .featured-center {
    min-width: 100%;
  }

  .featured-right {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-price {
    justify-content: flex-start;
  }
}

.product-icon {
  font-size: 36px;
}

.product-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.product-card p {
  font-size: 14px;
  color: var(--dgray);
  line-height: 1.6;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.price-old {
  font-size: 14px;
  color: var(--dgray);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.gold-price {
  color: var(--gold) !important;
  font-size: 30px !important;
}

.savings-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: var(--emerald);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.3);
  color: var(--gold);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-head);
  transition: var(--transition);
  margin-top: auto;
}

.btn-product:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-featured {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-featured:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
  color: #000;
}

.products-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--dgray);
  padding: 16px;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(243, 156, 18, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: rgba(243, 156, 18, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step p {
  font-size: 13px;
  color: var(--dgray);
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALE
══════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
}

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

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

.testimonial:hover {
  border-color: rgba(243, 156, 18, 0.2);
  transform: translateY(-2px);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--midnight), var(--forest));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--dgray);
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 80px 0 100px;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--forest) 100%);
  border: 1px solid rgba(243, 156, 18, 0.3);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  margin: 16px 0 20px;
  position: relative;
  line-height: 1.15;
}

.cta-box p {
  color: var(--gray);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
}

.cta-old {
  font-size: 16px;
  color: var(--dgray);
  text-decoration: line-through;
}

.cta-new {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.cta-save {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--emerald);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--dgray);
  position: relative;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border-dim);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--dgray);
  margin: 20px 0 24px;
  max-width: 300px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(243, 156, 18, 0.1);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--dgray);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--dgray);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════ */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(10, 25, 49, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin: 16px 0 20px;
  position: relative;
}

.page-hero p {
  font-size: 17px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* Bundle cards */
.bundles-section {
  padding: 80px 0 100px;
  background: var(--bg2);
  border-top: 1px solid var(--border-dim);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bundle-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 156, 18, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.bundle-flagship {
  border-color: rgba(243, 156, 18, 0.5);
  background: linear-gradient(135deg, #0f1e35, #1a2f15);
  transform: scale(1.02);
}

.bundle-flagship:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 60px rgba(243, 156, 18, 0.2);
}

.bundle-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}

.tag-starter {
  background: rgba(41, 128, 185, 0.15);
  color: #5dade2;
  border: 1px solid rgba(41, 128, 185, 0.3);
}

.tag-pro {
  background: rgba(155, 89, 182, 0.15);
  color: #c39bd3;
  border: 1px solid rgba(155, 89, 182, 0.3);
}

.tag-complete {
  background: rgba(243, 156, 18, 0.15);
  color: var(--gold);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.bundle-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bundle-card .volumes {
  font-size: 13px;
  color: var(--dgray);
  margin-bottom: 24px;
}

.bundle-includes {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.bundle-includes li {
  font-size: 14px;
  color: var(--gray);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-includes li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

.bundle-includes li:last-child {
  border-bottom: none;
}

.bundle-price {
  margin-bottom: 20px;
}

.bundle-price .old {
  font-size: 14px;
  color: var(--dgray);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.bundle-price .new {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.bundle-flagship .bundle-price .new {
  color: var(--gold);
}

.bundle-price .save {
  font-size: 12px;
  color: var(--emerald);
  margin-top: 4px;
  display: block;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-content {
  padding: 60px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

.value-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.value-item p {
  font-size: 14px;
  color: var(--dgray);
  margin: 0;
}

/* ══════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: 60px 0 100px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(243, 156, 18, 0.25);
  transform: translateY(-3px);
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--midnight), var(--forest));
  border-bottom: 1px solid var(--border-dim);
}

.blog-body {
  padding: 24px;
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--white);
}

.blog-card p {
  font-size: 14px;
  color: var(--dgray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--dgray);
}

.read-more {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--gold-dim);
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 60px 0 100px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 13px;
  color: var(--dgray);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(243, 156, 18, 0.04);
}

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

.form-group select option {
  background: var(--bg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  padding: 16px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.35);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-books-left,
  .hero-books-right {
    display: none;
  }
}

@media (max-width: 900px) {

  .hero-books-left,
  .hero-books-right {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .bundle-flagship {
    transform: none;
  }

  .bundle-flagship:hover {
    transform: translateY(-4px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .steps-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .step-arrow {
    display: none;
  }

  .step {
    max-width: 100%;
  }

  .card-featured {
    grid-column: span 1;
  }

  /* Mobile Menu & Nav */
  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

  /* Hero & General */
  .hero {
    padding: 100px 24px 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
  }

  /* Feature Strip Fixes */
  .features-grid {
    flex-wrap: wrap;
  }

  .feat-divider {
    display: none;
  }

  .feature-item {
    flex: 1 1 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
  }

  .feature-item strong {
    white-space: normal;
    line-height: 1.3;
  }

  .feature-item span {
    white-space: normal;
    line-height: 1.4;
    display: block;
    margin-top: 4px;
  }

  /* Product Grid Fixes - Stack Vertically */
  /* Product Grid Fixes - Stack Vertically */
  .products-grid-centered,
  .last-row-centered {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .products-grid-centered .product-card,
  .last-row-centered .product-card {
    width: 100% !important;
    max-width: none !important;
  }

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

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

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