/* RecarregaAi! 2.3.6 */

:root {
  --color-background: #07111f;
  --color-page-start: #111c2e;
  --color-page-end: #07111f;
  --color-surface: #0f1728;
  --color-surface-soft: #121f33;
  --color-card: #101b2d;
  --color-card-soft: #14233a;
  --color-primary: #2d9cff;
  --color-primary-hover: #58b3ff;
  --color-primary-soft: rgba(45, 156, 255, 0.15);
  --color-text: #edf4ff;
  --color-muted: #9ba9bd;
  --color-border: #263a58;
  --color-footer: #020617;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-button: 0 16px 32px rgba(45, 156, 255, 0.24);

  color-scheme: dark;
  font-family:
    Inter,
    Arial,
    sans-serif;
}

:root[data-theme="light"] {
  --color-background: #f5f9ff;
  --color-page-start: #ffffff;
  --color-page-end: #edf5ff;
  --color-surface: #ffffff;
  --color-surface-soft: #f6faff;
  --color-card: #ffffff;
  --color-card-soft: #f8fbff;
  --color-primary: #1769e0;
  --color-primary-hover: #1158bf;
  --color-primary-soft: #e7f0ff;
  --color-text: #111827;
  --color-muted: #667085;
  --color-border: #d7e3f3;
  --color-footer: #020617;
  --shadow-soft: 0 24px 60px rgba(32, 48, 77, 0.13);
  --shadow-button: 0 16px 32px rgba(23, 105, 224, 0.2);

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(45, 156, 255, 0.18), transparent 34rem),
    linear-gradient(
      180deg,
      var(--color-page-start) 0%,
      var(--color-page-end) 100%
    );
}

body.has-open-dialog {
  overflow: hidden;
}

button {
  font: inherit;
}

.welcome-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

:root[data-theme="light"] .welcome-header {
  background: rgba(255, 255, 255, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand__icon {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 14px 26px rgba(45, 156, 255, 0.24));
}

.brand__name,
.brand__version {
  display: block;
}

.brand__name {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 950;
}

.brand__version {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.top-nav,
.top-controls {
  display: flex;
  align-items: center;
}

.top-nav {
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
  padding: 0;
}

.top-controls {
  justify-content: flex-end;
  gap: 10px;
}

.chrome-install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  gap: 10px;
  color: #020617;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  background: #ffffff;
  border: 1.5px solid #0f172a;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    box-shadow 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.chrome-install-button[hidden] {
  display: none;
}

.chrome-install-button:hover,
.chrome-install-button:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.chrome-install-button:focus-visible {
  outline: 3px solid rgba(45, 156, 255, 0.24);
  outline-offset: 3px;
}

.chrome-install-button__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at center, #2d9cff 0 28%, #ffffff 29% 39%,
    transparent 40%),
    conic-gradient(#16a34a 0 33%, #facc15 0 66%, #ef4444 0 100%);
  border-radius: 50%;
}

.top-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 2px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.top-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-primary);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.top-nav__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.top-nav__link:hover,
.top-nav__link:focus-visible {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.top-nav__link:hover::after,
.top-nav__link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-nav__link:focus-visible {
  outline: 3px solid rgba(45, 156, 255, 0.18);
  outline-offset: 6px;
  border-radius: 8px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--color-text);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.theme-toggle:hover {
  background: var(--color-primary-soft);
  border-color: var(--color-border-strong);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.24);
  outline-offset: 2px;
}

.theme-toggle__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #f5a524;
  background: currentColor;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(245, 165, 36, 0.18),
    0 0 16px rgba(245, 165, 36, 0.2);
}

.theme-toggle__icon::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(245, 165, 36, 0.26);
  border-radius: inherit;
  content: "";
}

:root[data-theme="dark"] .theme-toggle__icon {
  color: #d8e8ff;
  background: transparent;
  box-shadow:
    inset -5px -4px 0 0 currentColor,
    0 0 18px rgba(45, 156, 255, 0.24);
}

:root[data-theme="dark"] .theme-toggle__icon::after {
  inset: 2px 0 0 8px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border: 0;
  box-shadow:
    7px 2px 0 -1px currentColor,
    -2px 8px 0 -1px currentColor;
}

.welcome {
  display: grid;
  gap: 72px;
  width: min(1720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 clamp(54px, 6vw, 92px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 820px) minmax(120px, 1fr);
  align-items: center;
  justify-items: stretch;
  width: 100%;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) clamp(24px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(45, 156, 255, 0.14), transparent 42%),
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-card) 100%);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 18px 10% auto;
  height: 160px;
  content: "";
  background: rgba(45, 156, 255, 0.16);
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.8;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: grid;
  justify-items: center;
}

