/* === CSS Variables === */
:root {
  --background: hsl(220, 30%, 6%);
  --bg-1: hsl(222, 28%, 10%);
  --surface: hsl(224, 32%, 13%);
  --foreground: hsl(230, 100%, 97%);
  --text-2: hsl(224, 15%, 71%);
  --primary: hsl(50, 100%, 50%);
  --primary-hover: hsl(47, 100%, 45%);
  --primary-foreground: hsl(220, 30%, 6%);
  --accent: hsl(48, 100%, 71%);
  --accent-deep: hsl(36, 100%, 32%);
  --accent-foreground: hsl(220, 30%, 6%);
  --secondary: hsl(224, 32%, 13%);
  --secondary-foreground: hsl(230, 100%, 97%);
  --muted: hsl(224, 28%, 10%);
  --muted-foreground: hsl(224, 15%, 71%);
  --card: hsl(224, 32%, 13%);
  --card-foreground: hsl(230, 100%, 97%);
  --border: hsl(42, 100%, 15%);
  --wa: hsl(142, 70%, 49%);
  --wa-hover: hsl(142, 70%, 42%);
  --destructive: hsl(0, 84%, 60%);
  --radius: 0.75rem;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
section[id] { scroll-margin-top: 5rem; }

/* === Container === */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === Gradient text === */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, var(--primary), var(--accent));
}
.highlight-text {
  background: linear-gradient(transparent 60%, rgba(255,200,0,0.25) 60%);
  padding: 0 4px;
  color: var(--foreground);
}

/* === Glass Card === */
.glass-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 700;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  gap: 0.5rem;
}
.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem;
  height: 3rem;
  padding: 0 2rem;
  border-radius: calc(var(--radius));
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}
.btn-hero:hover { background-color: var(--primary-hover); }
.btn-wa {
  background-color: var(--wa);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border-radius: calc(var(--radius) - 2px);
}
.btn-wa:hover { background-color: var(--wa-hover); }
.btn-wa-lg {
  background-color: var(--wa);
  color: var(--primary-foreground);
  font-size: 1rem;
  height: 3rem;
  padding: 0 2rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.btn-wa-lg:hover { background-color: var(--wa-hover); }
.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  font-size: 0.875rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
}
.btn-outline:hover { background-color: rgba(255,255,255,0.05); }
.btn-outline-lg {
  background-color: transparent;
  color: var(--foreground);
  font-size: 1rem;
  height: 3rem;
  padding: 0 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.btn-outline-lg:hover { background-color: rgba(255,255,255,0.05); }
.btn-primary-nav {
  background-color: var(--wa);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  height: 2rem;
  padding: 0 1rem;
  border-radius: calc(var(--radius) - 2px);
}
.btn-primary-nav:hover { background-color: var(--wa-hover); }
.btn-full { width: 100%; }

/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.025em; }
.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--foreground); }
.nav-link.active { color: var(--primary); }

/* Dropdown */
.dropdown-wrap { position: relative; }
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  color: var(--text-2);
  transition: color 0.2s;
}
.dropdown-trigger:hover { color: var(--foreground); }
.dropdown-trigger.active { color: var(--primary); }
.dropdown-trigger svg { width: 14px; height: 14px; transition: transform 0.2s; }
.dropdown-wrap:hover .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  width: 12rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
  padding: 0.25rem;
  z-index: 50;
}
.dropdown-wrap:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: calc(var(--radius) - 4px);
  transition: color 0.2s, background-color 0.2s;
}
.dropdown-item:hover { color: var(--foreground); background-color: rgba(255,255,255,0.05); }

.nav-cta { display: none; }
.mobile-menu-btn { color: var(--foreground); padding: 0.5rem; display: block; }
.mobile-nav { display: none; background-color: var(--background); border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: calc(var(--radius) - 2px);
  display: block;
}
.mobile-nav-link:hover { color: var(--foreground); }
.mobile-nav-link.active { color: var(--primary); }
.mobile-apps-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: calc(var(--radius) - 2px);
  width: 100%;
  text-align: left;
}
.mobile-apps-toggle.active { color: var(--primary); }
.mobile-apps-list { display: none; padding-left: 1rem; flex-direction: column; gap: 0.25rem; }
.mobile-apps-list.open { display: flex; }

/* === Footer === */
footer { background-color: var(--bg-1); border-top: 1px solid var(--border); }
.footer-inner { padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text-2); line-height: 1.625; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background-color: var(--wa);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.2s;
}
.footer-wa-btn:hover { background-color: var(--wa-hover); }
.footer-col h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { font-size: 0.875rem; color: var(--text-2); transition: color 0.2s; }
.footer-col li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-2);
}

/* === WhatsApp Float === */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--wa);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: background-color 0.2s, transform 0.2s;
  animation: pulse-glow 2s ease-in-out infinite;
}
.wa-float:hover { background-color: var(--wa-hover); transform: scale(1.05); }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.7); }
}

/* === Sections / Typography === */
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
  margin-bottom: 1rem;
}

/* === Grid layouts === */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* === Tables === */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead tr { border-bottom: 1px solid var(--border); }
th { text-align: left; padding: 0.75rem 1rem; font-weight: 600; color: var(--foreground); }
td { padding: 0.75rem 1rem; color: var(--text-2); }
tr { border-bottom: 1px solid rgba(42, 30, 0, 0.3); }
tr:last-child { border-bottom: none; }
.table-surface thead { background-color: var(--surface); }

