/* ── Custom Fonts ──────────────────────────────────────── */
@font-face {
  font-family: 'Avant Garde For Salesforce';
  src: url('fonts/AvantGardeForSalesforceW05-Dm.woff2') format('woff2'),
       url('fonts/AvantGardeForSalesforceW05-Dm.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Salesforce Sans';
  src: url('fonts/SalesforceSans-Regular.woff2') format('woff2'),
       url('fonts/SalesforceSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Salesforce Sans';
  src: url('fonts/SalesforceSans-Bold.woff2') format('woff2'),
       url('fonts/SalesforceSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* PISA Landing Page — Figma design tokens (node 4135:8445) */
:root {
  --color-accent: #066afe;
  --color-accent-dark: #473BF0;
  --color-navy: #001e5b;
  --color-electric: #066afe;
  --color-dark-blue: #022ac0;
  --color-black: #090909;
  --color-text: #0D0D0D;
  --color-text-light: #171717;
  --color-white: #FFFFFF;
  --color-border: #D9D9D9;
  --font-display: 'Avant Garde For Salesforce', 'Avant Garde', 'Inter', sans-serif;
  --font-body: 'Salesforce Sans', 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 16px;
  --radius-lg: 23px;
  --blur-blue: #0A299A;
  --blur-cyan: #27F4FE;
  --blur-purple: #D727FE;
  --gradient-cta: linear-gradient(180deg, #001e5b 0%, #022ac0 35.213%, #066afe 75%, #00b3ff 100%);
}

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

body {
  font-family: var(--font-body);
  background: linear-gradient(to bottom, #90d0fe 0%, #ffffff 16.145%);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--color-border);
}
.navbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__sf-logo {
  height: 40px;
  width: auto;
}
.navbar__brand-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 0.5px;
  color: var(--color-navy);
}
.navbar__pisa-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.navbar__logo-img {
  width: 45px;
  height: 45px;
  border-radius: 12.63px;
  object-fit: cover;
}
.navbar__label {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__btn {
  background: var(--color-electric);
  color: #fff;
  border: none;
  padding: 2px 16px;
  height: 32px;
  border-radius: 25.9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.25px;
  cursor: pointer;
}
.navbar__btn--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.navbar__btn:hover { opacity: 0.9; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 24px 0;
  max-width: 1440px;
  margin: 0 auto;
  overflow: visible;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Sub-header */
.hero__subheader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__subheader-text {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--color-navy);
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  line-height: 86px;
  letter-spacing: 0;
  color: var(--color-navy);
  text-align: center;
}
.hero__title-accent { color: var(--color-electric); }

/* CTA button — glass pill */
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 16.9px;
  margin-top: 22px;
  padding: 14.3px 15.6px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  color: var(--color-navy);
  border: 2.6px solid rgba(255,255,255,0.25);
  border-radius: 78px;
  font-family: var(--font-display);
  font-size: 19.4px;
  font-weight: 600;
  line-height: 29.9px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 26px 44.2px 0px rgba(0,22,66,0.05);
}
.hero__btn:hover { background: rgba(255,255,255,0.35); }
.hero__btn-indicator {
  background: var(--color-dark-blue);
  width: 36.4px;
  height: 36.4px;
  border-radius: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Hero Panels (App Demo) ────────────────────────────── */
.hero-panels {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  display: flex;
  justify-content: center;
}
.hero-panels__img {
  width: 100%;
  max-width: 1296px;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ── AI-Powered Section ────────────────────────────────── */
.ai-section {
  padding: 80px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.ai-section__inner {
  max-width: 1136px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ai-section__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  color: var(--color-navy);
  text-align: center;
  padding: 10px;
}
.ai-section__title-accent { color: var(--color-electric); }
.ai-section__title-navy { color: var(--color-navy); }
.ai-section__img {
  width: 100%;
  max-width: 1092px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}

/* ── Features ──────────────────────────────────────────── */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.features__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-navy);
}
.features__title-accent { color: var(--color-electric); }
.features__grid { display: flex; flex-direction: column; gap: 53px; }
.features__row {
  display: grid;
  grid-template-columns: repeat(3, 328px);
  gap: 80px;
  justify-content: center;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.feature-card__num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #473BF0;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
}
.feature-card__content { flex: 1; min-width: 0; }
.feature-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #000;
  margin-bottom: 4px;
}
.feature-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.25px;
  color: #000;
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  background: var(--gradient-cta);
  padding: 41px 37px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta__icon {
  position: relative;
  z-index: 1;
  width: 135px;
  height: 135px;
  border-radius: 37.89px;
  overflow: hidden;
}
.cta__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 12vw, 169.9px);
  line-height: 1;
  color: #fff;
  letter-spacing: -6.579px;
  position: relative;
  z-index: 1;
}
.cta__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 11px 12px;
  height: 50px;
  border-radius: 60px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.95px;
  line-height: 23px;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta__btn:hover { background: rgba(255,255,255,0.3); }
.cta__beta {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 23px;
  color: #fff;
}
.cta__btn-indicator {
  background: var(--color-dark-blue);
  width: 28px;
  height: 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: #fff;
  border-top: 0.5px solid var(--color-border);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  height: 39.7px;
  width: auto;
}
.footer__copyright {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.14px;
  color: var(--color-navy);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   Download Page
═══════════════════════════════════════════════════════ */

/* ── DL Hero ──────────────────────────────────────────── */
.dl-hero {
  padding: 80px 24px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.dl-hero__icon {
  width: 80px;
  height: 80px;
  border-radius: 19.2px;
  overflow: hidden;
}
.dl-hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dl-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 61px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.92px;
  color: #0D0D0D;
}
.dl-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  height: 48px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.dl-hero__btn:hover { opacity: 0.9; }
.dl-hero__btn svg { flex-shrink: 0; }

/* ── DL Steps ─────────────────────────────────────────── */
.dl-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
}
.dl-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.dl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

/* Media container */
.dl-step__media {
  width: 100%;
  aspect-ratio: 364.89 / 204.36;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}
.dl-step__media--contain {
  background: #fff;
  border: 1px solid #e0e0e0;
}
.dl-step__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dl-step__bg--contain {
  object-fit: contain;
  padding: 8px;
}

/* Step 1: screenshot overlay (slightly oversized & offset) */
.dl-step__overlay--1 {
  position: absolute;
  left: -29%;
  top: -7%;
  width: 153%;
  height: 124%;
  object-fit: cover;
  pointer-events: none;
}

/* PISA icon overlaid on steps 5 & 6 */
.dl-step__pisa-icon {
  position: absolute;
  width: 17%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  pointer-events: none;
}
.dl-step__pisa-icon--5 { left: 21%; top: 34.7%; }
.dl-step__pisa-icon--6 { left: 33.9%; top: 34.6%; }

/* Step caption */
.dl-step__caption {
  width: 100%;
  padding-top: 24px;
}
.dl-step__num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.3px;
  color: #0D0D0D;
  margin-bottom: 8px;
}
.dl-step__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.3px;
  line-height: 1.72;
  letter-spacing: -0.14px;
  color: #0D0D0D;
  margin: 0;
  max-width: 300px;
  margin-inline: auto;
}

/* ── Google Sign-in Card (Step 2) ─────────────────────── */
.google-signin {
  position: absolute;
  inset: 7% 5.3%;
  background: #fff;
  border: 0.65px solid rgba(0,0,0,0.22);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Roboto', 'Inter', sans-serif;
}
.google-signin__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-bottom: 0.65px solid rgba(0,0,0,0.22);
  flex-shrink: 0;
}
.google-signin__logo { width: 21px; height: 21px; }
.google-signin__title {
  font-size: 11.76px;
  color: #3C4043;
  font-weight: 400;
}
.google-signin__body {
  padding: 8px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}
