/* ══════════════════════════════════════════════
   Download Inbox — Landing Page
   macOS-inspired dark theme
   ══════════════════════════════════════════════ */

:root {
  --bg:         #0a0a0c;
  --bg1:        #111214;
  --bg2:        #17181c;
  --bg3:        rgba(28,29,33,0.86);
  --surface:    rgba(255,255,255,0.045);
  --surface2:   rgba(255,255,255,0.065);
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.05);
  --text:       #f5f5f7;
  --text2:      #a1a1aa;
  --text3:      #71717a;
  --accent:     #0a84ff;
  --accent2:    #0071e3;
  --accent-glow: rgba(10,132,255,0.14);
  --green:      #30d158;
  --amber:      #ff9f0a;
  --red:        #ff453a;
  --purple:     #bf5af2;
  --pink:       #ff6482;
  --cyan:       #64d2ff;
  --r:          12px;
  --r-lg:       16px;
  --r-xl:       20px;
  --window-bg:  linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%), rgba(28,29,33,0.92);
  --window-border: rgba(255,255,255,0.1);
  --window-shadow: 0 28px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ─────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.nav-brand img { border-radius: 6px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-nav {
  padding: 7px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn-nav:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
}

.btn-hero {
  padding: 13px 26px;
  background: linear-gradient(180deg, #3297ff, var(--accent));
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-hero:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(10,132,255,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-outline {
  padding: 13px 26px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}

/* ── Hero ────────────────────────────────────── */

.hero {
  padding: 130px 0 0;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(10,132,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(10,132,255,0.18);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.hero-compat {
  font-size: 13px;
  color: var(--text3);
}

/* ── macOS Window ────────────────────────────── */

.window-shell {
  max-width: 440px;
  margin: 56px auto 0;
  perspective: 1200px;
}

.macos-window {
  border-radius: var(--r-xl);
  border: 1px solid var(--window-border);
  background: var(--window-bg);
  box-shadow: var(--window-shadow);
  backdrop-filter: blur(26px) saturate(1.15);
  -webkit-backdrop-filter: blur(26px) saturate(1.15);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
}

.traffic-lights {
  display: flex;
  gap: 6px;
  min-width: 54px;
}

.tl {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 0 0 1px rgba(0,0,0,0.25);
}

.tl-close { background: #ff5f57; }
.tl-min   { background: #febc2e; }
.tl-max   { background: #28c840; }

.titlebar-text {
  font-size: 11px;
  font-weight: 590;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}

.titlebar-spacer { min-width: 54px; }

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-name {
  font-size: 14px;
  font-weight: 590;
  letter-spacing: -0.02em;
}

.app-badge {
  font-size: 10px;
  font-weight: 590;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(255,255,255,0.09);
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text3);
}

/* Tabs */
.app-tabs {
  display: flex;
  gap: 3px;
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--border2);
  overflow-x: auto;
}

.app-tab {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 560;
  color: var(--text3);
  white-space: nowrap;
}

.app-tab.active {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 8px;
  margin-left: 2px;
  vertical-align: middle;
}

/* File list */
.app-list {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
}

.app-item.item-dup {
  border-color: rgba(255,159,10,0.18);
  background: linear-gradient(180deg, rgba(255,159,10,0.04), rgba(255,159,10,0.01));
}

.app-item.item-downloading {
  opacity: 0.6;
}

.file-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.fi-pdf { background: rgba(255,69,58,0.12); color: var(--red); }
.fi-img { background: rgba(100,210,255,0.1); color: var(--cyan); }
.fi-zip { background: rgba(255,159,10,0.1); color: var(--amber); }
.fi-doc { background: rgba(10,132,255,0.1); color: var(--accent); }
.fi-vid { background: rgba(191,90,242,0.1); color: var(--purple); }

.file-meta { flex: 1; min-width: 0; }

.file-name {
  display: block;
  font-size: 12px;
  font-weight: 560;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-row2 {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.file-size, .file-time {
  font-size: 10.5px;
  color: var(--text3);
}

.file-sep {
  font-size: 10px;
  color: rgba(255,255,255,0.15);
}

.file-tags {
  display: flex;
  gap: 4px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.ftag {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  color: var(--text3);
}

.ftag-invoice { background: rgba(48,209,88,0.1); border-color: rgba(48,209,88,0.25); color: var(--green); }
.ftag-design  { background: rgba(191,90,242,0.1); border-color: rgba(191,90,242,0.25); color: var(--purple); }
.ftag-dup     { background: rgba(255,69,58,0.1); border-color: rgba(255,69,58,0.25); color: var(--red); }
.ftag-legal   { background: rgba(255,159,10,0.1); border-color: rgba(255,159,10,0.25); color: var(--amber); }
.ftag-source  { background: rgba(255,255,255,0.03); color: var(--text3); }

.rename-suggest {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  background: rgba(10,132,255,0.1);
  border: 1px solid rgba(10,132,255,0.18);
  color: #7ec3ff;
}

.file-actions {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  padding-top: 2px;
  opacity: 0.5;
}

.fa-btn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text3);
}

.fa-btn.star-on { color: var(--amber); }

.dl-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}

.dl-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, #7ec3ff, var(--accent));
  border-radius: 2px;
  animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* App footer */
.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-top: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
}

.app-footer-count {
  font-size: 11px;
  color: var(--text3);
}

.app-footer-count strong { color: var(--text2); }

.app-footer-actions {
  display: flex;
  gap: 5px;
}

.app-btn-ghost, .app-btn-primary {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 560;
  cursor: default;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.06);
}

.app-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text2);
}

.app-btn-primary {
  background: linear-gradient(180deg, #3297ff, var(--accent));
  color: white;
  border-color: rgba(255,255,255,0.08);
}

/* ── Trust ───────────────────────────────────── */

.trust {
  padding: 72px 0 0;
  text-align: center;
}

.trust-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text3);
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text3);
}

/* ── Sections (shared) ───────────────────────── */

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: var(--text2);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

/* ── Features ────────────────────────────────── */

.features {
  padding: 100px 0;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 50%, transparent);
}

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

