/* Design tokens — Dropbox-inspired */
:root {
  --dbx-blue: #0061FE;
  --dbx-blue-hover: #004DC7;
  --dbx-blue-light: #B4D1FF;
  --dbx-blue-wash: #F2F7FF;
  --dbx-canvas: #F7F5F2;
  --dbx-canvas-white: #FFFFFF;
  --dbx-ink: #1E1919;
  --dbx-ink-soft: #44403D;
  --dbx-muted: #736C64;
  --dbx-muted-strong: #5B5650;
  --dbx-surface: #FFFFFF;
  --dbx-surface-soft: #EBE9E6;
  --dbx-surface-dark: #1E1919;
  --dbx-surface-dark-elevated: #2D2B29;
  --dbx-border: #D3CEC9;
  --dbx-border-soft: #EBE9E6;
  --brand-yellow: #FAD24B;
  --brand-lime: #B4DC19;
  --brand-orange: #FA551E;
  --brand-pink: #C0154C;
  --brand-purple: #C8AFF0;
  --success: #0F503C;
  --font-display: "Sharp Grotesk", SharpGrotesk, "Atlas Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Atlas Grotesk Web", "Atlas Grotesk", AtlasGrotesk, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;
  --space-section: 96px;
  --space-hero: 128px;
  --container-max: 1200px;
  --shadow-mockup: 0 24px 48px rgba(30, 25, 25, 0.12), 0 8px 16px rgba(30, 25, 25, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dbx-ink);
  background: var(--dbx-canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--dbx-blue);
  color: var(--dbx-canvas);
  border-radius: var(--r-md);
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--dbx-blue-light);
  outline-offset: 2px;
}

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

.container--narrow {
  max-width: 720px;
}

/* Typography */
.section-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dbx-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dbx-ink);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 20px;
  line-height: 1.5;
  color: var(--dbx-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--dbx-blue-light);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--dbx-blue);
  color: var(--dbx-canvas);
  padding: 16px 24px;
}

.btn-primary:hover {
  background: var(--dbx-blue-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--dbx-ink);
  padding: 14px 22px;
  border: 1px solid var(--dbx-border);
}

.btn-secondary:hover {
  background: var(--dbx-surface-soft);
}

.btn-on-dark {
  background: transparent;
  color: var(--dbx-canvas);
  padding: 14px 22px;
  border: 1px solid rgba(247, 245, 242, 0.3);
}

.btn-on-dark:hover {
  background: rgba(247, 245, 242, 0.08);
  border-color: rgba(247, 245, 242, 0.5);
}

.btn-lg {
  padding: 18px 28px;
  font-size: 17px;
}

.btn-nav {
  padding: 12px 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dbx-canvas-white);
  border-bottom: 1px solid var(--dbx-border-soft);
  height: 64px;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--dbx-ink);
}

.nav {
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-list a {
  font-size: 16px;
  color: var(--dbx-ink-soft);
  transition: color 0.15s;
}

.nav-list a:hover {
  color: var(--dbx-blue);
}

.header-inner .btn-nav {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--dbx-blue-light);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dbx-ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  background: var(--dbx-canvas-white);
  border-bottom: 1px solid var(--dbx-border-soft);
  padding: 16px 24px 24px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 18px;
  color: var(--dbx-ink);
}

.mobile-menu.is-open {
  display: block;
}

/* Hero */
.hero {
  padding: 64px 0 var(--space-section);
}

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

.hero-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dbx-blue);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dbx-ink);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: var(--dbx-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--dbx-ink-soft);
}

/* Hero mockup */
.hero-mockup {
  position: relative;
  min-height: 420px;
}

.mockup-window {
  background: var(--dbx-surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-mockup);
  border: 1px solid var(--dbx-border-soft);
  overflow: hidden;
}

.mockup-desktop {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--dbx-surface-soft);
  border-bottom: 1px solid var(--dbx-border-soft);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: var(--brand-yellow); }
.dot-green { background: var(--brand-lime); }

