/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  color: #1d1d1f;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

/* --- Layout --- */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.container--header {
  width: min(1240px, 100% - 48px);
}

.container--page {
  width: min(1240px, 100% - 48px);
}

.section {
  padding-block: 96px;
}

.section--hero {
  padding-block: 112px 88px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.section--muted {
  background-color: #f5f5f7;
}

.section--final-cta {
  background-color: #f5f5f7;
  text-align: center;
}

.section--final-cta .section-title {
  margin-bottom: 16px;
}

.section--final-cta .section-subtitle {
  margin-inline: auto;
  margin-bottom: 32px;
}

/* --- Screenshots --- */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shot-card {
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.shot-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.shot-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.shot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-caption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.shot-card--cta {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 16px;
  background: radial-gradient(120% 120% at 0% 0%, rgba(0, 113, 227, 0.18) 0%, rgba(88, 86, 214, 0.12) 40%, rgba(255, 255, 255, 0.95) 75%);
}

.shot-cta-title {
  font-size: 16px;
  font-weight: 900;
  color: #1d1d1f;
}

.shot-cta-sub {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.45;
}

.shot-card-cta__btn {
  margin-top: 10px;
}

.shots-status-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, rgba(245, 245, 247, 0.6) 0%, #ffffff 100%);
  color: #424245;
  padding: 32px 28px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  max-width: 760px;
  margin-inline: auto;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.55);
}

.lightbox__panel {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  padding: 14px;
  overflow: hidden;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #1d1d1f;
}

.section-subtitle {
  margin: 0;
  color: #6e6e73;
  font-size: 17px;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.55;
}

.section-title--compact {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-body--muted {
  color: #6e6e73;
  max-width: 720px;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-inline: auto;
}

.section-header .section-subtitle {
  margin-inline: auto;
}

.section-header--left {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}

.section-header--left .section-subtitle {
  margin-inline: 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header--scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: #1d1d1f;
}

.logo--home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.logo--home:hover {
  opacity: 0.85;
}

.logo--home .logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #424245;
}

