:root {
  --red: #ed3638;
  --red-dark: #c82024;
  --red-soft: #fff0f0;
  --red-glow: rgba(237, 54, 56, 0.34);

  --ink: #10101d;
  --ink-soft: #212232;
  --muted: #737684;
  --muted-light: #a3a6b3;

  --white: #ffffff;
  --off: #fafafa;
  --card: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.56);
  --line: rgba(16, 16, 29, 0.1);

  --shadow: 0 34px 90px rgba(18, 18, 30, 0.12);
  --shadow-red: 0 34px 90px rgba(237, 54, 56, 0.24);

  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 10% 6%, rgba(237, 54, 56, 0.14), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(237, 54, 56, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 42%, #fff7f7 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.045;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-glow {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(130px);
  z-index: -2;
}

.page-glow-one {
  left: -230px;
  top: -190px;
  background: rgba(237, 54, 56, 0.22);
}

.page-glow-two {
  right: -260px;
  bottom: -230px;
  background: rgba(237, 54, 56, 0.18);
}

.cursor-light {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(237, 54, 56, 0.18), transparent 66%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  padding: 0 6%;
  z-index: 1000;
  transition: transform 0.35s ease;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 78px;
  padding: 13px 16px 13px 18px;
  border: 1px solid rgba(237, 54, 56, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(28px);
  box-shadow: 0 24px 70px rgba(18, 18, 30, 0.1);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #ff6567);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(237, 54, 56, 0.26);
}

.brand-icon span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 5px solid var(--white);
  border-left-color: transparent;
  transform: rotate(45deg);
}

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

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.nav-cta,
.primary-btn,
.back-btn {
  background: linear-gradient(135deg, var(--red), #ff5759);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(237, 54, 56, 0.25);
}

.primary-btn span {
  margin-left: 9px;
}

.nav-cta:hover,
.primary-btn:hover,
.back-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 66px rgba(237, 54, 56, 0.34);
}

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

.secondary-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 54, 56, 0.35);
  background: var(--red-soft);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 17px;
  background: var(--red-soft);
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--red);
  border-radius: 999px;
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 6% 100px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
}

.hero-bg-line {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -100px;
  height: 260px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(
    90deg,
    rgba(237, 54, 56, 0.06),
    rgba(237, 54, 56, 0.14)
  );
  filter: blur(6px);
  animation: wave 8s ease-in-out infinite alternate;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(237, 54, 56, 0.65);
}

h1,
h2 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(52px, 8vw, 98px);
  line-height: 0.92;
}

.hero p {
  max-width: 650px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

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

.hero-metrics {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
}

.hero-metrics div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(18, 18, 30, 0.06);
}

.hero-metrics strong {
  display: block;
  font-size: 28px;
  color: var(--red);
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-visual {
  min-height: 720px;
  perspective: 1200px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 44px;
  background: var(--white);
  border: 1px solid rgba(237, 54, 56, 0.13);
  box-shadow:
    0 38px 90px rgba(18, 18, 30, 0.18),
    0 0 80px rgba(237, 54, 56, 0.16);
}

.phone-main {
  width: 330px;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  animation: floatMain 6s ease-in-out infinite;
}

.phone-left {
  width: 240px;
  top: 18%;
  left: 3%;
  opacity: 0.72;
  transform: rotate(-9deg);
  z-index: 3;
}

.phone-right {
  width: 240px;
  right: 2%;
  bottom: 13%;
  opacity: 0.75;
  transform: rotate(9deg);
  z-index: 3;
}

.floating-badge {
  position: absolute;
  z-index: 8;
  min-width: 145px;
  padding: 15px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(237, 54, 56, 0.13);
  box-shadow: 0 20px 60px rgba(18, 18, 30, 0.11);
  backdrop-filter: blur(18px);
}

.floating-badge span {
  display: block;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
}

.floating-badge strong {
  color: var(--red);
  font-weight: 900;
}

.badge-one {
  top: 145px;
  left: 0;
}

.badge-two {
  right: 10px;
  top: 235px;
}

.badge-three {
  left: 70px;
  bottom: 170px;
}

.marquee {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 55px;
  padding: 26px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(16, 16, 29, 0.42);
  text-transform: uppercase;
}

.section {
  padding: 118px 6%;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-head h2,
.experience-copy h2,
.panel-copy h2,
.review-intro h2,
.cta-card h2,
.privacy-card h1 {
  margin-top: 16px;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 0.98;
}

.section-head p,
.experience-copy p,
.panel-copy p,
.review-intro p,
.cta-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.workflow-card,
.review-card,
.metric-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 54, 56, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(18, 18, 30, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hover-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(237, 54, 56, 0.14),
    transparent 36%
  );
  transition: opacity 0.25s ease;
}

.hover-card:hover::before {
  opacity: 1;
}

.feature-card:hover,
.workflow-card:hover,
.review-card:hover,
.metric-card:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 54, 56, 0.34);
  box-shadow: var(--shadow-red);
}

