/* KlipFire — marketing site */

:root {
  --black: #111111;
  --white: #ffffff;
  --brand: #ed1c24;
  --brand-dark: #c4151c;
  --brand-light: #fff5f5;
  --brand-soft: #fde8ea;
  --fire: #ff5722;
  --gray-50: #fafafa;
  --gray-100: #f2f2f2;
  --gray-200: #e6e6e6;
  --gray-300: #d0d0d0;
  --gray-400: #999999;
  --gray-500: #737373;
  --gray-600: #525252;
  --bg-primary: var(--white);
  --bg-secondary: #fafafa;
  --bg-card: var(--white);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --text-primary: var(--black);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 20px 60px rgba(237, 28, 36, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --header-height: 72px;
  --container: min(1140px, calc(100% - 2.5rem));
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled,
.legal-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.brand-name em {
  font-style: normal;
  font-weight: 800;
  color: var(--brand);
}

.brand-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile a {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  background: var(--brand-light);
  color: var(--brand);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(237, 28, 36, 0.35);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--brand-light);
  border-color: rgba(237, 28, 36, 0.25);
  color: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: rgba(237, 28, 36, 0.45);
}

.btn-outline:hover {
  background: var(--brand-light);
  border-color: var(--brand);
}

.btn-lg {
  padding: 0.9375rem 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-header {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  background: linear-gradient(165deg, #ffffff 0%, #fff8f8 45%, #fff0f0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(237, 28, 36, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero h1 .accent {
  display: block;
  color: var(--brand);
  font-weight: 800;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.0625rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  align-items: center;
}

.hero-actions .btn-secondary {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-wrap {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(237, 28, 36, 0.12);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-phones {
  position: relative;
  width: min(100%, 340px);
  height: 420px;
}

.hero-phones .phone-frame {
  position: absolute;
}

.hero-phones .phone-frame--back {
  right: 0;
  top: 24px;
  transform: rotate(4deg);
  z-index: 1;
  opacity: 0.92;
}

.hero-phones .phone-frame--front {
  left: 0;
  top: 0;
  z-index: 2;
}

/* Phone frame for app screenshots */

.phone-frame {
  width: min(100%, 260px);
  padding: 3px;
  border-radius: 28px;
  background: linear-gradient(160deg, #333 0%, #111 100%);
  border: 1px solid #222;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.phone-frame-inner {
  border-radius: 25px;
  overflow: hidden;
  background: #000;
}

.phone-frame-inner img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.showcase-media.phone-showcase {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
  display: flex;
  justify-content: center;
}

/* Screenshot strip */

.screenshot-strip {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-light) 100%);
  border-top: 1px solid rgba(237, 28, 36, 0.08);
  overflow: hidden;
}

.screenshot-strip-grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshot-strip-grid .phone-frame {
  flex: 0 0 188px;
  scroll-snap-align: start;
}

.screenshot-strip-grid .phone-frame-inner img {
  max-height: 360px;
  object-fit: contain;
  object-position: top;
}

/* Official Google Play badge */

.play-store-link {
  display: inline-block;
  line-height: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.play-store-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.play-store-link img {
  width: auto;
  height: 54px;
}

.play-store-link--lg img {
  height: 60px;
}

@media (min-width: 768px) {
  .play-store-link img {
    height: 60px;
  }

  .play-store-link--lg img {
    height: 68px;
  }
}

/* Stats band */

.stats-band {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4444 50%, var(--fire) 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.stat-value {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sections */

section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

/* Showcase rows (image + copy) */

.showcase-grid {
  display: grid;
  gap: 3rem;
}

.showcase-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.showcase-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-media.icon-panel {
  background: linear-gradient(145deg, var(--brand-light) 0%, #fff 100%);
  padding: 2.5rem;
  border-color: rgba(237, 28, 36, 0.12);
}

.showcase-media.icon-panel img {
  width: min(55%, 200px);
  height: auto;
  object-fit: contain;
  margin: auto;
  border-radius: 22%;
  filter: drop-shadow(0 12px 28px rgba(237, 28, 36, 0.25));
}

.showcase-media.banner-panel {
  border-color: rgba(237, 28, 36, 0.1);
}

.showcase-media.banner-panel img {
  object-fit: cover;
}

.showcase-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
}

.showcase-copy p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* Feature cards */

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

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(237, 28, 36, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand), var(--fire));
  color: var(--white);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Tools */

.tools-section {
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--white) 100%);
  border-block: 1px solid rgba(237, 28, 36, 0.08);
}

.tool-chip:hover {
  border-color: rgba(237, 28, 36, 0.25);
  color: var(--brand-dark);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.tool-chip {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.tool-chip svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Steps */

.steps-grid {
  display: grid;
  gap: 1.25rem;
}

.step-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--fire));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.step-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Accent CTA band */

.dark-band {
  padding: 4rem 0;
  background: var(--brand-light);
  color: var(--text-primary);
  border-block: 1px solid rgba(237, 28, 36, 0.1);
}

.dark-band-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.dark-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.dark-band p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 48ch;
}

/* Trust */

.trust-band {
  padding: 3.5rem 0;
  background: var(--bg-secondary);
  border-block: 1px solid var(--border);
}

.trust-points {
  display: grid;
  gap: 1.25rem;
}

.trust-point {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.trust-point svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--brand);
}

.trust-point h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.trust-point p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Download */

.download-section {
  padding: 5rem 0;
}

.download-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-light) 100%);
  border: 1px solid rgba(237, 28, 36, 0.15);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.download-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
}

.download-card p {
  margin: 0 auto 1.75rem;
  max-width: 48ch;
  color: var(--text-secondary);
}

.download-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  object-fit: cover;
}

.store-badge {
  display: none;
}

/* Footer */

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 34ch;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-col ul {
  display: grid;
  gap: 0.625rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Page hero (inner pages) */

.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(165deg, #ffffff 0%, var(--brand-light) 100%);
  border-bottom: 1px solid rgba(237, 28, 36, 0.08);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 56ch;
}

.page-body {
  padding: 3rem 0 5rem;
}

.page-content {
  max-width: 760px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-category {
  margin: 2.5rem 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.125rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open {
  border-color: rgba(237, 28, 36, 0.25);
}

.faq-item.open .faq-question {
  color: var(--brand-dark);
}

.faq-answer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(237, 28, 36, 0.3);
}

.contact-email:hover {
  background: var(--brand-dark);
}

.contact-email svg {
  width: 18px;
  height: 18px;
}

.contact-topics {
  display: grid;
  gap: 0.75rem;
}

.contact-topic {
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(237, 28, 36, 0.1);
  background: var(--brand-light);
}

.contact-topic strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.contact-topic span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Legal */

.legal-page {
  padding: 0 0 5rem;
  background: var(--white);
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

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

/* Responsive */

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .btn-header {
    display: inline-flex;
  }

  .hero {
    padding: 4rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }

  .showcase-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .showcase-row.reverse .showcase-media {
    order: 2;
  }

  .showcase-row.reverse .showcase-copy {
    order: 1;
  }

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

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dark-band-inner {
    grid-template-columns: 1fr auto;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
