*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg2: #f5f5f7;
  --card: #ffffff;
  --card2: #efefef;
  --border: #e5e5e5;
  --border2: #cccccc;
  --accent: #ff4d00;
  --accent2: #e64400;
  --text: #111111;
  --muted: #666666;
  --dim: #aaaaaa;
  --gold: #d97706;
  --green: #16a34a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 80% 40% at 70% 50%, rgba(255,77,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255,77,0,0.02) 0%, transparent 50%);
  animation: pageFadeIn 0.35s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 58px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 58px;
  gap: 32px;
}
.logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
  font-variant-ligatures: none;
}
.logo-icon { font-size: 1rem; }
.logo-accent { 
  color: var(--accent);
  margin-left: -3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta { margin-left: 12px; flex-shrink: 0; }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-primary { 
  background: var(--accent); 
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,0,0.35);
}
.btn-primary:hover { 
  background: #e64400;
  box-shadow: 0 6px 28px rgba(255,77,0,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
}
.btn-outline:hover { color: var(--text); border-color: #555; }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { color: var(--text); border-color: #555; }
.btn-gold { background: var(--gold); color: #111; font-weight: 700; }
.btn-gold:hover { background: #e09520; }
.btn-lg { padding: 12px 28px; font-size: 0.92rem; border-radius: 8px; }
.btn-sm { padding: 7px 15px; font-size: 0.79rem; }

/* ===== HERO PAGE ===== */
.hero-page {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* LEFT */
.hero-left {
  flex: 1;
  min-width: 0;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding: 4px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.hero-left h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 18px;
  color: var(--text);
  text-shadow: 0 2px 40px rgba(255,255,255,0.04);
}
.hero-accent { 
  color: var(--accent);
  text-shadow: 0 0 40px rgba(255,77,0,0.4);
}
.hero-left p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-numbers {
  display: flex;
  align-items: center;
  gap: 28px;
}
.num-item { display: flex; flex-direction: column; }
.num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
}
.num-label { font-size: 0.75rem; color: var(--dim); margin-top: 3px; }
.num-sep { width: 1px; height: 28px; background: var(--border); }

/* RIGHT */
.hero-right {
  flex-shrink: 0;
  width: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.preview-card:hover {
  border-color: rgba(255,77,0,0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(255,77,0,0.1);
}
.preview-card.top { margin-left: 0; }
.preview-card.mid { margin-left: 20px; }
.preview-card.bot { margin-left: 40px; }

.pc-icon { font-size: 1.6rem; flex-shrink: 0; }
.pc-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.pc-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.pc-desc { font-size: 0.76rem; color: var(--muted); }
.pc-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.pc-gold { color: var(--gold); }

.preview-badge {
  position: absolute;
  top: -12px;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(255,77,0,0.4);
  letter-spacing: 0.3px;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.section-header p { color: var(--muted); font-size: 0.9rem; max-width: 460px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features { padding: 80px 0; background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,77,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover {
  border-color: rgba(255,77,0,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.65; }

/* ===== PLUGINS ===== */
.plugins { padding: 80px 0; background: var(--bg); }
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: var(--border2); color: var(--text); }
.filter-btn.active { 
  background: var(--accent); 
  border-color: var(--accent); 
  color: #fff;
  box-shadow: 0 3px 12px rgba(255,77,0,0.3);
}

.plugins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plugin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.plugin-card:hover { 
  border-color: rgba(255,77,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.plugin-card.featured { 
  border-color: rgba(245,166,35,0.35);
  background: linear-gradient(160deg, #1a1a1a 0%, #1e1a14 100%);
}
.plugin-card.featured:hover { 
  border-color: rgba(245,166,35,0.65);
  box-shadow: 0 12px 40px rgba(245,166,35,0.1);
}

.plugin-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--card2);
  color: var(--muted);
}
.plugin-badge.hot { color: #f87171; background: rgba(248,113,113,0.1); }
.plugin-badge.new { color: var(--green); background: rgba(34,197,94,0.1); }
.plugin-badge.premium { color: var(--gold); background: rgba(245,166,35,0.1); }

.plugin-icon { font-size: 1.6rem; margin-bottom: 10px; }
.plugin-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; }
.plugin-card > p { color: var(--muted); font-size: 0.8rem; line-height: 1.6; margin-bottom: 12px; }
.plugin-features { list-style: none; margin-bottom: 14px; flex: 1; }
.plugin-features li { font-size: 0.78rem; color: var(--dim); padding: 2px 0; }
.plugin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.plugin-price { display: flex; align-items: center; gap: 7px; }
.price-old { font-size: 0.76rem; color: var(--dim); text-decoration: line-through; }
.price-new { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.plugin-card.featured .price-new { color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--bg2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.15s;
}
.review-card:hover { border-color: var(--border2); }
.review-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.7; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: var(--dim); }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--bg); }
.faq-list { max-width: 660px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 15px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--muted); }
.faq-q span { font-size: 1rem; color: var(--dim); transition: transform 0.25s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 15px; }
.faq-a code { background: var(--card2); color: #ff7040; padding: 1px 6px; border-radius: 4px; font-size: 0.8rem; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--bg2); }
.contact-card {
  background: linear-gradient(135deg, var(--card) 0%, #1e1a14 100%);
  border: 1px solid rgba(255,77,0,0.2);
  border-radius: 14px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 8px 40px rgba(255,77,0,0.06);
}
.contact-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.contact-text p { color: var(--muted); margin-bottom: 22px; font-size: 0.88rem; }
.contact-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-img { font-size: 3.5rem; opacity: 0.08; flex-shrink: 0; }

/* ===== CONTACT INFO ===== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  transition: border-color 0.15s;
}
.info-card:hover { border-color: var(--border2); }
.info-icon { font-size: 1.4rem; margin-bottom: 8px; }
.info-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: 0.82rem; margin-bottom: 8px; }
.info-card a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.82rem; }
.info-card a:hover { text-decoration: underline; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 90px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.page-header p { color: var(--muted); font-size: 0.9rem; max-width: 480px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-logo { font-size: 0.88rem; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.footer-copy { color: var(--dim); font-size: 0.74rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--dim); font-size: 0.74rem; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--muted); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(10px);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: 1px solid var(--border);
  color: var(--dim);
  width: 26px; height: 26px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.15s;
}
.modal-close:hover { border-color: var(--border2); color: var(--muted); }
.modal-icon { font-size: 1.8rem; }
.modal h3 { font-size: 1.1rem; font-weight: 700; }
.modal p { color: var(--muted); font-size: 0.84rem; line-height: 1.6; }
.modal-price { font-size: 1.8rem; font-weight: 800; }

/* ===== HIDDEN ===== */
.plugin-card.hidden { display: none; }
.quick-features, .quick-grid { display: none; }
.hero-bg, .hero-glow { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-page { flex-direction: column; gap: 48px; padding-top: 90px; }
  .hero-right { width: 100%; max-width: 400px; margin: 0 auto; }
  .preview-card.mid { margin-left: 0; }
  .preview-card.bot { margin-left: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plugins-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 58px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
  }
  .hero-numbers { gap: 16px; }
  .num-sep { display: none; }
  .contact-card { flex-direction: column; padding: 28px 20px; }
  .contact-img { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .plugins-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-page { padding: 80px 20px 32px; }
  .hero-actions { flex-direction: column; }
  .contact-links { flex-direction: column; }
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 60px 0 80px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-block h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-block p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  list-style: none;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-block ul li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.legal-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dim);
}
.legal-block strong { color: var(--text); font-weight: 600; }
.legal-block a { color: var(--accent); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }
