/* ========================================
   Port City Radar — Pricing Page
   ======================================== */

:root {
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --bg-surface: #162032;
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-glow: rgba(37, 99, 235, 0.15);
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --violet: #8b5cf6;
  --violet-light: #a78bfa;
  --success: #10b981;
  --danger: #ef4444;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #334155;
  --border-light: #475569;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.2s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Sticky Navigation
   ======================================== */

.pricing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.pricing-nav.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-color);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo .logo-icon {
  font-size: 24px;
  color: var(--primary-light);
}

.nav-logo .logo-text {
  font-size: 18px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 4px;
}

.hamburger svg {
  display: block;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.03);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-accent {
  background: var(--accent);
  color: #0f172a;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-violet {
  background: var(--violet);
  color: white;
}

.btn-violet:hover {
  background: var(--violet-light);
  transform: translateY(-1px);
}

.btn-current {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: default;
  pointer-events: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ========================================
   Stats Bar
   ======================================== */

.stats-bar {
  padding: 0 24px;
  margin-bottom: 80px;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   Section Layout
   ======================================== */

.section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-centered {
  text-align: center;
}

.section-centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Pricing Cards
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-light);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.15), 0 0 80px rgba(37, 99, 235, 0.05);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card.researcher-card {
  border-color: var(--violet);
}

.pricing-card.researcher-card:hover {
  border-color: var(--violet-light);
}

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.badge-free {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.badge-popular {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}

.badge-power {
  background: rgba(139, 92, 246, 0.12);
  color: var(--violet-light);
}

.card-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.card-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.card-features {
  list-style: none;
  margin-bottom: 32px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-features li .check {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-features li.highlight {
  color: var(--text-primary);
  font-weight: 500;
}

.card-features li.section-break {
  border-top: 1px solid var(--border-color);
  margin-top: 8px;
  padding-top: 16px;
}

.card-cta {
  width: 100%;
}

/* ========================================
   Showcase Sections
   ======================================== */

.showcase {
  padding: 80px 24px;
}

.showcase-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.showcase-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-content h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.showcase-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.showcase-bullets li .bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.bullet-blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-light);
}

.bullet-violet {
  background: rgba(139, 92, 246, 0.12);
  color: var(--violet-light);
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.showcase-badge.pro {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-light);
}

.showcase-badge.researcher {
  background: rgba(139, 92, 246, 0.12);
  color: var(--violet-light);
}

/* ========================================
   CSS-Only Pro Dashboard Mockup
   ======================================== */

.mockup-container {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: perspective(1200px) rotateY(-3deg);
  transition: transform 0.4s ease;
}

.mockup-container:hover {
  transform: perspective(1200px) rotateY(0deg);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.mockup-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-logo {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 4px;
}

.mockup-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.mockup-badge {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.mockup-search {
  flex: 1;
  max-width: 240px;
  margin: 0 16px;
  height: 24px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.mockup-header-btns {
  display: flex;
  gap: 6px;
}

.mockup-header-btn {
  width: 48px;
  height: 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 3px;
}

.mockup-body {
  display: flex;
  height: 280px;
}

.mockup-panels {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-color);
}

.mockup-panel {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
}

.mockup-panel-header {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
}

.panel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.panel-dot.red { background: #ef4444; }
.panel-dot.orange { background: #f59e0b; }
.panel-dot.blue { background: #3b82f6; }
.panel-dot.violet { background: #8b5cf6; }
.panel-dot.cyan { background: #06b6d4; }
.panel-dot.green { background: #10b981; }

.panel-name {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-panel-rows {
  flex: 1;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-row {
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  opacity: 0.6;
}

.mockup-row:nth-child(1) { width: 90%; }
.mockup-row:nth-child(2) { width: 75%; }
.mockup-row:nth-child(3) { width: 85%; }
.mockup-row:nth-child(4) { width: 60%; }
.mockup-row:nth-child(5) { width: 70%; }

.mockup-sidebar {
  width: 140px;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-sidebar-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.mockup-chat-bubble {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 7px;
  line-height: 1.3;
  color: var(--text-muted);
}

.bubble-user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  max-width: 90%;
}

.bubble-ai {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  max-width: 100%;
}

/* ========================================
   CSS-Only API Mockup
   ======================================== */

.api-mockup {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: perspective(1200px) rotateY(3deg);
  transition: transform 0.4s ease;
}

.api-mockup:hover {
  transform: perspective(1200px) rotateY(0deg);
}

.api-mockup-layout {
  display: flex;
  min-height: 300px;
}

.api-sidebar {
  width: 140px;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  padding: 14px 12px;
}

.api-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.api-sidebar-logo .mockup-logo {
  width: 12px;
  height: 12px;
  background: var(--violet);
}

.api-sidebar-logo span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
}

.api-nav-item {
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.api-nav-item.active {
  background: rgba(139, 92, 246, 0.12);
  color: var(--violet-light);
}

.api-main {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.api-main-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.api-code-block {
  background: #0c1222;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-secondary);
  overflow-x: auto;
}

.api-code-block .cmd { color: var(--success); }
.api-code-block .flag { color: var(--violet-light); }
.api-code-block .string { color: var(--accent); }
.api-code-block .url { color: var(--primary-light); }

.api-response {
  background: #0c1222;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  line-height: 1.5;
  color: var(--text-muted);
}

.api-response .key { color: var(--primary-light); }
.api-response .val-str { color: var(--success); }
.api-response .val-num { color: var(--accent); }

.api-response-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.api-status {
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  font-size: 10px;
  font-weight: 600;
}

/* ========================================
   Feature Comparison Table
   ======================================== */

.comparison-section {
  padding: 80px 24px;
  background: var(--bg-surface);
}

.comparison-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table .tier-header {
  font-weight: 700;
  color: var(--text-primary);
}

.comparison-table .tier-price {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.comparison-table .category-row td {
  background: rgba(37, 99, 235, 0.04);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 20px;
}

.comparison-table .feature-name {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table .check {
  color: var(--success);
  font-size: 18px;
}

.comparison-table .x-mark {
  color: var(--text-muted);
  font-size: 16px;
}

.comparison-table .value {
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table .pro-col {
  background: rgba(37, 99, 235, 0.03);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
  padding: 80px 24px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-content {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   Footer CTA
   ======================================== */

.footer-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center bottom, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.footer-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.footer-cta .btn {
  position: relative;
}

.footer-cta .subtext {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
}

/* ========================================
   Page Footer
   ======================================== */

.page-footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.page-footer p {
  font-size: 13px;
  color: var(--text-muted);
}

.page-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.page-footer a:hover {
  color: var(--text-primary);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .showcase-grid,
  .showcase-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-grid.reverse .showcase-content {
    order: -1;
  }

  .mockup-container,
  .api-mockup {
    transform: none;
  }

  .mockup-container:hover,
  .api-mockup:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 28px;
  }

  .showcase-content h2 {
    font-size: 24px;
  }

  .mockup-body {
    height: 200px;
  }

  .mockup-sidebar {
    width: 100px;
  }

  .api-mockup-layout {
    min-height: 240px;
  }

  .api-sidebar {
    width: 100px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-value {
    font-size: 24px;
  }

  .pricing-card {
    padding: 24px;
  }

  .mockup-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-header-btns {
    display: none;
  }
}
