/* ==========================================================================
   VLTK Control Center - Official Landing Page Stylesheet
   Design: Modern Dark Gaming UI (Clean, high contrast, cyber cyan/blue)
   ========================================================================== */

:root {
  --bg-darkest: #06090e;
  --bg-main: #0a0f18;
  --bg-card: #0f172a;
  --bg-card-hover: #141f36;
  --bg-glass: rgba(15, 23, 42, 0.75);
  
  --border-color: #1e293b;
  --border-glow: rgba(0, 240, 255, 0.3);
  
  --primary: #00f0ff;
  --primary-hover: #33f3ff;
  --primary-glow: rgba(0, 240, 255, 0.25);
  
  --secondary: #00d2be;
  --accent-blue: #3b82f6;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-width: 1200px;
  --transition: all 0.25s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title .highlight {
  background: linear-gradient(135deg, #00f0ff 0%, #38bdf8 50%, #00d2be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Background Gradients & Ambient Effects */
.bg-ambient-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 550px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.12) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #00b4d8 100%);
  color: #040911;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--primary-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #33f3ff 0%, #0096c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 140px 0 80px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(14, 28, 48, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d2be;
  box-shadow: 0 0 10px #00d2be;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 190, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 190, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 190, 0); }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-hints {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.hero-hints span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero Showcase Frame */
.hero-showcase {
  max-width: 1040px;
  margin: 20px auto 0;
  position: relative;
}

.app-mockup {
  background: #0d1424;
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(0, 240, 255, 0.15);
  transition: var(--transition);
}

.app-mockup:hover {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px -5px rgba(0, 240, 255, 0.25);
}

.mockup-header {
  height: 38px;
  background: #090e1a;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
  margin-left: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.mockup-body {
  position: relative;
  background: #05080e;
  cursor: pointer;
}

.mockup-body img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mockup-overlay-tip {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

/* Problem & Solution Section */
.section-problem {
  padding: 90px 0;
  position: relative;
  background: #080c14;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.card-comparison {
  padding: 36px;
  border-radius: var(--radius-xl);
  position: relative;
}

.card-pain {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.card-solution {
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.08);
}

.card-comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.card-comp-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.card-pain h3 { color: #fca5a5; }
.card-solution h3 { color: #38bdf8; }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.comp-list li strong {
  color: var(--text-main);
  display: inline;
}

.icon-cross {
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-check {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Features Section */
.section-features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.5), 0 0 20px -5px rgba(0, 240, 255, 0.15);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How to use / Guide */
.section-guide {
  padding: 100px 0;
  background: #080c14;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-3px);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(0, 240, 255, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  font-family: monospace;
}

.step-card:hover .step-number {
  color: var(--primary);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Screenshots Gallery */
.section-gallery {
  padding: 100px 0;
}

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

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7);
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #05080e;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-thumb img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 14, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-badge {
  background: rgba(0, 240, 255, 0.9);
  color: #040911;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-caption {
  padding: 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.gallery-caption h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 6, 10, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-main);
  text-align: center;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--primary);
}

/* Comparison Table */
.section-comparison {
  padding: 100px 0;
  background: #080c14;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.table-wrapper {
  margin-top: 50px;
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.comp-table th {
  background: #090e1a;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.comp-table th.col-target {
  background: rgba(0, 240, 255, 0.06);
  color: var(--primary);
  border-left: 1px solid rgba(0, 240, 255, 0.2);
  border-right: 1px solid rgba(0, 240, 255, 0.2);
}

.comp-table td.col-target {
  background: rgba(0, 240, 255, 0.02);
  border-left: 1px solid rgba(0, 240, 255, 0.15);
  border-right: 1px solid rgba(0, 240, 255, 0.15);
  font-weight: 600;
  color: var(--text-main);
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table td {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Free Mode & Trial Explanation */
.section-trial {
  padding: 90px 0;
}

.trial-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(14, 28, 48, 0.9) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.trial-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.trial-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.trial-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.trial-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trial-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--text-main);
}

.trial-action-box {
  background: rgba(6, 9, 14, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.trial-action-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trial-action-box p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* FAQ Accordion */
.section-faq {
  padding: 100px 0;
  background: #080c14;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  max-width: 820px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(0, 240, 255, 0.3);
}

.faq-summary {
  padding: 22px 26px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 26px 22px 26px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-body {
  border-top-color: rgba(255, 255, 255, 0.04);
}

/* Final CTA Section */
.section-cta {
  padding: 110px 0;
  position: relative;
}

.cta-box {
  background: radial-gradient(circle at 50% 50%, #0e1e35 0%, #080f1d 70%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 70px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px -10px rgba(0, 240, 255, 0.15);
}

.cta-box h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #05080e;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

.disclaimer-note {
  max-width: 580px;
  line-height: 1.5;
}

/* Responsive Breakpoints */
.section-buy{padding:100px 0;background:linear-gradient(180deg,rgba(10,15,24,.25),rgba(0,240,255,.035))}.account-grid{max-width:980px;margin:38px auto 0}.account-card{background:#101620;border:1px solid var(--border-color);border-radius:18px;padding:28px;box-shadow:0 22px 70px rgba(0,0,0,.3)}.account-card.hidden,.bank-box.hidden{display:none}.auth-tabs{display:flex;gap:8px;margin-bottom:22px}.auth-tab{flex:1;padding:12px;border-radius:9px;border:1px solid #344158;background:#151d2a;color:#aab6c8;cursor:pointer}.auth-tab.active{background:#173d49;color:#7ff7ff;border-color:#00b9c6}.account-card label{display:block;color:#cbd5e1;margin:12px 0}.account-card input{box-sizing:border-box;width:100%;margin-top:7px;padding:13px;border-radius:9px;border:1px solid #344158;background:#0b111b;color:#fff}.form-message{min-height:24px;margin-top:14px;color:#fbbf24}.account-heading{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:24px}.account-heading strong{display:block;font-size:1.05rem}.muted-label{display:block;color:#8491a5;font-size:.8rem}.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.plan-card{border:1px solid #344158;border-radius:12px;padding:18px;background:#0b111b}.plan-card h3{margin:0 0 7px}.plan-price{font-size:1.45rem;color:#7ff7ff;font-weight:800;margin:10px 0}.bank-box{margin:20px 0;padding:18px;border:1px solid #00b9c6;border-radius:12px;background:#08252c;line-height:1.8}.bank-box strong,.license-value{color:#fbbf24;font-family:Consolas,monospace}.orders-list{display:grid;gap:10px}.order-item{padding:14px;border-radius:10px;background:#0b111b;border:1px solid #28354a}.order-meta{color:#8491a5;font-size:.86rem;margin-top:5px}.status-paid{color:#4ade80}.status-pending{color:#fbbf24}
.account-card .hidden{display:none}.payment-qr{display:block;width:min(100%,320px);margin:0 auto 18px;border-radius:12px;background:#fff}
@media (max-width: 1024px) {
  .features-grid, .steps-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .plans{grid-template-columns:1fr}.account-card{padding:20px}
  .hero-title {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .problem-grid, .features-grid, .steps-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #080d16;
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-actions .btn-sm {
    display: none;
  }
  .card-comparison {
    padding: 26px;
  }
  .trial-banner {
    padding: 30px 20px;
  }
  .cta-box {
    padding: 44px 20px;
  }
  .cta-box h2 {
    font-size: 2rem;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