.mockup-title {
  margin-left: 8px;
  font-size: 13px;
  color: var(--dbx-muted);
}

.mockup-body {
  padding: 24px;
}

.quiz-progress {
  height: 6px;
  background: var(--dbx-surface-soft);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--dbx-blue);
  border-radius: var(--r-pill);
}

.quiz-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--dbx-ink);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--dbx-border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--dbx-ink-soft);
  transition: border-color 0.15s, background 0.15s;
}

.quiz-option--active {
  border-color: var(--dbx-blue);
  background: var(--dbx-blue-wash);
  color: var(--dbx-ink);
}

.folder-icon {
  width: 20px;
  height: 16px;
  border-radius: 3px 3px 2px 2px;
  position: relative;
  flex-shrink: 0;
}

.folder-icon::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background: inherit;
  filter: brightness(0.9);
}

.folder-blue { background: var(--dbx-blue); }
.folder-lime { background: var(--brand-lime); }
.folder-orange { background: var(--brand-orange); }

.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.quiz-step {
  color: var(--dbx-muted);
}

.quiz-next {
  color: var(--dbx-blue);
  font-weight: 500;
}

.mockup-mobile {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 180px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-mockup);
}

.mockup-mobile-header {
  padding: 8px;
  background: var(--dbx-surface-soft);
  display: flex;
  justify-content: center;
}

.mockup-mobile-notch {
  width: 40px;
  height: 4px;
  background: var(--dbx-border);
  border-radius: var(--r-pill);
}

.mockup-mobile-body {
  padding: 16px;
}

.result-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
}

.result-badge--success {
  background: rgba(15, 80, 60, 0.12);
  color: var(--success);
}

.result-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.result-desc {
  font-size: 12px;
  color: var(--dbx-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.result-bar {
  height: 4px;
  background: var(--dbx-surface-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.result-bar span {
  display: block;
  height: 100%;
  background: var(--dbx-blue);
  border-radius: var(--r-pill);
}

/* Trust strip */
.trust-strip {
  padding: 48px 0;
  background: var(--dbx-surface);
  border-top: 1px solid var(--dbx-border-soft);
  border-bottom: 1px solid var(--dbx-border-soft);
}

.trust-statement {
  text-align: center;
  font-size: 15px;
  color: var(--dbx-muted);
  margin-bottom: 32px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-items li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--dbx-ink-soft);
}

.trust-items svg {
  color: var(--dbx-muted);
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

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

.product-card {
  background: var(--dbx-surface);
  border: 1px solid var(--dbx-border-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 0.15s;
}

.product-card:hover {
  border-color: var(--dbx-border);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon--blue {
  background: var(--dbx-blue-wash);
  color: var(--dbx-blue);
}

.card-icon--lime {
  background: rgba(180, 220, 25, 0.15);
  color: #7a9e10;
}

.card-icon--orange {
  background: rgba(250, 85, 30, 0.12);
  color: var(--brand-orange);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 16px;
  color: var(--dbx-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-link {
  font-size: 15px;
  color: var(--dbx-blue);
  font-weight: 500;
  transition: color 0.15s;
}

.card-link:hover {
  color: var(--dbx-blue-hover);
}

/* Features */
.features .section-title {
  margin-bottom: 64px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block--reverse .feature-copy {
  order: 2;
}

.feature-block--reverse .feature-media {
  order: 1;
}

.feature-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dbx-blue);
  margin-bottom: 12px;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-copy p {
  font-size: 18px;
  color: var(--dbx-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 480px;
}

.feature-mockup {
  background: var(--dbx-surface);
  border: 1px solid var(--dbx-border-soft);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-mockup);
}

/* File list mockup */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  transition: background 0.15s;
}

.file-row--active {
  background: var(--dbx-blue-wash);
}

.file-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.file-icon--doc {
  background: var(--dbx-blue-light);
}

.file-icon--folder {
  background: var(--brand-yellow);
}

.file-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.file-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dbx-ink);
}

.file-sub {
  font-size: 12px;
  color: var(--dbx-muted);
}

.file-status {
  font-size: 14px;
}

.file-status--done {
  color: var(--success);
}

.file-status--current {
  color: var(--dbx-blue);
}

/* Tier cards */
.tier-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-card {
  padding: 16px;
  border: 1px solid var(--dbx-border-soft);
  border-radius: var(--r-md);
}

.tier-card--highlight {
  border-color: var(--dbx-blue);
  background: var(--dbx-blue-wash);
}

.tier-label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.tier-bar {
  height: 6px;
  background: var(--dbx-surface-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.tier-bar span {
  display: block;
  height: 100%;
  background: var(--dbx-blue);
  border-radius: var(--r-pill);
}

.tier-card--highlight .tier-bar span {
  background: var(--dbx-blue);
}

/* Share row mockup */
.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--dbx-surface-soft);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dbx-blue-light);
  color: var(--dbx-blue);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dbx-surface);
}

.avatar--vault {
  margin-left: -8px;
  background: var(--dbx-blue);
  color: var(--dbx-canvas);
}

.share-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.share-role {
  font-size: 14px;
  font-weight: 500;
}

.share-link {
  font-size: 12px;
  color: var(--dbx-muted);
}

.share-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.share-status--success {
  background: rgba(15, 80, 60, 0.12);
  color: var(--success);
}

.version-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.version-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--dbx-ink-soft);
}

.version-item--muted {
  color: var(--dbx-muted);
}

.version-time {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dbx-muted);
  min-width: 48px;
}