.nav-link {
  padding: 6px 10px;
  border-radius: 8px;
  color: #424245;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1d1d1f;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header--menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header--menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #424245;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-btn--active {
  background-color: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.lang-btn:hover:not(.lang-btn--active) {
  background: rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 980px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background-color: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--primary {
  background-color: #0071e3;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #0077ed;
  transform: none;
  opacity: 0.92;
}

.btn--secondary {
  background-color: rgba(0, 0, 0, 0.06);
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn--secondary:hover {
  background-color: rgba(0, 0, 0, 0.09);
}

.btn--ghost {
  padding-inline: 16px;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 980px;
}

.btn--ghost:hover {
  background-color: rgba(0, 0, 0, 0.08);
  opacity: 1;
}

.btn--large {
  padding-inline: 32px;
  padding-block: 13px;
  font-size: 16px;
}

.btn:focus-visible {
  outline: 2px solid #0071e3;
  outline-offset: 2px;
}

/* --- Hero --- */
.hero-grid {
  display: block;
}

.hero-content {
  display: grid;
  align-content: start;
  gap: 24px;
  max-width: 600px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0071e3;
  margin: 0;
}

.hero-title {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #1d1d1f;
}

.hero-title__inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
  white-space: nowrap;
  font-size: 1.2em;
}

.hero-title__sep {
  color: #1d1d1f;
}

/* Gradient text (hero keywords) */
.hero-title .grad {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.grad--a {
  background-image: linear-gradient(90deg, #ff375f 0%, #ff9f0a 55%, #ffd60a 100%);
}

.grad--b {
  background-image: linear-gradient(90deg, #00c7be 0%, #0a84ff 55%, #5e5ce6 100%);
}

.grad--c {
  background-image: linear-gradient(90deg, #30d158 0%, #00c7be 52%, #0071e3 100%);
}

.grad-ai {
  display: inline-block;
  background-image: linear-gradient(90deg, #0071e3 0%, #5856d6 50%, #30d158 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 0;
  color: #6e6e73;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-downloads-row .hero-windows-download {
  margin-bottom: 0;
}

.hero-windows-download {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  padding: 18px;
  max-width: min(100%, 440px);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-windows-download:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.hero-windows-download__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 113, 227, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-windows-download__icon svg {
  display: block;
}

.hero-windows-download__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.hero-windows-download__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #70737c;
}

.hero-windows-download__btn {
  padding: 9px 16px;
  gap: 8px;
  background-image: linear-gradient(135deg, #0078d4 0%, #0a84ff 55%, #5e5ce6 100%);
  box-shadow: 0 6px 14px rgba(0, 113, 227, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.hero-windows-download__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.26) 45%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.hero-windows-download__btn:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 113, 227, 0.26);
}

.hero-windows-download__btn:hover::after {
  transform: translateX(120%);
}

.hero-windows-download__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 113, 227, 0.2);
}

.hero-windows-download__btnIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-windows-download__btnIcon svg {
  display: block;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #6e6e73;
}

.hero-badge {
  padding: 8px 14px;
  border-radius: 980px;
  background-color: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #424245;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.hero-badge:hover {
  background-color: #eaeaec;
  border-color: rgba(0, 0, 0, 0.12);
}

/* Right-side hero visual (plug.gif) */
.plug-gif {
  width: 360px;
  height: 640px;
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1120px) / 2));
  transform: translateY(-50%);
  z-index: 50;
  pointer-events: none;
}

.plug-gif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

/* --- Trust section --- */
.section--trust {
  padding-block: 64px;
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section--trust .section-header {
  margin-bottom: 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
}

.trust-card {
  background-color: #ffffff;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: #6e6e73;
  letter-spacing: 0.01em;
}

.trust-value {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.trust-card--rating {
  align-items: flex-start;
}

.trust-stars {
  font-size: 13px;
  margin-bottom: 2px;
  color: #f5a623;
}

.trust-cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --- Logo image --- */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img--footer {
  height: 30px;
  opacity: 0.85;
}

/* --- How it works section --- */
#how-it-works {
  position: relative;
  overflow: hidden;
  background-color: #f5f7fb;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(0, 113, 227, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 100% 40%, rgba(88, 86, 214, 0.07) 0%, transparent 48%),
    radial-gradient(ellipse 55% 45% at 0% 75%, rgba(0, 199, 190, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #eef2f8 0%, #f8fafc 38%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

#how-it-works > .container {
  position: relative;
  z-index: 1;
}

/* --- Mode tabs (How it works) --- */
.hiw-tabs {
  width: 100%;
  margin: 0 auto 48px;
}

.tab-container {
  --tab-count: 4;
  position: relative;
  display: flex;
  padding: 4px;
  background-color: #e5e5ea;
  border-radius: 14px;
  gap: 0;
  min-height: 52px;
}

/* Wider, taller variant for the 7-tab "How it works" bar */
.tab-container.hiw-tab-container {
  --tab-count: 7;
  padding: 6px;
  min-height: 60px;
  border-radius: 18px;
  overflow: hidden;
}

.hiw-tab-container .tab {
  width: calc((100% - 12px) / var(--tab-count));
  height: 48px;
}

.hiw-tab-container .tab_label {
  flex: 0 0 calc((100% - 12px) / var(--tab-count));
  width: calc((100% - 12px) / var(--tab-count));
  min-width: 0;
  height: 48px;
  font-size: 0.9rem;
  padding-inline: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.hiw-tab-container .indicator {
  top: 6px;
  left: 6px;
  height: 48px;
  width: calc((100% - 12px) / var(--tab-count));
  border-radius: 12px;
}

.tab {
  width: calc((100% - 8px) / var(--tab-count));
  height: 44px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tab_label {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s ease;
  padding-inline: 6px;
  line-height: 1.3;
}

.tab-apple-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.2s ease;
  filter: brightness(0);
}

.tab:checked + .tab_label .tab-apple-icon {
  opacity: 0.85;
}

.tab_label:hover {
  color: rgba(15, 23, 42, 0.85);
}

.tab:checked + .tab_label {
  color: #1d1d1f;
}

.indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 44px;
  width: calc((100% - 8px) / var(--tab-count));
  background: #ffffff;
  border-radius: 10px;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12), 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.tab--1:checked ~ .indicator {
  transform: translateX(0);
}
.tab--2:checked ~ .indicator {
  transform: translateX(100%);
}
.tab--3:checked ~ .indicator {
  transform: translateX(200%);
}
.tab--4:checked ~ .indicator {
  transform: translateX(300%);
}

.tab--5:checked ~ .indicator {
  transform: translateX(400%);
}

.tab--6:checked ~ .indicator {
  transform: translateX(500%);
}

.tab--7:checked ~ .indicator {
  transform: translateX(600%);
}

.hiw-extras-esim,
.hiw-extras-lang-note {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #6e6e73;
}

.hiw-lang-pills {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.hiw-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hiw-action-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
}

/* --- Tab panels --- */
.hiw-panels {
  position: relative;
  margin-top: 0;
}

.hiw-panel {
  display: block;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.hiw-panel--hidden {
  display: none;
  opacity: 0;
}

@media (max-width: 1024px) {
  .hiw-tabs {
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .hiw-tabs {
    margin-bottom: 28px;
  }

  /* Base 4-tab variant keeps stacked layout */
  .tab-container {
    border-radius: 12px;
    min-height: 80px;
  }

  .tab_label {
    font-size: 0.76rem;
    height: 72px;
  }

  .tab {
    height: 72px;
  }

  .indicator {
    height: 72px;
  }

  /* HIW 7-tab variant: horizontal scroll on phones */
  .tab-container.hiw-tab-container {
    overflow-x: auto;
    overflow-y: hidden;
    min-height: 56px;
    padding: 5px;
    border-radius: 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .tab-container.hiw-tab-container::-webkit-scrollbar {
    display: none;
  }

  .hiw-tab-container .tab {
    width: 124px;
    height: 44px;
  }

  .hiw-tab-container .tab_label {
    flex: 0 0 124px;
    width: 124px;
    height: 44px;
    font-size: 0.82rem;
    padding-inline: 12px;
  }

  .hiw-tab-container .indicator {
    top: 5px;
    left: 5px;
    height: 44px;
    width: 124px;
    border-radius: 11px;
  }

  /* Translate by px on mobile (matches fixed 124px width) */
  .hiw-tab-container .tab--1:checked ~ .indicator { transform: translateX(0); }
  .hiw-tab-container .tab--2:checked ~ .indicator { transform: translateX(124px); }
  .hiw-tab-container .tab--3:checked ~ .indicator { transform: translateX(248px); }
  .hiw-tab-container .tab--4:checked ~ .indicator { transform: translateX(372px); }
  .hiw-tab-container .tab--5:checked ~ .indicator { transform: translateX(496px); }
  .hiw-tab-container .tab--6:checked ~ .indicator { transform: translateX(620px); }
  .hiw-tab-container .tab--7:checked ~ .indicator { transform: translateX(744px); }
}

/* --- Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 28px 24px 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: #f0f7ff;
  color: #0071e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.step-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.step-text {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.55;
}

/* --- Cards / Services --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.testimonial-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.55;
}

/* --- Why choose us --- */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.why-item {
  font-size: 15px;
  color: #424245;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.why-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0071e3;
  font-size: 13px;
  font-weight: 600;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 13px;
  color: #6e6e73;
  margin-top: 2px;
}

/* --- Testimonials --- */
.testimonial-rating {
  font-size: 13px;
  margin-bottom: 10px;
  color: #f5a623;
}

.testimonial-text {
  font-size: 14px;
  color: #424245;
  margin: 0 0 16px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-text::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 56px;
  line-height: 1;
  color: rgba(0, 113, 227, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-meta {
  font-size: 13px;
  color: #6e6e73;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  color: #1d1d1f;
}

/* --- FAQ --- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: #6e6e73;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #6e6e73;
  margin: 0 0 20px;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  padding-top: 0;
  max-height: 200px;
}

.faq-item.is-open {
  border-left-color: #0071e3;
  border-left-width: 2px;
  background-color: rgba(0, 113, 227, 0.025);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* --- Footer --- */
.site-footer {
  padding: 56px 0 32px;
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-logo {
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.footer-text {
  margin: 12px 0 0;
  font-size: 12px;
  color: #86868b;
  max-width: 480px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  flex-shrink: 0;
}

.footer-link {
  color: #424245;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #0071e3;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 20px;
}

.footer-meta {
  margin: 0;
  font-size: 12px;
  color: #86868b;
}

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (min-width: 1024px) {
  .section--hero .container {
    padding-right: 480px;
  }
}

@media (max-width: 1024px) {
  .section { padding-block: 80px; }
  .section--hero { padding-block: 96px 64px; }
  .section-header { margin-bottom: 44px; }

  .plug-gif {
    position: static;
    width: 100%;
    max-width: 420px;
    height: auto;
    transform: none;
    margin: 24px auto 0;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .hero-content {
    gap: 20px;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .steps-grid,
  .card-grid,
  .card-grid--testimonials,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}

/* --- Hero: Windows + macOS downloads (always side by side) --- */
.hero-downloads-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
  margin: 0;
  width: 100%;
  max-width: 860px;
}

.hero-downloads-row .hero-windows-download,
.hero-downloads-row .hero-mac-download {
  max-width: none !important;
  width: 100%;
  min-height: 128px;
  min-width: 0;
}

.hero-mac-download {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-mac-download:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 86, 214, 0.24);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
}

.hero-mac-download__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
  border: 1px solid rgba(88, 86, 214, 0.14);
  color: #1d1d1f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-mac-download__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.hero-mac-download__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #70737c;
}

.hero-mac-download__btn {
  position: relative;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 10px;
  background-color: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  color: #404354;
  font-size: 13px;
  font-weight: 600;
}

.coming-soon-pill {
  position: absolute;
  top: -8px;
  right: 10px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.btn.is-disabled,
button.is-disabled:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-mac-soon-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6e6e73;
  max-width: 560px;
}

.site-header + main.auth-page {
  padding-top: 92px;
}

/* --- Modules strip --- */
.section--tight {
  padding-block: 64px;
}

.section--modules {
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.65) 0%, #ffffff 100%);
}

.modules-header {
  text-align: center;
  margin-bottom: 32px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.modules-header__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}

.modules-header__sub {
  margin: 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.55;
  max-width: 560px;
}

.modules-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.modules-strip__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  text-decoration: none;
  color: inherit;
  min-height: 88px;
}

.modules-strip__card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.modules-strip__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86868b;
}

.modules-strip__title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}

/* --- Feature split sections --- */
.section--feature-split {
  padding-block: 96px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.feature-split--reverse .feature-split__text {
  order: 2;
}

.feature-split--reverse .feature-split__media {
  order: 1;
}

.feature-split__text .section-header {
  margin-bottom: 24px;
}

.feature-shot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #f0f4f8 0%, #f5f5f7 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.feature-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-checklist {
  margin: 0;
  list-style: none;
  padding-left: 0;
  color: #3a3a3c;
  font-size: 15px;
  line-height: 1.65;
  display: grid;
  gap: 12px;
}

.feature-checklist li {
  position: relative;
  padding-left: 1.4rem;
}

.feature-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0071e3;
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1.65;
}

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

.checker-card {
  padding: 22px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.checker-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.checker-card__text {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.55;
}

.section-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 32px 0;
}

.security-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 113, 227, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.12);
  color: #1d1d1f;
  font-size: 14px;
  line-height: 1.55;
}

.updates-security-wrap {
  max-width: 880px;
}

.section--extras .section-header {
  margin-bottom: 28px;
}

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

.extras-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 22px 20px;
}

.extras-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.extras-card__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #6e6e73;
}

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lang-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
  font-size: 13px;
  color: #1d1d1f;
}

/* --- Pricing section layout --- */
.pricing-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-hint {
  text-align: center;
  font-size: 13px;
  color: #86868b;
  margin: 0;
  line-height: 1.6;
}

/* --- Pricing card base --- */
.pricing-card {
  padding: 24px 22px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Trial */
.pricing-card--trial {
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: 0 12px 34px rgba(0, 113, 227, 0.1);
  background: radial-gradient(130% 130% at 0% 0%, rgba(0, 113, 227, 0.07) 0%, rgba(255, 255, 255, 1) 65%);
}

/* Plan cards */
.pricing-card--plan {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pricing-card--plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 113, 227, 0.2);
}

.pricing-card--credit-pkg {
  background: linear-gradient(145deg, rgba(245, 245, 247, 0.42) 0%, #ffffff 100%);
  border-style: dashed;
}

/* Featured / recommended plan */
.pricing-card--plan-featured {
  border-color: rgba(0, 113, 227, 0.4);
  background: radial-gradient(140% 140% at 50% 0%, rgba(0, 113, 227, 0.08) 0%, #ffffff 60%);
  box-shadow: 0 12px 40px rgba(0, 113, 227, 0.14);
}

.pricing-card--plan-featured:hover {
  border-color: rgba(0, 113, 227, 0.55);
  box-shadow: 0 18px 50px rgba(0, 113, 227, 0.2);
}

/* Badge */
.pricing-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(0, 113, 227, 0.1);
  color: #0071e3;
  border: 1px solid rgba(0, 113, 227, 0.18);
}

.pricing-card__badge--plan {
  background: rgba(88, 86, 214, 0.08);
  color: #5856d6;
  border-color: rgba(88, 86, 214, 0.18);
}

.pricing-card__badge--featured {
  background: rgba(0, 113, 227, 0.1);
  color: #0071e3;
  border-color: rgba(0, 113, 227, 0.25);
}

/* Title */
.pricing-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}

/* Text */
.pricing-card__text {
  margin: 0 0 20px;
  flex: 1;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.6;
}

/* Feature list inside plan cards */
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.4em;
  font-size: 14px;
  color: #3a3a3c;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0071e3;
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1.5;
}

