/* AfroGent landing — design tokens from the mobile app */
:root {
  --primary: #0b3b2a;
  --primary-dark: #1e4a2e;
  --primary-light: #81c784;
  --surface: #f2fbf5;
  --surface-alt: #dde8e3;
  --chip: #e4f3e9;
  --cream: #f5ebe0;
  --text: #102a23;
  --muted: #9ba7a0;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 16px rgba(11, 59, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 59, 42, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --nav-height: 72px;
  --max-width: 1120px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --font: "Roboto", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  padding-inline: 16px;
  margin-inline: auto;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(242, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 59, 42, 0.06);
  transition: box-shadow 0.25s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.4px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform 0.2s, background 0.2s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-cta-desktop {
  display: none;
}

.menu-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--primary);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 48px) 0 80px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-alt) 55%, var(--surface) 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

.hero-visual {
  position: relative;
  order: -1;
  width: 100%;
  min-height: auto;
}

.collage {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 280px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--chip);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  max-width: none;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-primary,
.btn-secondary {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(11, 59, 42, 0.15);
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

/* Hero collage */
.collage-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-card:nth-child(1) {
  width: 48%;
  height: 58%;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.collage-card:nth-child(2) {
  width: 44%;
  height: 52%;
  top: 4%;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
}

.collage-card:nth-child(3) {
  width: 44%;
  height: 52%;
  bottom: 8%;
  left: 4%;
  transform: rotate(3deg);
  z-index: 3;
}

.collage-card:nth-child(4) {
  width: 48%;
  height: 58%;
  bottom: 0;
  right: 2%;
  transform: rotate(-3deg);
  z-index: 4;
}

.hero-visual:hover .collage-card:nth-child(1) { transform: rotate(-6deg) translateY(-4px); }
.hero-visual:hover .collage-card:nth-child(2) { transform: rotate(7deg) translateY(-6px); }
.hero-visual:hover .collage-card:nth-child(3) { transform: rotate(5deg) translateY(-4px); }
.hero-visual:hover .collage-card:nth-child(4) { transform: rotate(-5deg) translateY(-6px); }

/* ── App preview carousel ── */
.app-preview {
  background: var(--white);
  padding-top: 48px;
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.preview-tab {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid rgba(11, 59, 42, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.preview-tab:hover,
.preview-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.preview-panel {
  display: none;
}

.preview-panel.active {
  display: block;
}

.preview-panel-desc {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.preview-hero {
  margin: 0 auto 28px;
  max-width: 900px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 59, 42, 0.08);
  background: var(--chip);
}

.preview-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-track {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.screenshot-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 16px;
  padding-inline: 16px;
  padding-bottom: 12px;
  margin-inline: -16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--chip);
  justify-content: flex-start;
}

.screenshot-scroll::-webkit-scrollbar {
  height: 6px;
}

.screenshot-scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

.screenshot-item {
  flex: 0 0 min(88vw, 560px);
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 59, 42, 0.08);
  background: var(--chip);
}

.screenshot-item--wide {
  flex: 0 0 min(92vw, 720px);
}

.screenshot-item--feature {
  flex: 0 0 min(78vw, 300px);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 199, 132, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Section shared ── */
section {
  padding: 56px 0;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ── Features ── */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin-inline: auto;
}

.feature-card {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 59, 42, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--chip);
  border-radius: var(--radius-sm);
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Categories ── */
.categories {
  background: var(--surface-alt);
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin-inline: auto;
}

.chip {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid rgba(11, 59, 42, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.chip:hover,
.chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Showcase rows ── */
.showcase {
  background: var(--surface);
}

.showcase-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse .showcase-content {
  order: 2;
}

.showcase-row.reverse .showcase-media {
  order: 1;
}

.showcase-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-row.reverse .showcase-content,
.showcase-row.reverse .showcase-media {
  order: unset;
}

.showcase-content h3 {
  font-size: clamp(1.5rem, 5vw, 28px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.showcase-content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--chip);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ── Pro banner ── */
.pro-banner {
  padding: 80px 0;
}

.pro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.pro-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.pro-inner p {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.88;
  max-width: 440px;
  margin-inline: auto;
}

.pro-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pro-list {
  list-style: none;
  display: grid;
  gap: 10px;
  flex-shrink: 0;
}

.pro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pro-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary-light);
}

/* ── Download CTA ── */
.download {
  background: var(--white);
  text-align: center;
}

.download .section-desc {
  margin-inline: auto;
  margin-bottom: 36px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-md);
  min-width: 200px;
  transition: transform 0.2s, background 0.2s;
  font: inherit;
  cursor: pointer;
  border: none;
  text-align: left;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.store-btn img,
.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn-play {
  background: #000;
}

.store-btn-play:hover {
  background: #1a1a1a;
}

/* ── Reviews ── */
.reviews {
  background: var(--surface-alt);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.reviews-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.reviews-meta {
  text-align: left;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #f5a623;
}

.reviews-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 59, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.review-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #f5a623;
}

.review-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.review-source {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.reviews-link:hover {
  gap: 12px;
}

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 35, 0.5);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  width: min(100%, 400px);
  padding: 36px 32px 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: var(--primary);
  background: var(--chip);
}

.modal-logo {
  margin: 0 auto 16px;
  border-radius: 14px;
}

.modal-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.modal-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.modal-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.store-btn small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

.store-btn strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  padding: 40px 0;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer .brand-name {
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 4px;
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.65;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile nav drawer ── */
.mobile-menu {
  display: block;
  position: fixed;
  inset: var(--nav-height) 0 0;
  z-index: 99;
  background: rgba(16, 42, 35, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel {
  background: var(--surface);
  padding: 24px;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid rgba(11, 59, 42, 0.08);
}

.mobile-panel .nav-cta,
.mobile-panel .nav-cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.mobile-panel .nav-cta:hover,
.mobile-panel .nav-cta-mobile:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* ── Responsive (mobile-first) ── */
.hero {
  padding-bottom: 56px;
}

.hero h1 {
  font-size: clamp(1.75rem, 8vw, 2.25rem);
}

.preview-hero {
  max-width: 100%;
  margin-bottom: 24px;
}

.preview-tabs {
  margin-bottom: 20px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  section {
    padding: 64px 0;
  }

  .hero {
    padding-bottom: 64px;
  }

  .collage {
    height: 320px;
    max-width: 380px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
  }
}

/* Laptop / desktop */
@media (min-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding: calc(var(--nav-height) + 48px) 0 80px;
  }

  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .hero-visual {
    order: unset;
    min-height: 420px;
  }

  .collage {
    width: min(100%, 380px);
    max-width: none;
    height: 420px;
  }

  .hero-sub {
    max-width: 440px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    justify-content: center;
  }

  .hero-stats {
    display: flex;
    gap: 32px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 13px;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta-desktop {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
  }

  .showcase-row.reverse .showcase-content {
    order: 2;
  }

  .showcase-row.reverse .showcase-media {
    order: 1;
  }

  .showcase-content h3 {
    font-size: 28px;
  }

  .pro-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    padding: 48px 56px;
  }

  .pro-inner p {
    margin-inline: 0;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
  }

  .preview-hero {
    max-width: 900px;
    margin-bottom: 28px;
  }

  .preview-tabs {
    margin-bottom: 24px;
  }
}