.feature-card {
  min-height: 300px;
  padding: 32px;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(237, 54, 56, 0.22);
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.feature-icon {
  position: relative;
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.feature-card h3,
.workflow-card h3 {
  position: relative;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.feature-card p,
.workflow-card p,
.review-card p {
  position: relative;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.experience-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 74px;
  align-items: center;
}

.experience-list {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.experience-list div {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(18, 18, 30, 0.06);
}

.experience-list strong,
.experience-list span {
  display: block;
}

.experience-list strong {
  color: var(--red);
}

.experience-list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.experience-phone-wrap {
  min-height: 690px;
  border-radius: 54px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(237, 54, 56, 0.16),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass-ring {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(237, 54, 56, 0.18);
  box-shadow:
    inset 0 0 60px rgba(237, 54, 56, 0.12),
    0 0 80px rgba(237, 54, 56, 0.12);
  animation: rotateRing 18s linear infinite;
}

.experience-phone {
  position: relative;
  width: 305px;
  z-index: 3;
}

.preview-section {
  overflow: hidden;
}

.screen-showcase {
  max-width: 1080px;
  height: 740px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 56px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(237, 54, 56, 0.16),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.screen-stage {
  height: 100%;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.screen-item {
  position: absolute;
  width: 306px;
  border-radius: 42px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(140px) scale(0.78) rotateY(-16deg);
  border: 1px solid rgba(237, 54, 56, 0.13);
  box-shadow:
    0 38px 90px rgba(18, 18, 30, 0.16),
    0 0 70px rgba(237, 54, 56, 0.13);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screen-item.active {
  z-index: 5;
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
}

.screen-item.prev-screen {
  opacity: 0.32;
  transform: translateX(-245px) scale(0.76) rotateY(18deg) rotate(-5deg);
}

.screen-item.next-screen {
  opacity: 0.32;
  transform: translateX(245px) scale(0.76) rotateY(-18deg) rotate(5deg);
}

.screen-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--red);
  font-size: 42px;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(18, 18, 30, 0.1);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.screen-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.screen-prev {
  left: 30px;
}

.screen-next {
  right: 30px;
}

.screen-caption {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  min-width: 230px;
  padding: 15px 24px;
  border-radius: 999px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(18, 18, 30, 0.08);
  backdrop-filter: blur(18px);
}

.screen-caption span {
  display: block;
  color: var(--muted-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.screen-caption strong {
  display: block;
  margin-top: 4px;
  color: var(--red);
}

.workflow-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.workflow-card {
  padding: 30px;
  display: grid;
  grid-template-columns: 90px 280px 1fr;
  gap: 30px;
  align-items: center;
}

.workflow-card span {
  position: relative;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
}

.premium-panel {
  max-width: 1260px;
  margin: 0 auto;
  padding: 58px;
  border-radius: 56px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 86% 10%,
      rgba(237, 54, 56, 0.16),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.metric-card {
  padding: 30px;
  min-height: 160px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 20px;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.reviews-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  min-height: 245px;
  padding: 30px;
}

.review-card span {
  position: relative;
  display: block;
  margin-top: 24px;
  color: var(--red);
  font-weight: 900;
}

.cta-card {
  max-width: 1260px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 56px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(255, 255, 255, 0.42),
      transparent 30%
    ),
    linear-gradient(135deg, #ed3638, #ff6062);
  color: var(--white);
  box-shadow: var(--shadow-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.cta-card .section-label,
.cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card h2 {
  color: var(--white);
}

.cta-card p {
  max-width: 720px;
}

.cta-card .primary-btn {
  color: var(--red);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.footer {
  padding: 76px 6% 32px;
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid var(--line);
}

.footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 44px;
}

.footer p {
  max-width: 450px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1260px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.privacy-main {
  padding: 150px 6% 94px;
}

.privacy-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 48px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(237, 54, 56, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.privacy-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.privacy-text p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
  white-space: pre-line;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes floatMain {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes wave {
  0% {
    transform: translateX(-4%) skewY(-2deg);
  }

  100% {
    transform: translateX(4%) skewY(2deg);
  }
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(1.04);
  }
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 86px;
    left: 6%;
    right: 6%;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    display: grid;
  }

  .nav-links.open a {
    padding: 16px;
  }

  .hero,
  .experience-grid,
  .premium-panel,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 650px;
  }

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

  .workflow-card {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 142px 5% 72px;
  }

  .section {
    padding: 86px 5%;
  }

  .hero-metrics,
  .feature-grid,
  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-main {
    width: 250px;
  }

  .phone-left,
  .phone-right {
    width: 178px;
    opacity: 0.26;
  }

  .floating-badge {
    display: none;
  }

  .experience-phone-wrap {
    min-height: 575px;
  }

  .experience-phone {
    width: 255px;
  }

  .screen-showcase {
    height: 600px;
  }

  .screen-item {
    width: 250px;
  }

  .screen-item.prev-screen,
  .screen-item.next-screen {
    opacity: 0;
  }

  .screen-btn {
    top: auto;
    bottom: 24px;
  }

  .screen-prev {
    left: calc(50% - 74px);
  }

  .screen-next {
    right: calc(50% - 74px);
  }

  .screen-caption {
    display: none;
  }

  .premium-panel,
  .cta-card,
  .privacy-card {
    padding: 30px;
  }

  .privacy-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}