.pricing-card--plan-featured .pricing-card__features li::before {
  color: #0071e3;
}

/* CTA button inside card */
.pricing-card__cta {
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  padding: 9px 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-top {
    grid-template-columns: 1fr;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-top,
  .pricing-plans {
    gap: 12px;
  }
}

.download-page__inner {
  width: min(920px, 100% - 32px);
  margin-inline: auto;
  display: grid;
  gap: 16px;
}

.download-card--secondary {
  max-width: 920px;
  width: 100%;
  margin-inline: auto;
}

.download-lead {
  margin: 0 0 16px;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.6;
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.download-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.download-hint {
  margin: 0;
  font-size: 13px;
  color: #6e6e73;
}

.download-hint a {
  color: #0071e3;
  text-decoration: underline;
}

.download-subtitle {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
}

.download-changelog {
  margin: 0;
  padding-left: 1.1rem;
  color: #3a3a3c;
  font-size: 14px;
  line-height: 1.6;
  display: grid;
  gap: 8px;
}

@media (max-width: 1080px) {
  .nav {
    gap: 2px;
    font-size: 13px;
  }

  .nav-link {
    padding: 6px 8px;
  }

  .logo-nav {
    gap: 18px;
  }
}

@media (max-width: 960px) {
  .hero-downloads-row {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .feature-split,
  .feature-split--reverse {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__text,
  .feature-split--reverse .feature-split__media {
    order: unset;
  }

  .checker-trio {
    grid-template-columns: 1fr;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .logo-nav {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 4px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    z-index: 60;
  }

  .site-header--menu-open .nav {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
  }

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

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

@media (max-width: 600px) {
  .section { padding-block: 64px; }
  .section--hero { padding-block: 80px 56px; }
  .section-header { margin-bottom: 32px; }

  .container,
  .container--header,
  .container--page {
    width: min(100% - 32px, 720px);
  }

  .plug-gif {
    max-width: 320px;
    margin-top: 16px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-title__inline {
    gap: 0.14em;
    font-size: 1.05em;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-windows-download__meta {
    width: 100%;
  }

  .hero-windows-download__btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .why-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 24px;
    padding-bottom: 24px;
  }

  .feature-split {
    gap: 32px;
  }

  .hiw-action-row {
    gap: 8px;
    margin-top: 20px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .hero-downloads-row {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .hero-downloads-row .hero-windows-download,
  .hero-downloads-row .hero-mac-download {
    padding: 16px;
    gap: 14px;
  }

  .hero-downloads-row .hero-windows-download__icon,
  .hero-downloads-row .hero-mac-download__icon {
    width: 48px;
    height: 48px;
  }

  .hero-downloads-row .hero-windows-download__icon svg {
    width: 36px;
    height: 36px;
  }

  .hero-downloads-row .hero-mac-download__icon svg {
    width: 32px;
    height: 32px;
  }

  .hero-downloads-row .hero-windows-download,
  .hero-downloads-row .hero-mac-download {
    flex-direction: row;
    align-items: center;
  }

  .hero-downloads-row .hero-windows-download__btn,
  .hero-downloads-row .hero-mac-download__btn {
    width: 100%;
    justify-content: center;
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero-downloads-row .hero-windows-download__label,
  .hero-downloads-row .hero-mac-download__label {
    font-size: 10px;
  }
}
