/* ===== CRIMSON CYBER — iosdevaccount.monster ===== */
:root {
  --bg-deep: #0A0505;
  --bg-card: #150808;
  --bg-card2: #1A0A0A;
  --accent: #DC2626;
  --accent-light: #EF4444;
  --accent-glow: rgba(220, 38, 38, 0.25);
  --text: #F5F5F5;
  --text-muted: #A0A0A0;
  --text-dim: #707070;
  --border: rgba(220, 38, 38, 0.2);
  --border-strong: rgba(220, 38, 38, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== HEADER / NAV ===== */
body > header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 5, 5, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
}
.lang-switcher a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--accent);
  border-color: var(--border-strong);
}

.btn-order {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10, 5, 5, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-order { text-align: center; margin-top: 8px; }
.mobile-menu .lang-switcher { justify-content: flex-start; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.1);
  border: 1px solid var(--border-strong);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SECTION COMMON ===== */
section { padding: 80px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== FEATURES ===== */
#features { background: var(--bg-deep); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== PRICING ===== */
#pricing { background: var(--bg-card); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(220,38,38,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-card .sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
}
.price-sign { font-size: 24px; font-weight: 700; color: var(--text-muted); line-height: 1.6; }
.price-val { font-size: 52px; font-weight: 900; line-height: 1; color: var(--text); }

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-pricing {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-pricing-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-pricing-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}
.btn-pricing-filled {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}
.btn-pricing-filled:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 20px rgba(220,38,38,0.4);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ===== HOW IT WORKS ===== */
#how { background: var(--bg-deep); }

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

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-num {
  width: 48px; height: 48px;
  background: rgba(220,38,38,0.1);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
#faq { background: var(--bg-card); }

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--bg-deep);
  border: none;
  color: var(--text);
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-card2); }

.faq-arrow {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  background: var(--bg-deep);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== CTA SECTION ===== */
#cta {
  background: linear-gradient(135deg, #150808 0%, #0A0505 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
}

#cta .section-title { margin-bottom: 16px; }
#cta p { color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #1A0A0A 0%, #0A0505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}

.blog-card-body { padding: 22px; }

.blog-tag {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.blog-soon {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.08);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand img { height: 32px; width: auto; }
.footer-brand p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--accent-light); }

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

.social-link {
  width: 40px; height: 40px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--text-muted);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.5;
}

.footer-made {
  color: var(--text-dim);
  font-size: 12px;
  white-space: nowrap;
}
.footer-made a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-made a:hover { color: var(--accent-light); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 24px 24px 0;
  max-width: 860px;
  margin: 0 auto;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}
.breadcrumbs-list li a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs-list li a:hover { color: var(--accent); }
.breadcrumbs-list li.current { color: var(--text-muted); }
.breadcrumb-sep { color: var(--text-dim); font-size: 11px; }

/* ===== ARTICLE ===== */
.article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}



.article-header {
  margin-bottom: 36px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article-tag {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-date {
  color: var(--text-dim);
  font-size: 13px;
}
.article-read {
  color: var(--text-dim);
  font-size: 13px;
}
.article-sep { color: var(--border-strong); }

.article-header h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.article-intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.article-divider {
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}

.article-body h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--text);
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}

.article-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-body ul, .article-body ol {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  padding-left: 22px;
  margin-bottom: 16px;
}
.article-body li { margin-bottom: 8px; }

.article-body strong { color: var(--text); font-weight: 700; }

.article-infobox {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.article-infobox p {
  margin-bottom: 0;
  font-size: 15px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.article-table th {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.article-table td {
  padding: 11px 16px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.article-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.article-source {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
}
.article-source a {
  color: var(--accent);
  text-decoration: none;
}
.article-source a:hover { color: var(--accent-light); }

.article-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #150808 0%, #0A0505 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.article-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.article-cta p { color: var(--text-muted); margin-bottom: 20px; }

/* ===== OCTO BROWSER BLOCK ===== */
.octo-block {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
}

.octo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.octo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.octo-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.octo-logo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.octo-logo-tag {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

.octo-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.octo-content a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(239,68,68,0.3);
  transition: border-color 0.2s;
}
.octo-content a:hover {
  border-color: var(--accent);
}

.octo-promo-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.octo-promo-tag {
  background: rgba(220,38,38,0.1);
  border: 1px solid var(--border-strong);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 8px;
  font-family: monospace;
  letter-spacing: 0.5px;
}

.octo-cta {
  text-align: center;
  padding: 32px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.octo-cta h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.octo-cta p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-octo {
  display: inline-block;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
}
.btn-octo:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}

@media (max-width: 768px) {
  .octo-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== SUPPORT / PRIVACY / TERMS pages ===== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.page-content h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.page-content .date { color: var(--text-dim); font-size: 13px; margin-bottom: 40px; }
.page-content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; color: var(--accent-light); }
.page-content p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.page-content ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 14px; }
.page-content ul li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }
.page-content a { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-order.desktop-only { display: none; }

  .stats-inner { gap: 32px; }
  .stat-num { font-size: 28px; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