.google-signin__heading {
  font-size: 15.68px;
  color: #202124;
  text-align: center;
  margin-bottom: 2px;
}
.google-signin__sub {
  font-size: 10.45px;
  color: #202124;
  text-align: center;
  margin-bottom: 4px;
}
.google-signin__accounts { display: flex; flex-direction: column; }
.google-signin__row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 26px;
  border-bottom: 0.65px solid #e0e0e0;
}
.google-signin__row--active { background: #E8F0FE; }
.google-signin__avatar {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.google-signin__avatar--circle { border-radius: 0; }
.google-signin__info { display: flex; flex-direction: column; gap: 1px; }
.google-signin__name { font-size: 9.15px; font-weight: 500; color: #3C4043; }
.google-signin__email { font-size: 7.84px; font-weight: 300; color: #3C4043; letter-spacing: 0.016px; }
.google-signin__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px;
  margin-top: auto;
}
.google-signin__lang {
  display: flex;
  align-items: center;
  font-size: 7.84px;
  color: #202124;
  gap: 3px;
}
.google-signin__chevron { width: 10px; height: 10px; }
.google-signin__links {
  display: flex;
  gap: 5px;
  font-size: 7.84px;
  color: #80868B;
}

/* ── Google Signing-in Card (Step 3) ──────────────────── */
.google-signing {
  position: absolute;
  left: 8%;
  right: -1%;
  top: 12%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.75px 3.5px rgba(0,0,0,0.1);
  overflow: hidden;
  font-family: 'Roboto', 'Inter', sans-serif;
}
.google-signing__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  box-shadow: 0 1.75px 3.5px rgba(0,0,0,0.1);
  background: #fff;
}
.google-signing__logo { width: 28px; height: 28px; }
.google-signing__title {
  font-size: 15.75px;
  color: #5F6368;
  font-weight: 500;
  flex: 1;
  letter-spacing: 0.08px;
}
.google-signing__close { width: 21px; height: 21px; cursor: pointer; }
.google-signing__progress {
  height: 7px;
  background: #D2E2FC;
  overflow: hidden;
}
.google-signing__bar {
  height: 100%;
  width: 100%;
  background: #3367D6;
}
.google-signing__body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 35px 22px;
}
.google-signing__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.google-signing__info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.google-signing__name { font-size: 14px; font-weight: 600; color: #3C4043; letter-spacing: 0.028px; }
.google-signing__email { font-size: 12.25px; color: #3C4043; letter-spacing: 0.025px; }
.google-signing__cancel {
  background: none;
  border: none;
  color: #3367D6;
  font-size: 15.75px;
  font-weight: 700;
  cursor: pointer;
  padding: 7px;
  white-space: nowrap;
}

/* ── DL Contact ───────────────────────────────────────── */
.dl-contact {
  text-align: center;
  padding: 48px 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 28.6px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #0D0D0D;
}
.dl-contact__link {
  color: #0D0D0D;
  text-decoration: underline;
}
.dl-contact__link:hover { opacity: 0.7; }

/* ── DL Bar ───────────────────────────────────────────── */
.dl-bar-wrap {
  padding: 48px 24px;
  max-width: 1440px;
  margin: 48px auto 0;
}
.dl-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px 48px;
  min-height: 172px;
  background: #fff;
}
.dl-bar__title {
  font-family: var(--font-display);
  font-size: 28.9px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #0D0D0D;
}
.dl-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  height: 36px;
  background: #0D0D0D;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.14px;
  cursor: pointer;
  white-space: nowrap;
}
.dl-bar__btn:hover { opacity: 0.9; }

/* ── DL Onboarding ────────────────────────────────────── */
.dl-onboarding {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.dl-onboarding__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: 0px;
  color: #171717;
  margin: 0 0 24px 120px;
}
.dl-onboarding__card {
  background: linear-gradient(113.68deg, rgba(255,255,255,0.2) 16.66%, rgba(255,255,255,0.24) 81.61%);
  backdrop-filter: blur(11px);
  border-radius: 23px;
  padding: 20px;
  max-width: 1136px;
  margin: 0 auto;
}
.dl-onboarding__player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1093 / 577;
}
.dl-onboarding__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dl-onboarding__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.dl-onboarding__play img { width: 111px; height: 111px; }
.dl-onboarding__play:hover { opacity: 0.85; }