/* Security panel */
.security-panel {
  padding: var(--space-section) 0;
}

.dark-security-card {
  background: var(--dbx-surface-dark);
  color: var(--dbx-canvas);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lock-icon {
  margin-bottom: 24px;
}

.dark-security-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.dark-security-card > .security-content > p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(247, 245, 242, 0.75);
  margin-bottom: 32px;
  max-width: 480px;
}

.security-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.security-feature {
  padding: 20px;
  background: var(--dbx-surface-dark-elevated);
  border-radius: var(--r-lg);
}

.security-feature-icon {
  display: block;
  margin-bottom: 12px;
  color: rgba(247, 245, 242, 0.85);
}

.security-feature h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.security-feature p {
  font-size: 15px;
  color: rgba(247, 245, 242, 0.65);
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--dbx-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: var(--dbx-ink);
  cursor: pointer;
  line-height: 1.3;
}

.faq-question:focus-visible {
  outline: 3px solid var(--dbx-blue-light);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--dbx-muted);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--dbx-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* Final CTA */
.final-cta {
  padding-bottom: var(--space-section);
}

.cta-card {
  background: var(--dbx-blue-wash);
  border: 1px solid var(--dbx-blue-light);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--dbx-ink);
}

.cta-card > p {
  font-size: 18px;
  color: var(--dbx-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--dbx-muted);
}

/* Footer */
.site-footer {
  background: var(--dbx-surface-dark);
  color: var(--dbx-canvas);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.logo--footer .logo-text {
  color: var(--dbx-canvas);
}

.footer-tagline {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(247, 245, 242, 0.6);
  max-width: 280px;
  line-height: 1.5;
}

.footer-links h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--dbx-canvas);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(247, 245, 242, 0.6);
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(247, 245, 242, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-mockup {
    max-width: 520px;
    margin: 0 auto;
  }

  .mockup-desktop {
    margin: 0 auto;
  }

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

  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-block--reverse .feature-copy,
  .feature-block--reverse .feature-media {
    order: unset;
  }

  .dark-security-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

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

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

@media (max-width: 768px) {
  .nav,
  .header-inner .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero {
    padding-top: 40px;
  }

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

  .hero-actions .btn {
    justify-content: center;
  }

  .trust-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-items li {
    flex-direction: row;
    text-align: left;
  }

  .cta-card {
    padding: 40px 24px;
  }

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

  .mockup-mobile {
    width: 150px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 32px;
  }
}