.hero__visual {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 260px;
}

.hero__visual--left {
  justify-items: end;
  padding-right: 26px;
}

.hero__visual--right {
  justify-items: start;
  padding-left: 26px;
}

.hero__bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 156, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(45, 156, 255, 0.16);
}

:root[data-theme="dark"] .hero__bubble {
  background: rgba(15, 23, 42, 0.72);
}

.hero__bubble--large {
  width: 74px;
  height: 74px;
  border-radius: 24px;
}

.hero__bubble svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__bubble--large svg {
  width: 34px;
  height: 34px;
}

.hero__eyebrow,
.section__eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__title {
  position: relative;
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero__title span {
  position: relative;
  display: inline-block;
}

.hero__title span::after {
  position: absolute;
  right: -0.12em;
  bottom: 0.06em;
  left: -0.12em;
  z-index: -1;
  content: "";
  height: 0.2em;
  background:
    linear-gradient(
      90deg,
      rgba(45, 156, 255, 0),
      rgba(45, 156, 255, 0.24) 18%,
      rgba(45, 156, 255, 0.3) 78%,
      rgba(45, 156, 255, 0)
    );
  border-radius: 999px;
}

.hero__description {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible {
  outline: 3px solid rgba(45, 156, 255, 0.28);
  outline-offset: 2px;
}

.button--large {
  min-height: 54px;
  padding: 0 28px;
}

.button--primary {
  color: #ffffff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-button);
}

.button--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.button--secondary,
.button--ghost {
  color: var(--color-text);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
}

.button--secondary:hover,
.button--ghost:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.trust-panel {
  position: relative;
  padding: 42px clamp(18px, 4vw, 44px) 34px;
  background:
    linear-gradient(135deg, var(--color-surface) 0%, var(--color-card) 100%);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.trust-panel__label {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: calc(100% - 36px);
  margin: 0;
  padding: 10px 22px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
  background: var(--color-primary);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

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

.trust-item {
  display: grid;
  gap: 8px;
}

.trust-item__icon,
.feature-card__icon,
.accordion-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 950;
  background: var(--color-primary-soft);
  border-radius: 12px;
}

.trust-item__icon {
  width: 54px;
  height: 42px;
  font-size: 0.9rem;
}

.trust-item strong {
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  display: grid;
  gap: 30px;
  scroll-margin-top: 112px;
}

.section__header {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section__header h2,
.final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section__header p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 224px;
  padding: 28px;
  background:
    linear-gradient(145deg, var(--color-card) 0%, var(--color-card-soft) 100%);
  border: 1px solid transparent;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.accordion-list,
.faq-list {
  display: grid;
  gap: 16px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.accordion-card,
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.accordion-card summary,
.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.accordion-card summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.accordion-card summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 62px 24px 24px;
}

.accordion-card summary::after,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-text);
  font-size: 1rem;
  content: "+";
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transform: translateY(-50%);
}

.accordion-card[open] summary::after,
.faq-item[open] summary::after {
  content: "-";
}

.accordion-card__icon {
  width: 54px;
  height: 54px;
}

.accordion-card strong {
  display: block;
  font-size: 1.05rem;
}

.accordion-card small {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.accordion-card p,
.faq-item p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.accordion-card > p {
  padding: 0 62px 24px 96px;
}

.faq-item summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  font-weight: 900;
}

.faq-item p {
  padding: 0 62px 22px 24px;
}

.final-cta {
  position: relative;
  display: grid;
  gap: 42px;
  justify-items: center;
  padding:
    clamp(64px, 6vw, 84px)
    clamp(22px, 5vw, 72px)
    clamp(68px, 7vw, 92px);
  width: 100%;
  margin: 0 auto;
  color: var(--color-text);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(23, 105, 224, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  right: 12%;
  bottom: -70px;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(45, 156, 255, 0.12);
  border-radius: 999px;
  filter: blur(44px);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 820px;
}

.final-cta__icon {
  width: 62px;
  height: 62px;
  padding: 9px;
  background: var(--color-primary-soft);
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.14);
}

.final-cta p {
  max-width: 620px;
  color: var(--color-muted);
  margin-bottom: 28px;
}

:root[data-theme="dark"] .final-cta {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0, rgba(45, 156, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, #050b18 0%, var(--color-footer) 100%);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 -24px 70px rgba(2, 6, 23, 0.26);
}

:root[data-theme="dark"] .final-cta__icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

:root[data-theme="dark"] .final-cta p {
  color: #cbd5e1;
}

.floating-tools {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0 13px;
  gap: 0;
  color: #0f172a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    width 160ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  width: auto;
  gap: 9px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

.floating-action__icon {
  order: 2;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-action__label {
  order: 1;
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 850;
  opacity: 0;
  white-space: nowrap;
  transition:
    max-width 180ms ease,
    opacity 120ms ease;
}

.floating-action:hover .floating-action__label,
.floating-action:focus-visible .floating-action__label {
  max-width: 150px;
  opacity: 1;
}

.language-dialog {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.language-dialog[hidden] {
  display: none;
}

.language-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.66);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(3px);
}

.language-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d7e3f3;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.28);
}

.language-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #667085;
  background: #ffffff;
  border: 1px solid #d7e3f3;
  border-radius: 999px;
  cursor: pointer;
}

.language-dialog__close:hover,
.language-dialog__close:focus-visible {
  color: #111827;
  border-color: #b7c7dc;
}

.language-dialog__title {
  margin: 0;
  color: #020617;
  font-size: 1.28rem;
  font-weight: 950;
}

.language-dialog__description {
  max-width: 380px;
  margin: 10px auto 24px;
  color: #667085;
  line-height: 1.5;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.language-card {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 16px 12px;
  color: #020617;
  background: #ffffff;
  border: 1px solid #d7e3f3;
  border-radius: 14px;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.language-card:hover,
.language-card:focus-visible {
  border-color: #2d9cff;
  box-shadow: 0 14px 28px rgba(45, 156, 255, 0.16);
  transform: translateY(-1px);
}

.language-card.is-selected {
  background: #eaf5ff;
  border-color: #2d9cff;
}

.language-card strong {
  font-size: 1rem;
  font-weight: 950;
}

.language-card span {
  font-size: 0.88rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.language-card small {
  color: #667085;
  font-size: 0.76rem;
  font-weight: 800;
}

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

  .button,
  .feature-card,
  .floating-action,
  .language-card,
  .theme-toggle {
    transition: none;
  }
}

@media (min-width: 1180px) {
  #use-cases,
  #faq {
    grid-template-columns: minmax(300px, 0.72fr) minmax(720px, 1.28fr);
    gap: clamp(44px, 5vw, 88px);
    align-items: start;
  }

  #use-cases .section__header,
  #faq .section__header {
    justify-items: start;
    max-width: 520px;
    margin: 0;
    padding-top: 18px;
    text-align: left;
  }

  #use-cases .section__header h2,
  #faq .section__header h2 {
    font-size: clamp(2.4rem, 3.2vw, 4rem);
  }

  #use-cases .section__header p,
  #faq .section__header p {
    max-width: 460px;
  }

  #use-cases .accordion-list,
  #faq .faq-list {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 1540px) {
  .welcome {
    gap: 88px;
    width: min(1680px, calc(100% - 96px));
  }

  #use-cases,
  #faq {
    grid-template-columns: minmax(380px, 0.72fr) minmax(820px, 1.28fr);
  }

  .accordion-list,
  .faq-list {
    gap: 18px;
  }

  .accordion-card summary {
    padding: 28px 70px 28px 28px;
  }

  .accordion-card > p {
    padding: 0 70px 28px 100px;
  }

  .faq-item summary {
    padding: 24px 70px 24px 28px;
  }

  .faq-item p {
    padding: 0 70px 24px 28px;
  }
}

@media (max-width: 980px) {
  .welcome-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .hero__visual {
    display: none;
  }

  .top-nav,
  .top-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

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

@media (max-width: 680px) {
  .welcome {
    gap: 52px;
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .welcome-header {
    padding-inline: 16px;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
  }

  .top-nav__link {
    flex: 1 1 auto;
    padding-inline: 6px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .trust-panel {
    padding-top: 58px;
  }

  .trust-panel__label {
    width: calc(100% - 28px);
    white-space: normal;
  }

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

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

  .accordion-card summary {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

  .accordion-card > p {
    padding: 0 56px 22px 20px;
  }

  .final-cta {
    padding:
      52px 22px
      64px;
  }

  .floating-tools {
    right: 14px;
    bottom: 14px;
  }

}

@media (max-width: 420px) {
  .language-grid {
    grid-template-columns: 1fr;
  }
}