/* ── DL Footer CTA ────────────────────────────────────── */
.dl-footer-cta {
  position: relative;
  background: #fff;
  min-height: 665px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 16px;
}
.dl-footer-cta__blur {
  position: absolute;
  inset: -55% -15% -34% -29%;
  width: 144%;
  height: 189%;
  pointer-events: none;
  z-index: 0;
}
.dl-footer-cta__text {
  position: relative;
  z-index: 1;
  width: 100%;
}
.dl-footer-cta__pisa {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 22vw, 319.9px);
  line-height: 1.03;
  color: #fff;
  letter-spacing: -6.58px;
  text-align: center;
}
.dl-footer-cta__trynow {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 20vw, 297px);
  line-height: 1.03;
  color: #0D0D0D;
  letter-spacing: -4.54px;
  margin-top: -0.15em;
}
.dl-footer-cta__arrow { display: inline; }

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

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .hero { padding: 48px 24px 0; }
  .hero__title { font-size: 52px; line-height: 64px; }
  .hero__btn { font-size: 17px; height: 58px; }
  .hero-panels { padding: 40px 24px 64px; }
  .ai-section { padding: 48px 24px; }
  .features { padding: 48px 24px 64px; }
  .features__row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dl-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .dl-onboarding__title { margin-left: 0; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__inner { padding: 0 16px; height: 60px; }
  .navbar__brand-text { font-size: 14px; }
  .navbar__sf-logo { height: 28px; }
  .navbar__pisa-link { display: none; }
  .navbar__label { font-size: 20px; }
  .navbar__logo-img { width: 36px; height: 36px; }
  .navbar__btn { font-size: 13px; padding: 2px 12px; }

  /* Hero */
  .hero { padding: 40px 16px 0; }
  .hero__content { gap: 24px; }
  .hero__subheader-text { font-size: 14px; }
  .hero__title { font-size: 36px; line-height: 44px; }
  .hero__btn { font-size: 15px; height: 52px; padding: 10px 12px; gap: 12px; }
  .hero__btn-indicator { width: 30px; height: 30px; }

  /* Panels */
  .hero-panels { padding: 28px 16px 48px; }
  .hero-panels__img { border-radius: 10px; }

  /* AI section */
  .ai-section { padding: 32px 16px; }
  .ai-section__inner { gap: 24px; }
  .ai-section__title { font-size: 28px; line-height: 36px; padding: 6px; }

  /* Features */
  .features { padding: 32px 16px 48px; }
  .features__title { font-size: 28px; line-height: 36px; margin-bottom: 32px; }
  .features__row { grid-template-columns: 1fr; gap: 16px; }

  /* CTA */
  .cta { padding: 48px 16px 64px; gap: 32px; }
  .cta__icon { width: 80px; height: 80px; border-radius: 22px; }
  .cta__title { font-size: clamp(60px, 15vw, 130px); }
  .cta__subtitle { font-size: 28px; line-height: 36px; }
  .cta__btn { font-size: 14px; height: 46px; }

  /* Footer */
  .footer { padding: 24px 16px; }
  .footer__logo { height: 28px; }
  .footer__copyright { font-size: 12px; }

  /* Download page */
  .dl-steps__grid { grid-template-columns: 1fr; }
  .dl-hero__title { font-size: 36px; line-height: 44px; }
  .dl-contact { font-size: 20px; }
  .dl-bar { flex-direction: column; align-items: flex-start; min-height: auto; }
  .dl-onboarding__title { font-size: 32px; line-height: 40px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .hero__title { font-size: 28px; line-height: 36px; }
  .ai-section__title { font-size: 22px; line-height: 28px; }
  .features__title { font-size: 22px; line-height: 28px; }
  .cta__subtitle { font-size: 22px; line-height: 28px; }
}