/* === FAQ Accordion === */
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-trigger span.q { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--muted-foreground);
}
.faq-body { display: none; padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--text-2); line-height: 1.625; }
.faq-body.open { display: block; }
.faq-body p { margin-bottom: 0.75rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.faq-body ul li { margin-bottom: 0.25rem; }
.faq-body ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.faq-body ol li { margin-bottom: 0.5rem; }
.faq-body strong { color: var(--foreground); }

/* === Details FAQ (plans page) === */
details.glass-card > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  list-style: none;
}
details.glass-card > summary::-webkit-details-marker { display: none; }
details.glass-card > summary svg { flex-shrink: 0; color: var(--text-2); transition: transform 0.2s; }
details.glass-card[open] > summary svg { transform: rotate(90deg); }
.details-body { padding: 0 1rem 1rem; font-size: 0.875rem; color: var(--text-2); line-height: 1.625; }
.details-body p { margin-bottom: 0.75rem; }
.details-body p:last-child { margin-bottom: 0; }
.details-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.details-body ul li { margin-bottom: 0.25rem; }
.details-body ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.details-body strong { color: var(--foreground); }

/* === Category tabs === */
.tab-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.tab-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background-color: var(--muted);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.tab-btn:hover { border-color: rgba(255,200,0,0.5); color: var(--foreground); }
.tab-btn.active { background-color: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

/* === Testimonial cards === */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 64rem; margin: 0 auto; }
.avatar-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.stars { display: flex; gap: 2px; }
.star { color: var(--primary); font-size: 0.875rem; }
.star-empty { color: var(--muted-foreground); font-size: 0.875rem; }

/* === Breadcrumbs === */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-2); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--text-2); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--text-2); }

/* === step-circle === */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.step-num-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.step-num-xs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: rgba(255,200,0,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Icon containers === */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius));
  background-color: rgba(255,200,0,0.1);
  color: var(--primary);
}
.icon-box-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: calc(var(--radius) - 2px);
  background-color: rgba(255,200,0,0.1);
  color: var(--primary);
}
.icon-box-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius));
  background-color: rgba(255,200,0,0.1);
  color: var(--primary);
  flex-shrink: 0;
}
.icon-box-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(255,200,0,0.1);
  color: var(--primary);
  flex-shrink: 0;
}

/* === Text utilities === */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-text2 { color: var(--text-2); }
.text-foreground { color: var(--foreground); }
.text-wa { color: var(--wa); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-black { font-weight: 900; }

/* === Spacing === */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

/* Flex utils */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }

/* === Background colors === */
.bg-bg1 { background-color: var(--bg-1); }
.bg-surface { background-color: var(--surface); }
.bg-card { background-color: var(--card); }
.bg-gradient-hero { background: linear-gradient(to bottom, var(--bg-1), var(--background)); }
.bg-gradient-cta { background: linear-gradient(to right, var(--surface), var(--bg-1)); }

/* === Border radius === */
.rounded { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-full { border-radius: 9999px; }

/* === Misc === */
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.border-primary-30 { border-color: rgba(255,200,0,0.3) !important; }
.border-primary-50 { border-color: rgba(255,200,0,0.5) !important; }
.ring-primary { box-shadow: 0 0 0 1px rgba(255,200,0,0.3), 0 0 0 1px var(--primary); }
.hover-border-primary { transition: border-color 0.2s; }
.hover-border-primary:hover { border-color: rgba(255,200,0,0.5); }
.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.125rem 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}
.italic { font-style: italic; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* === cv-auto === */
.cv-auto { content-visibility: auto; contain-intrinsic-size: auto 600px; }

/* Rating bar */
.rating-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--surface);
}

/* Prose custom for privacy/terms */
.prose-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.prose-section p { font-size: 0.875rem; color: var(--text-2); line-height: 1.625; }
.prose-section { margin-bottom: 1.5rem; }

/* 404 */
.not-found-wrap { display: flex; min-height: 100vh; align-items: center; justify-content: center; background-color: var(--muted); }
.not-found-inner { text-align: center; }

/* app card */
.app-card {
  display: block;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.app-card:hover { border-color: rgba(255,200,0,0.5); box-shadow: 0 4px 20px rgba(255,200,0,0.05); }
.app-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(255,200,0,0.1);
  color: var(--primary);
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.app-card:hover .app-icon-box { background-color: rgba(255,200,0,0.2); }
.platform-tag {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background-color: var(--muted);
  color: var(--muted-foreground);
}

/* Social proof bar divider */
.sp-divider { display: none; width: 1px; height: 2.5rem; background-color: var(--border); }

/* Code */
code { font-family: monospace; font-size: 0.875em; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .sp-divider { display: block; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .flex-sm-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: block; }
  .mobile-menu-btn { display: none; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .sp-divider { display: block; }
  .text-md-4xl { font-size: 2.25rem; }
  .text-md-5xl { font-size: 3rem; }
  .text-md-6xl { font-size: 3.75rem; }
  .py-md-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .pt-md-32 { padding-top: 8rem; }
  .pb-md-24 { padding-bottom: 6rem; }
}
.sp-divider { display: none; }
