*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --orange: #FF6600;
  --orange-bright: #FF8822;
  --orange-dim: rgba(255, 102, 0, 0.15);
  --bg: #0a0a0c;
  --bg-card: #111114;
  --bg-card-hover: #161619;
  --bg-darker: #08080a;
  --text: #e8e8ec;
  --text-muted: #a0a0a8;
  --text-dim: #606068;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 102, 0, 0.3);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-bright); }

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 102, 0, 0.1);
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 10, 12, 0.95);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: #000 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange-bright) !important;
  transform: translateY(-1px);
}

/* ========== HERO ========== */
.hero {
  padding: 140px 2rem 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,102,0,0.04) 0%, transparent 60%);
}
.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero h1 .highlight { color: var(--orange); }
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 0.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero .note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ========== TOGGLE ========== */
.toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto 3rem;
}
.toggle-group {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}
.toggle-btn {
  padding: 0.6rem 1.6rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.toggle-btn.active {
  background: var(--orange);
  color: #000;
  font-weight: 600;
}
.toggle-btn:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.04); }
.toggle-btn .save-badge {
  position: absolute;
  top: -8px; right: -8px;
  font-size: 0.6rem;
  background: #22c55e;
  color: #fff;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ========== MODULE CARDS ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
  justify-items: center;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.module-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.module-card.free-card { border-color: rgba(34,197,94,0.2); }
.module-card.free-card:hover { border-color: rgba(34,197,94,0.4); }

.module-icon {
  width: 72px; height: 83px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.module-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.module-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.module-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.free-card .module-price { color: #22c55e; }
.module-period {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.module-features {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.module-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.module-features li::before {
  content: '\2713';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
}
.free-card .module-features li::before { color: #22c55e; }

.module-btn {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.module-btn-primary {
  background: var(--orange);
  color: #000;
}
.module-btn-primary:hover {
  background: var(--orange-bright);
  box-shadow: 0 6px 24px rgba(255,102,0,0.3);
  color: #000;
}
.module-btn-free {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25);
}
.module-btn-free:hover {
  background: rgba(34,197,94,0.2);
  color: #22c55e;
}
.module-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.module-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.coming-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255,102,0,0.15);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ========== BUNDLES ========== */
.bundles-section {
  padding: 4rem 0;
  background: var(--bg-darker);
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bundle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.bundle-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.bundle-card.featured {
  border-color: rgba(255,102,0,0.3);
  background: linear-gradient(180deg, rgba(255,102,0,0.04) 0%, var(--bg-card) 40%);
}
.bundle-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--orange);
  color: #000;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.bundle-discount {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.bundle-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.bundle-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.bundle-prices {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.bundle-price-item {}
.bundle-price-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.1rem;
}
.bundle-price-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.bundle-price-val.active-price {
  font-size: 2rem;
}
.bundle-includes {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}
.bundle-includes li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bundle-includes li::before {
  content: '\2713';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ========== VOLUME DISCOUNTS ========== */
.volume-section {
  padding: 4rem 0;
}
.volume-toggle {
  text-align: center;
  cursor: pointer;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s;
  margin-bottom: 0;
}
.volume-toggle:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.volume-toggle .arrow {
  transition: transform 0.3s;
  color: var(--orange);
}
.volume-toggle.open .arrow {
  transform: rotate(180deg);
}

.volume-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.volume-content.open {
  max-height: 2000px;
}

.volume-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 4px;
  display: inline-flex;
}
.volume-tabs-wrap { text-align: center; }
.vol-tab {
  padding: 0.5rem 1.4rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
}
.vol-tab.active {
  background: var(--orange);
  color: #000;
  font-weight: 600;
}

.volume-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}
table.volume-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.volume-table th {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 1rem;
  text-align: left;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.volume-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
}
.volume-table tr:last-child td { border-bottom: none; }
.volume-table tr:hover td { background: rgba(255,255,255,0.02); }
.volume-table td:first-child {
  font-weight: 500;
  color: var(--text);
}
.volume-table .free-val { color: #22c55e; }
.volume-table .on-request { color: var(--text-dim); font-style: italic; }

/* ========== SUPPORT RENEWAL ========== */
.renewal-section {
  padding: 4rem 0;
  background: var(--bg-darker);
}
.renewal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.renewal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 160px;
  transition: all 0.25s;
}
.renewal-card:hover { border-color: var(--border-hover); }
.renewal-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.renewal-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.renewal-period {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.renewal-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1.25rem;
  line-height: 1.6;
}

/* ========== CTA ========== */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,102,0,0.06) 0%, transparent 60%);
}
.cta-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: var(--orange);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.cta-btn:hover {
  background: var(--orange-bright);
  box-shadow: 0 8px 30px rgba(255,102,0,0.3);
  color: #000;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .bundle-prices { gap: 1rem; }
}
@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .toggle-btn { padding: 0.5rem 1rem; font-size: 0.82rem; }
}