.fcard {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--window-bg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s, border-color 0.2s;
}

.fcard:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

.fcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}

.fcard h3 {
  font-size: 15px;
  font-weight: 620;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.fcard p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── How it works ────────────────────────────── */

.how {
  padding: 100px 0;
}

.steps-grid {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--window-bg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3297ff, var(--accent));
  color: white;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(10,132,255,0.3);
}

.step-content h3 {
  font-size: 15px;
  font-weight: 620;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Use cases ───────────────────────────────── */

.usecases {
  padding: 100px 0;
  position: relative;
}

.usecases::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 50%, transparent);
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.uc-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--window-bg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.uc-card .fcard-icon {
  margin-bottom: 14px;
}

.uc-card h3 {
  font-size: 15px;
  font-weight: 620;
  margin-bottom: 6px;
}

.uc-card p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Pricing ─────────────────────────────────── */

.pricing {
  padding: 100px 0;
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 50%, transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.price-card {
  padding: 32px 28px;
  border-radius: var(--r-xl);
  background: var(--window-bg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  text-align: center;
}

.price-card-pro {
  border-color: rgba(10,132,255,0.3);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 0 40px rgba(10,132,255,0.06), inset 0 1px 0 rgba(255,255,255,0.07);
}

.price-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3297ff, var(--accent));
  color: white;
  box-shadow: 0 2px 8px rgba(10,132,255,0.3);
}

.price-tier {
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text3);
}

.price-period {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 14px;
  color: var(--text2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  padding-left: 22px;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid rgba(10,132,255,0.4);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── Final CTA ───────────────────────────────── */

.final-cta {
  padding: 60px 0 100px;
}

.cta-window {
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--window-border);
  background: var(--window-bg);
  box-shadow: var(--window-shadow);
  backdrop-filter: blur(26px) saturate(1.15);
  -webkit-backdrop-filter: blur(26px) saturate(1.15);
  overflow: hidden;
}

.cta-body {
  text-align: center;
  padding: 48px 40px;
}

.cta-body h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.cta-body p {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 28px;
}

/* ── Footer ──────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text3);
}

.footer-brand img {
  border-radius: 5px;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  transition: color 0.2s;
}

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

/* ── Responsive ──────────────────────────────── */

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .uc-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .window-shell {
    max-width: 360px;
  }

  .trust-logos {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 110px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .btn-hero {
    padding: 12px 22px;
    font-size: 13px;
  }

  .features, .how, .usecases, .pricing {
    padding: 72px 0;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  .window-shell {
    max-width: 320px;
  }

  .cta-body {
    padding: 36px 24px;
  }
}
