/* ===== DMall — Premium Site Design ===== */

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

:root {
  --bg: #06060a;
  --bg-card: #0e0e16;
  --bg-glass: rgba(14, 14, 22, 0.88);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --discord: #5865f2;
  --discord-hover: #4752c4;
  --discord-glow: rgba(88, 101, 242, 0.3);
  --gold: #f0b232;
  --gold-hover: #e8a520;
  --gold-glow: rgba(240, 178, 50, 0.2);
  --green: #57f287;
  --red: #ed4245;
  --text: #f2f3f5;
  --text-secondary: #b5bac1;
  --muted: #72767d;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--discord);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #8b9aff;
}

code {
  font-family: 'JetBrains Mono', 'Cascadia Code', 'Consolas', monospace;
  background: rgba(88, 101, 242, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.85em;
  color: #a5b4fc;
  border: 1px solid rgba(88, 101, 242, 0.15);
}

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

.narrow {
  max-width: 680px;
}

/* ═══ Background Effects ═══ */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 15% -15%, rgba(88, 101, 242, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(240, 178, 50, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(87, 242, 135, 0.04), transparent 50%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 70%);
}

/* ═══ Header ═══ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  margin-right: auto;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--text);
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--discord), #7c8aff);
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--discord-glow);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  position: relative;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--discord);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.25rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.menu-btn:hover {
  border-color: var(--discord);
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-discord {
  background: var(--discord);
  color: #fff;
  box-shadow: 0 4px 24px var(--discord-glow);
}

.btn-discord:hover {
  background: var(--discord-hover);
  color: #fff;
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold {
  background: linear-gradient(135deg, #f0b232, #e89516);
  color: #1a1000;
  box-shadow: 0 4px 24px var(--gold-glow);
  font-weight: 700;
}

.btn-gold:hover {
  color: #1a1000;
  box-shadow: 0 8px 40px rgba(240, 178, 50, 0.4);
}

.btn-block {
  width: 100%;
  margin-top: 24px;
}

/* ═══ Hero ═══ */
.hero {
  padding: 72px 0 96px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-glow 2s ease infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green); }
  50% { opacity: 0.5; box-shadow: 0 0 12px var(--green); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.gradient {
  background: linear-gradient(135deg, #a5b4fc, var(--discord), #7c8aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ═══ Preview card ═══ */
.card-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-preview {
  padding: 0;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-preview:hover {
  border-color: rgba(88, 101, 242, 0.3);
  box-shadow: 0 8px 48px rgba(88, 101, 242, 0.1);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.preview-header span:first-child,
.preview-header span:nth-child(2),
.preview-header span:nth-child(3) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.preview-header span:first-child { background: #ed4245; }
.preview-header span:nth-child(2) { background: #fee75c; }
.preview-header span:nth-child(3) { background: #57f287; }

.preview-title {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted);
}

.preview-body {
  padding: 22px;
}

.preview-cmd {
  font-family: monospace;
  font-size: 0.88rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.preview-cmd span {
  color: var(--green);
  font-weight: 600;
}

.preview-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.preview-fill {
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, var(--discord), #7c8aff);
  border-radius: 3px;
  animation: shimmer 2.5s ease infinite;
}

@keyframes shimmer {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.preview-stats {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.preview-dm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--discord), #7c8aff);
  flex-shrink: 0;
}

.preview-config {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.config-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  animation: fade-in 0.6s ease backwards;
}

.config-line:nth-child(1) { animation-delay: 0.2s; }
.config-line:nth-child(2) { animation-delay: 0.4s; }
.config-line:nth-child(3) { animation-delay: 0.6s; }

.config-line code {
  font-size: 0.75rem;
  padding: 2px 6px;
  background: rgba(88, 101, 242, 0.08);
}

.cfg-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ═══ Sections ═══ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(14, 14, 22, 0.5);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 52px;
  font-size: 1.05rem;
}

/* ═══ Features ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: rgba(88, 101, 242, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.08);
}

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

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tag-premium {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(240, 178, 50, 0.12);
  color: var(--gold);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(240, 178, 50, 0.2);
}

/* ═══ Steps ═══ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.step-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--discord), #7c8aff);
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px var(--discord-glow);
}

.step-item h3 {
  margin-bottom: 4px;
  font-weight: 700;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.placeholders-box {
  padding: 32px;
}

.placeholders-box h3 {
  margin-bottom: 24px;
  font-weight: 700;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.ph-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.ph-grid span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ═══ Command Tabs ═══ */
.cmd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.cmd-tab {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.cmd-tab:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.cmd-tab.active {
  background: var(--discord);
  border-color: var(--discord);
  color: #fff;
  box-shadow: 0 4px 16px var(--discord-glow);
}

.cmd-panel {
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  animation: panel-in 0.3s ease;
}

.cmd-panel.active {
  display: flex;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cmd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.cmd-row:hover {
  border-color: var(--border-hover);
  background: rgba(14, 14, 22, 0.95);
}

.cmd-row-danger {
  border-color: rgba(237, 66, 69, 0.2);
}

.cmd-row-danger:hover {
  border-color: rgba(237, 66, 69, 0.4);
}

.cmd-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cmd-args {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.cmd-badge-danger {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
}

.cmd-row > span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-align: right;
  flex-shrink: 0;
}

.cmd-row em {
  color: var(--gold);
  font-style: normal;
}

/* ═══ Pricing ═══ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card-featured {
  border-color: rgba(240, 178, 50, 0.4);
  box-shadow: 0 0 60px var(--gold-glow);
  background: linear-gradient(
    180deg,
    rgba(240, 178, 50, 0.05) 0%,
    var(--bg-card) 30%
  );
}

.price-card-featured:hover {
  box-shadow: 0 0 80px rgba(240, 178, 50, 0.3);
}

.badge-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, #f0b232, #e89516);
  color: #1a1000;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 4px 16px var(--gold-glow);
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.price-amount.gold {
  background: linear-gradient(135deg, var(--gold), #e89516);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-list {
  list-style: none;
}

.price-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.price-list li.yes::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.price-list li.no::before {
  content: "✗ ";
  color: var(--red);
  font-weight: 700;
}

.price-list li.muted {
  opacity: 0.5;
}

/* ═══ Buy ═══ */
.buy-box {
  padding: 40px;
}

.buy-box h2 {
  text-align: center;
  margin-bottom: 28px;
  font-weight: 700;
}

.buy-steps {
  margin-left: 24px;
  color: var(--text-secondary);
}

.buy-steps li {
  margin-bottom: 16px;
  padding-left: 10px;
  line-height: 1.7;
}

.buy-steps strong {
  color: var(--text);
}

/* ═══ FAQ ═══ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item[open] {
  border-color: rgba(88, 101, 242, 0.3);
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  user-select: none;
  color: var(--text);
  transition: color var(--transition);
}

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

.faq-item summary::before {
  content: '▸';
  font-size: 0.8rem;
  color: var(--discord);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ═══ CTA ═══ */
.cta {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--discord-glow), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ═══ Footer ═══ */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

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

.footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

/* ═══ Toast ═══ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 28px;
  background: var(--green);
  color: #0a1a0f;
  font-weight: 600;
  border-radius: 14px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.hidden {
  display: none;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-preview {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px 24px;
    background: rgba(6, 6, 10, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .nav a::after {
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .header .btn-discord:not(.btn-lg) {
    display: none;
  }

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

  .cmd-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cmd-row > span {
    text-align: left;
  }

  .cmd-tabs {
    gap: 6px;
  }

  .cmd-tab {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .stat {
    align-items: center;
  }
}
