:root {
  --bg: #f5f6f8;
  --surface: rgba(255,255,255,0.84);
  --surface-2: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --dark: #0e1116;
  --dark-2: #171b22;
  --accent: #2563eb;
  --accent-2: #3b82f6;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
  --nav-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255,255,255,0.7), transparent 18%),
    linear-gradient(180deg, #f7f8fb 0%, #eef1f6 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245,246,248,0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.topbar__inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: none;
  border: none;
  box-shadow: none;
}

.brand__text strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.12em;
}

.brand__text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav a:hover {
  background: rgba(15,23,42,0.05);
  color: #0f172a;
}

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

.lang-switch {
  min-width: 124px;
}

.nice-select {
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.84);
  font-weight: 600;
  color: #111827;
  height: 48px;
  line-height: 46px;
  box-shadow: none;
  font-size: 14px;
}

.nice-select .current {
  font-size: 14px;
  font-weight: 600;
}

.nice-select .list {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-soft);
  margin-top: 8px;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
}

.nice-select .list::-webkit-scrollbar {
  width: 6px;
}

.nice-select .list::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.05);
  border-radius: 10px;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 10px;
}

.nice-select .option {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  min-height: auto;
  line-height: 1.4;
  color: #334155;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nice-select .option:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #0f172a;
}

.nice-select .option.selected {
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.04);
}

.nice-select .option.selected::after {
  content: "✓";
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  margin-left: 8px;
}

.nice-select .option.focus,
.nice-select .option.selected.focus {
  background: rgba(37, 99, 235, 0.08);
}

.nice-select.open {
  border-color: rgba(37, 99, 235, 0.3);
}

.nice-select:active,
.nice-select.open:active {
  border-color: rgba(37, 99, 235, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px rgba(37,99,235,0.22);
}

.btn--ghost {
  background: rgba(255,255,255,0.7);
  border-color: rgba(15,23,42,0.08);
  color: #111827;
}

.btn--dark {
  background: #0f172a;
  color: #fff;
}

/* HERO SECTION */
.hero {
  padding: 40px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  color: #0f172a;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: #475569;
}

.hero__lead {
  max-width: 720px;
  font-size: 18px;
  color: #334155;
  margin: 0 0 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  max-width: 620px;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 960px) {
  .hero {
    padding: 20px 0 18px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__image--desktop {
    display: none;
  }

  .hero__image--mobile {
    display: flex;
    justify-content: center;
    margin: 14px 0 6px;
    width: 100%;
    order: 2;
  }

  .hero__image--mobile img {
    width: min(100%, 300px);
  }

  .hero__content {
    display: flex;
    flex-direction: column;
  }

  .hero__eyebrow { order: 1; }
  .hero h1 { order: 3; margin: 6px 0 12px; font-size: clamp(34px, 10vw, 48px); line-height: 0.98; }
  .hero__lead { order: 4; font-size: 16px; margin-bottom: 18px; }
  .hero__actions { order: 5; width: 100%; gap: 10px; }
  .hero__note { order: 6; margin-top: 14px; }
}

@media (min-width: 961px) {
  .hero__image--mobile { display: none; }
  .hero__image--desktop { display: flex; }
}

.section {
  padding: 38px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.section__head p {
  margin: 0;
  max-width: 690px;
  color: #475569;
  font-size: 17px;
}

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

.feature-card,
.suite-card,
.bundle,
.spec-card,
.use-case,
.faq-item,
.warning-card,
.cta-panel {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.06);
  flex-shrink: 0;
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.use-case {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.use-case__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.use-case__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15,23,42,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.use-case h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.use-case p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .feature-card__icon { width: 42px; height: 42px; }
  .feature-card h3 { font-size: 18px; }
  .use-case__icon { width: 38px; height: 38px; }
  .use-case h3 { font-size: 16px; }
}

.how {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 18px;
  align-items: stretch;
}

.how__panel {
  padding: 28px;
  background: linear-gradient(180deg, #0f172a, #111827);
  color: white;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(15,23,42,0.18);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.how__panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 60%);
  filter: blur(20px);
}

.how__panel h3 { margin: 0; font-size: 30px; letter-spacing: -0.04em; }
.how__panel p { margin: 0; color: rgba(255,255,255,0.78); }

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.step strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.step p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.suite-card {
  padding: 26px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.check-list,
.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li,
.spec-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #334155;
  font-size: 15px;
}

.spec-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.spec-card {
  padding: 26px;
  position: sticky;
  top: calc(var(--nav-h) + 18px);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.spec-list li:last-child { border-bottom: 0; }
.spec-list span:first-child { color: #64748b; }
.spec-list span:last-child { text-align: right; font-weight: 700; }

.warning-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
}

.warning-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,0.12);
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

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

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

.bundle {
  padding: 28px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.bundle--featured {
  background: linear-gradient(180deg, rgba(15,23,42,0.96), rgba(15,23,42,0.92));
  color: #fff;
}

.bundle ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bundle ul li {
  list-style: none;
}

.bundle--featured p,
.bundle--featured li,
.bundle--featured .bundle__desc {
  color: rgba(255,255,255,0.82);
}

.bundle__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle--featured .bundle__tag {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* BUY ROW */
.bundle__buy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 170px);
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
  width: 100%;
}

.bundle__price-box {
  margin-top: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 96px;
  min-width: 0;
}

.bundle__price-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
}

.bundle__price {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.bundle__price-note {
  font-size: 13px;
  color: #64748b;
}

.bundle:hover .bundle__price {
  transform: scale(1.04);
  transition: 0.2s ease;
}

.bundle__price .currency {
  font-size: 22px;
  vertical-align: top;
  margin-right: 2px;
}

.bundle__price .usd {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-left: 6px;
}

.bundle__buy-btn {
  min-width: 0;
  width: 100%;
  max-width: 170px;
  min-height: 96px;
  padding: 0 26px;
  white-space: nowrap;
  border-radius: 18px;
  align-self: stretch;
  flex-shrink: 0;
}

/* FEATURED PRICE */
.bundle--featured .bundle__price-box {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.bundle--featured .bundle__price-label {
  color: rgba(255,255,255,0.8);
}

.bundle--featured .bundle__price {
  color: #ffffff;
  font-size: 44px;
}

.bundle--featured .bundle__price .usd,
.bundle--featured .bundle__price-note {
  color: rgba(255,255,255,0.72);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.gallery-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.bottom-sheet {
  padding: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.bottom-sheet__handle {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15,23,42,0.1);
  margin-bottom: 14px;
}

.gallery-scout-btn {
  width: auto;
  justify-self: start;
  align-self: start;
}

/* CAROUSEL */
.carousel-container {
  position: relative;
  width: 100%;
  min-width: 0;
}

.carousel {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.carousel__track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
}

.carousel__track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 300px;
  width: 300px;
  opacity: 0.35;
  transform: scale(0.86);
  filter: blur(2px);
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.carousel__slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.carousel__slide.prev,
.carousel__slide.next {
  opacity: 0.55;
  transform: scale(0.9);
  filter: blur(1px);
}

.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: white;
  pointer-events: none;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(15,23,42,0.1);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: all 0.2s ease;
}

.carousel__btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
  border-color: var(--accent);
}

.carousel__btn--prev {
  left: -22px;
}

.carousel__btn--next {
  right: -22px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15,23,42,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel__dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--accent);
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  padding: 24px;
}

.faq-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.cta {
  padding: 24px 0 56px;
}

.cta-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
}

.cta-panel__box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(15,23,42,0.04);
  display: grid;
  gap: 10px;
}

