@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #04060c;
  --bg-card: rgba(8, 14, 28, 0.72);
  --bg-card-hover: rgba(12, 22, 44, 0.9);
  --bg-modal: rgba(6, 10, 20, 0.98);
  --primary: #0f766e;
  --primary-hover: #115e59;
  --primary-glow: rgba(15, 118, 110, 0.38);
  --accent: #5eead4;
  --accent-glow: rgba(94, 234, 212, 0.22);
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(15, 118, 110, 0.5);
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all .28s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(10, 102, 194, 0.2), transparent 45%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08), transparent 40%),
    var(--bg-dark);
  background-attachment: fixed;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ─── Header ─── */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(4, 6, 12, 0.82);
  border-bottom: 1px solid var(--border);
}
.header-container {
  max-width: 1200px; margin: 0 auto;
  min-height: 72px; padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.03); cursor: pointer; transition: var(--transition);
}
.menu-toggle:hover { border-color: var(--border-hover); }
.menu-toggle .bar { width: 18px; height: 2px; margin: 0 auto; border-radius: 999px; background: #fff; }

.logo-group { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #bfdbfe 40%, var(--primary) 75%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-subtitle { margin-top: -2px; color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.desktop-nav { display: block; flex: 1; }
.nav-links { list-style: none; display: flex; align-items: center; justify-content: center; gap: 1.4rem; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-orders {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-main); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.btn-orders:hover { background: rgba(10, 102, 194, 0.15); border-color: var(--border-hover); }

.lang-selector {
  padding: 0.4rem 0.75rem; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: #fff; font-size: 0.82rem; cursor: pointer;
}

/* ─── Mobile Drawer ─── */
.mobile-drawer {
  position: fixed; top: 0; left: 0; width: min(340px, 90vw); height: 100dvh;
  background: #060c1a; border-right: 1px solid var(--border);
  overflow-y: auto; transform: translateX(-100%); transition: transform 0.32s ease; z-index: 200;
  padding: 1rem 0 2rem;
}
.mobile-drawer.active { transform: translateX(0); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li a { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1.25rem; color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: var(--transition); border-radius: 0; }
.mobile-nav-links li a:hover { background: rgba(10, 102, 194, 0.1); color: #fff; }
.mobile-menu-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 1rem 1.25rem 0.3rem; }

/* ─── Main / Sections ─── */
main { padding-top: 72px; }
.view-section { display: none; }
.view-section.active { display: block; }

/* ─── Hero ─── */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 5rem 1.5rem 3.5rem; border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(10, 102, 194, 0.28), transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  border: 1px solid rgba(10, 102, 194, 0.45);
  background: rgba(10, 102, 194, 0.1);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.15; max-width: 720px; margin: 0 auto 1rem;
  letter-spacing: -0.03em;
}
.hero-desc {
  color: var(--text-muted); font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 12px;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 24px rgba(10, 102, 194, 0.35);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(10, 102, 194, 0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 12px;
  background: rgba(255,255,255,0.05); color: var(--text-main);
  border: 1px solid var(--border); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ─── Stats Bar ─── */
.stats-bar {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  max-width: 700px; margin: 2.5rem auto 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}
.stat-label { display: block; color: var(--text-muted); font-size: 0.8rem; }

/* ─── Section Container ─── */
.section-container { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.section-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2.5rem; max-width: 580px; }

/* ─── Packages Grid ─── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.package-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem;
  transition: var(--transition); cursor: default;
}
.package-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.package-card.featured { border-color: rgba(192, 132, 252, 0.55); box-shadow: 0 0 40px rgba(192, 132, 252, 0.18); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 0.5rem;
}
.tier-audit { background: linear-gradient(135deg, #1e3a5f, #0A66C2); }
.tier-rewrite { background: linear-gradient(135deg, #0A66C2, #38bdf8); }
.tier-activation { background: linear-gradient(135deg, #1e40af, #60a5fa); }
.tier-outreach { background: linear-gradient(135deg, #0e7490, #38bdf8); }
.tier-growth { background: linear-gradient(135deg, #1d4ed8, #0A66C2); }
.tier-standard { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.tier-deluxe { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.tier-premium { background: linear-gradient(135deg, #0ea5e9, #0f766e); }

.package-meta { display: flex; justify-content: space-between; align-items: center; }
.package-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem; border-radius: 999px;
  background: rgba(10, 102, 194, 0.15); color: var(--accent);
}
.package-price { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.package-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; }
.package-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.55; flex: 1; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.package-features li { font-size: 0.82rem; display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,0.75); }
.package-features i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.btn-buy {
  display: block; width: 100%; padding: 0.7rem; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #1d6fce);
  color: #fff; font-weight: 700; font-size: 0.88rem;
  border: none; cursor: pointer; transition: var(--transition); margin-top: auto;
  box-shadow: 0 2px 12px rgba(10, 102, 194, 0.3);
}
.btn-buy:hover { background: linear-gradient(135deg, #1d6fce, var(--primary)); transform: translateY(-1px); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer; color: #fff; font-weight: 600; font-size: 0.95rem; list-style: none;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: var(--transition); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1.1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ─── Orders ─── */
.orders-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); margin-top: 1.5rem; }
.orders-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.orders-table th { padding: 0.8rem 1rem; text-align: left; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid var(--border); white-space: nowrap; }
.orders-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.orders-table tbody tr:last-child td { border-bottom: none; }
.empty-state { color: var(--text-muted); padding: 2rem 0; }

/* ─── Footer ─── */
.footer-section { border-top: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; }
.payment-badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.payment-badges span { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.82rem; }
.payment-badges.compact { margin: 1rem 0 0; }
footer { color: var(--text-muted); font-size: 0.78rem; }

/* ─── Modal ─── */
.modal-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px); z-index: 300;
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-backdrop.active { display: flex; }
.modal-card {
  background: var(--bg-modal); border: 1px solid rgba(10, 102, 194, 0.35);
  border-radius: 24px; width: 100%; max-width: 520px; max-height: 90dvh;
  overflow-y: auto; position: relative; display: flex; flex-direction: column; gap: 1.25rem;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(10, 102, 194, 0.15);
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  color: var(--text-muted); width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.modal-top { padding-right: 2rem; }
.modal-chip {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px;
  background: rgba(10, 102, 194, 0.12); border: 1px solid rgba(10, 102, 194, 0.3);
  color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.modal-top h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; margin-bottom: 0.4rem; }
.modal-desc { color: var(--text-muted); font-size: 0.88rem; }

.modal-summary {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1rem; border-radius: 12px; background: rgba(10, 102, 194, 0.06);
  border: 1px solid rgba(10, 102, 194, 0.18);
}
.modal-summary > div { display: flex; flex-direction: column; gap: 0.25rem; }
.modal-summary span { font-size: 0.75rem; color: var(--text-muted); }
.modal-summary strong { font-size: 0.95rem; font-weight: 700; }

.field-group { display: flex; flex-direction: column; gap: 0.5rem; }
.field-group label { font-size: 0.85rem; font-weight: 600; }
.field-group input, .field-group select {
  padding: 0.7rem 0.9rem; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: #fff; font-size: 0.9rem; transition: var(--transition); outline: none;
}
.field-group input:focus, .field-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15); }
.field-group select option { background: #0a0e1a; }
.error-text { color: #f87171; font-size: 0.78rem; display: none; }

.qty-row { display: flex; align-items: center; justify-content: space-between; }
.qty-row > span { font-size: 0.88rem; font-weight: 600; }
.qty-control { display: flex; align-items: center; gap: 0.5rem; }
.qty-control button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(255,255,255,0.06); color: #fff; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.qty-control button:hover { background: rgba(10, 102, 194, 0.2); border-color: var(--primary); }
.qty-control input[type="number"] {
  width: 56px; text-align: center; padding: 0.4rem;
  border-radius: 8px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: #fff;
}

.total-price-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-radius: 12px;
  background: rgba(10, 102, 194, 0.07); border: 1px solid rgba(10, 102, 194, 0.25);
}
.total-price-box > span { font-size: 0.88rem; font-weight: 600; }
.price-val {
  font-size: 1.5rem; font-weight: 900; color: var(--accent);
  cursor: pointer; user-select: none; transition: var(--transition);
}
.price-val:hover { text-shadow: 0 0 20px rgba(56, 189, 248, 0.6); }

.paypal-wrapper { min-height: 48px; }

/* ─── Responsive ─── */
@media (max-width: 900px) { .desktop-nav { display: none; } }
@media (max-width: 600px) {
  .hero { padding: 4rem 1rem 2.5rem; }
  .stats-bar { gap: 1.5rem; }
  .modal-card { padding: 1.5rem; }
  .packages-grid { grid-template-columns: 1fr; }
}


/* Unified left hamburger/service drawer */
.menu-toggle { display: flex !important; order: -1; margin-left: 0 !important; margin-right: 0.85rem; }
.mobile-drawer { display: block !important; left: -320px !important; right: auto !important; border-right: 1px solid var(--border); transform: none !important; }
.mobile-drawer.active { left: 0 !important; right: auto !important; transform: none !important; }
