:root {
  --bg-main: #050608;
  --bg-deep: #090b12;
  --bg-panel: rgba(18, 23, 41, 0.82);
  --bg-panel-strong: rgba(16, 21, 38, 0.95);
  --bg-soft: rgba(255, 255, 255, 0.04);

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(217, 255, 31, 0.34);

  --text-main: #f7f8fb;
  --text-soft: rgba(247, 248, 251, 0.75);
  --text-dim: rgba(247, 248, 251, 0.45);

  --accent-lime: #d9ff1f;
  --accent-lime-strong: #efff69;
  --accent-purple: #7d5ef6;
  --accent-purple-dark: #6037f2;
  --accent-gold: #d1af41;

  --shadow-sm: 0 16px 38px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 26px 60px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 42px 90px rgba(0, 0, 0, 0.46);

  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --radius-xl: 46px;

  --container: 1240px;
  --header-height: 84px;
  --transition: 0.34s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 14% 10%,
      rgba(125, 94, 246, 0.12),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 14%,
      rgba(217, 255, 31, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #040507 0%, #05070d 48%, #060810 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.8;
}

.orb-1 {
  width: 26rem;
  height: 26rem;
  left: -10rem;
  top: -6rem;
  background: rgba(125, 94, 246, 0.18);
}

.orb-2 {
  width: 20rem;
  height: 20rem;
  right: -5rem;
  top: 28%;
  background: rgba(217, 255, 31, 0.08);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 84%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 78% 32%,
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 34% 82%,
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    );
  background-size: 240px 240px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.97), rgba(5, 6, 8, 0.72));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
  background: linear-gradient(135deg, var(--accent-lime), #ffff9a);
  box-shadow: 0 20px 40px rgba(217, 255, 31, 0.16);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy small {
  color: var(--text-dim);
}

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

.nav a {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-weight: 600;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active-link {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 54px 0 86px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 44px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  min-height: 36px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-solid {
  color: #111;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-lime), #ffff8a);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  max-width: 10ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.9rem, 5.8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent-lime), #ffff8a);
  box-shadow: 0 18px 42px rgba(217, 255, 31, 0.18);
}

.btn-secondary {
  color: var(--text-main);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.btn-wide {
  min-width: 260px;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.86);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--accent-lime);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-stage {
  position: relative;
  min-height: 760px;
}

.phone-card,
.floating-note {
  position: absolute;
  box-shadow: var(--shadow-md);
}

.phone-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(12, 17, 31, 0.96);
  transition: transform 0.22s ease;
}

.phone-card img {
  aspect-ratio: 9 / 18.6;
  object-fit: cover;
}

.phone-main {
  width: 40%;
  left: 30%;
  top: 7%;
  transform: rotate(-3deg);
}

.phone-left {
  width: 28%;
  left: 2%;
  bottom: 8%;
  transform: rotate(-9deg);
}

.phone-right {
  width: 28%;
  right: 2%;
  top: 30%;
  transform: rotate(8deg);
}

.phone-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: rgba(3, 6, 12, 0.96);
  z-index: 2;
}

.floating-note {
  width: 33%;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(17, 23, 40, 0.9);
  backdrop-filter: blur(12px);
}

.note-a {
  left: 0;
  top: 18%;
}

.note-b {
  right: 0;
  bottom: 12%;
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-lime);
  font-weight: 800;
}

.floating-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
  font-size: 0.94rem;
}

.section {
  padding: 96px 0;
}

.statement {
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at left center,
      rgba(217, 255, 31, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(15, 20, 37, 0.92), rgba(11, 15, 26, 0.98));
  box-shadow: var(--shadow-md);
}

.statement h2 {
  margin: 0;
  max-width: 18ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head {
  margin-bottom: 38px;
}

.section-label {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 12px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.feature-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.88);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 255, 31, 0.28);
  box-shadow: var(--shadow-md);
}

.feature-num {
  width: 48px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-lime), #ffff8a);
}

.feature-card h3 {
  margin: 14px 0 12px;
  font-size: 1.16rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.76;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.showcase-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.9);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}

.showcase-wide {
  grid-column: span 2;
}

.showcase-text h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
}

.showcase-text p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.showcase-media img {
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.dual-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 40px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 102px;
}

.process-copy h2 {
  margin: 0 0 18px;
  max-width: 13ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.86);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.process-item:hover,
.process-item.active-process {
  transform: translateY(-2px);
  border-color: rgba(217, 255, 31, 0.28);
  box-shadow: var(--shadow-md);
  background: rgba(17, 23, 40, 0.98);
}

.process-item > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-lime), #ffff8a);
}

.process-item h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.process-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.preview-shell {
  padding: 28px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.92);
  box-shadow: var(--shadow-lg);
}

.preview-phone {
  position: relative;
  width: min(380px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.96);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease;
}

.preview-phone img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.preview-copy {
  margin-top: 22px;
}

.preview-copy small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-copy h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.preview-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.84;
}

.guide-highlight {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.92);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.guide-copy h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.guide-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.86;
}

.guide-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guide-stack img {
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.slider-shell {
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.9);
  box-shadow: var(--shadow-lg);
}

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

.slider-copy small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.slider-copy h3 {
  margin: 0;
  font-size: 1.48rem;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--accent-lime), #ffff8a);
  transition: var(--transition);
}

.slider-arrow:hover {
  transform: translateY(-2px);
}

.slider-window {
  overflow: hidden;
  border-radius: 28px;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slider-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px;
}

.slider-slide img {
  width: min(390px, 100%);
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: var(--transition);
}

.slider-dots button.active-dot {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-purple));
}

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

.review-card {
  padding: 28px 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.9);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover,
.featured-review {
  transform: translateY(-4px);
  border-color: rgba(217, 255, 31, 0.28);
  box-shadow: var(--shadow-md);
  background: rgba(17, 23, 40, 0.98);
}

.review-stars {
  color: var(--accent-lime);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.84;
}

.review-meta {
  margin-top: 22px;
  display: grid;
  gap: 4px;
}

.review-meta span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.download-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at left center,
      rgba(217, 255, 31, 0.07),
      transparent 30%
    ),
    rgba(15, 20, 37, 0.94);
  box-shadow: var(--shadow-lg);
}

.download-copy h2 {
  margin: 0 0 14px;
  max-width: 13ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.download-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  max-width: 62ch;
}

.download-actions {
  display: grid;
  gap: 14px;
}

.footer {
  padding: 30px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 6, 8, 0.84);
  backdrop-filter: blur(12px);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-soft);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.privacy-main {
  padding: 28px 0 84px;
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 37, 0.92);
  box-shadow: var(--shadow-sm);
}

.privacy-card h2 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.privacy-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.84;
}

.privacy-card a {
  color: var(--accent-lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@media (max-width: 1220px) {
  .hero-layout,
  .process-layout,
  .download-box,
  .guide-highlight {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .feature-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-wide {
    grid-column: auto;
  }

  .process-copy {
    position: relative;
    top: auto;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .phone-card,
  .floating-note {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none !important;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(5, 6, 8, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .dual-media,
  .guide-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .section {
    padding: 74px 0;
  }

  .hero-copy h1,
  .statement h2,
  .section-head h2,
  .process-copy h2,
  .download-copy h2 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 4.1rem);
  }

  .statement,
  .feature-card,
  .process-item,
  .preview-shell,
  .showcase-card,
  .guide-highlight,
  .slider-shell,
  .review-card,
  .download-box,
  .privacy-card {
    border-radius: 24px;
  }

  .slider-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .privacy-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