.footer {
  padding: 0 0 28px;
  color: #64748b;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.how__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how__cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.how__image {
  background: transparent;
  border: none;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.how__image img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.how__image-text {
  display: none;
}

.mobile-nav-toggle,
.mobile-nav {
  display: none;
}

@media (max-width: 1180px) {
  .hero__grid,
  .how,
  .spec-wrap,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .spec-card {
    position: static;
  }
}

@media (max-width: 960px) {
  .nav,
  .actions .btn--dark,
  .actions .lang-switch,
  .actions > .nice-select {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.84);
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15,23,42,0.44);
    padding: 16px;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
  }

  .faq,
  .bundles {
    grid-template-columns: 1fr;
  }

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

  .how__image img {
    max-width: 80%;
    border-radius: 16px;
  }

  .carousel__slide {
    width: 260px;
  }

  .carousel__btn--prev { left: 5px; }
  .carousel__btn--next { right: 5px; }
}

@media (max-width: 720px) {
  :root { --nav-h: 74px; }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero {
    padding-top: 18px;
  }

  .grid-3,
  .use-cases,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 26px 0;
  }

  .section__head {
    display: grid;
    gap: 10px;
  }

  .section__head p {
    font-size: 15px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .actions {
    gap: 8px;
  }

  .lang-switch {
    min-width: 106px;
  }

  .topbar__inner {
    gap: 10px;
  }

  .brand__text span {
    display: none;
  }

  .scroll-to-top {
    bottom: 80px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }

  .how__cards-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .how__image {
    padding: 16px 0;
  }

  .how__image img {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }

  .carousel__slide {
    width: 220px;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
  }

  .carousel__btn svg {
    width: 18px;
    height: 18px;
  }

  .bundle__buy-row {
    grid-template-columns: 1fr;
  }

  .bundle__buy-btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: 58px;
  }

  .bundle__price-box {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .carousel__slide {
    width: 200px;
  }
}

.mobile-nav__panel {
  width: min(100%, 400px);
  height: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav__bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
}

.mobile-nav__lang-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  padding: 0 2px;
}

.lang-switch-mobile {
  width: 100%;
  min-width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  appearance: auto;
  -webkit-appearance: menulist;
  box-shadow: none;
}

.feature-card__icon svg,
.use-case__icon svg,
.step__icon svg,
.warning-card__label svg,
.bundle__tag svg,
.list-icon svg,
.mobile-nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: #0f172a;
}

.list-icon,
.step__icon,
.use-case__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.list-icon {
  width: 22px;
  height: 22px;
  color: #2563eb;
}

.step__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .carousel__slide {
    flex-basis: 260px;
    width: 260px;
  }

  .carousel__btn--prev { left: -16px; }
  .carousel__btn--next { right: -16px; }
}

@media (max-width: 720px) {
  .carousel {
    padding: 15px 0;
  }

  .carousel__slide {
    flex-basis: 220px;
    width: 220px;
  }

  .carousel__btn {
    width: 38px;
    height: 38px;
  }

  .carousel__btn--prev { left: 5px; }
  .carousel__btn--next { right: 5px; }
}

@media (max-width: 480px) {
  .carousel__slide {
    flex-basis: 200px;
    width: 200px;
  }
}

.footer__links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer__links a {
  color: #64748b;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #0f172a;
  text-decoration: underline;
}