/* ===== CoMarket.ing — Design System (autosend.com inspired) ===== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens --- */
:root {
  --bg: #ffffff;
  --bg-alt: #fafaf9;
  --text: #1c1917;
  --text-body: #44403c;
  --text-muted: #78716c;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --border: #e7e5e4;
  --border-light: #f5f5f4;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .06);
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
  --max-w: 1200px;
  --section-py: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--bg-alt);
}

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

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}


/* --- Typography --- */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.15;
  font-weight: 400;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
}

h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: #d6d3d1;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-link.signup {
  background: var(--accent);
  color: #fff;
  margin-left: 4px;
}

.nav-link.signup:hover {
  background: var(--accent-hover);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 0 0 var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-illustration {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  padding: 60px 24px 0;
  max-width: 820px;
  margin: 0 auto;
}

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

.hero .subtitle {
  margin: 24px auto 0;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-alt);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-proof .stat {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.social-proof .stat strong {
  color: var(--text);
  font-size: 15px;
}

.logos {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: .45;
}

.logos span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

/* ===== SETUP / FEATURES GRID ===== */
.features-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== TABS SECTION ===== */
.tabs-section {
  background: var(--bg-alt);
}

.tabs-header {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.tab-text h3 {
  margin-bottom: 16px;
}

.tab-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.tab-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  /*padding: 40px;*/
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-visual img {
  border-radius: var(--radius-lg);
}

.tab-visual-inner {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ===== CODE / API SECTION ===== */
.api-section {
  background: var(--bg);
}

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

.api-text .label {
  margin-bottom: 12px;
}

.api-text h2 {
  margin-bottom: 20px;
}

.api-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.code-block {
  background: #1c1917;
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow-x: auto;
  position: relative;
}

.code-block pre {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: #e7e5e4;
  white-space: pre;
  margin: 0;
}

.code-block .comment {
  color: #78716c;
}

.code-block .string {
  color: #86efac;
}

.code-block .key {
  color: #93c5fd;
}

.code-block .method {
  color: #c4b5fd;
}

.code-lang-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.code-lang-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  color: #78716c;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.code-lang-tab.active {
  background: rgba(99, 102, 241, .15);
  color: #a5b4fc;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-card cite {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

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

/* ===== PRICING GRID ===== */
.pricing-section {
  background: var(--bg-alt);
  text-align: center;
}

.pricing-section h2 {
  margin-bottom: 16px;
}

.pricing-section>p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-purpose {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 24px 0 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li,
.pricing-limits li,
.pricing-targets li {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before,
.pricing-targets li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

.pricing-limits {
  list-style: none;
  padding: 0;
}

.pricing-limits li::before {
  content: '−';
  color: var(--text-muted);
  font-weight: bold;
}

.pricing-targets {
  list-style: none;
  padding: 0;
}

.pricing-card .btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* ===== DASHBOARD ===== */
.dashboard-section {
  text-align: center;
}

.dashboard-section h2 {
  margin-bottom: 16px;
}

.dashboard-section .subtitle {
  margin-bottom: 48px;
}

.dashboard-preview {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.dash-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}

.dash-sidebar-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  color: var(--text-muted);
  transition: 0.15s;
}

.dash-sidebar-item.active {
  background: var(--accent);
  color: #fff;
}

.dash-main {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-header-row h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.dash-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #f0fdf4;
  color: #16a34a;
  padding: 4px 10px;
  border-radius: 20px;
}

.dash-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  width: 100px;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

.dash-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
  transition: width 1s ease;
}

.dash-bar-fill.green {
  background: #22c55e;
}

.dash-bar-fill.amber {
  background: #f59e0b;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
}

.cta-llm-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-llm-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: 0.2s;
}

.cta-llm-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--bg);
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}

.faq-item>div {
  padding: 0 24px 20px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #16a34a;
}

.footer-status .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

/* ===== DOT GRID BACKGROUND ===== */
.dot-grid {
  position: relative;
}

.dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.dot-grid>* {
  position: relative;
  z-index: 1;
}

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

  .tab-content-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-mock {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: 16px;
  }

  .logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}