:root {
  --bg-main: #071520;
  --bg-dark: #051019;
  --bg-card: rgba(8, 20, 31, 0.78);
  --bg-card-strong: rgba(10, 19, 29, 0.92);
  --bg-soft: rgba(255, 255, 255, 0.08);
  --bg-white-card: rgba(255, 255, 255, 0.9);

  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --text-dim: rgba(255, 255, 255, 0.52);
  --text-dark: #101010;
  --text-dark-soft: rgba(16, 16, 16, 0.76);

  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);

  --yellow-main: #ffd400;
  --yellow-deep: #f0b000;
  --lime: #e9ff98;
  --teal: #44d0d8;
  --orange: #f0a000;

  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 14px 28px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.12);

  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --radius-xl: 44px;

  --container: min(1180px, calc(100% - 48px));
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(rgba(4, 15, 24, 0.62), rgba(4, 15, 24, 0.82)),
    url('photo1(3).jpeg') center center / cover fixed no-repeat;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 212, 0, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 84% 80%,
      rgba(68, 208, 216, 0.15),
      transparent 24%
    );
  pointer-events: none;
  z-index: -2;
}

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

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.page-blur-one {
  width: 300px;
  height: 300px;
  top: 80px;
  left: -70px;
  background: rgba(255, 212, 0, 0.14);
}

.page-blur-two {
  width: 340px;
  height: 340px;
  bottom: -40px;
  right: -40px;
  background: rgba(68, 208, 216, 0.14);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.12), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.section {
  position: relative;
  padding: 120px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-main);
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.9);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h1,
.section-head h2 {
  margin: 18px 0 14px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 16, 25, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.logo-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 24px;
  background: linear-gradient(145deg, var(--yellow-main), var(--yellow-deep));
  box-shadow: 0 12px 24px rgba(255, 212, 0, 0.18);
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-text strong {
  font-size: 15px;
  line-height: 1.1;
}

.logo-text small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-dim);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-main), var(--teal));
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--yellow-main), var(--yellow-deep));
  box-shadow: 0 16px 30px rgba(255, 212, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 34px rgba(255, 212, 0, 0.28);
}

.btn-secondary {
  color: var(--text-main);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
  min-height: 62px;
  padding-inline: 30px;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: rgba(6, 16, 24, 0.96);
  border-top: 1px solid var(--line-soft);
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 420px;
}

.mobile-menu-inner {
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  padding: 10px 0;
  font-weight: 600;
}

.mobile-download {
  margin-top: 8px;
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, var(--yellow-main), var(--yellow-deep));
}

.hero {
  padding-top: 88px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  color: var(--yellow-main);
}

.hero-text {
  margin: 0;
  max-width: 660px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}

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

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

.mini-stat {
  min-height: 134px;
  padding: 20px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mini-stat strong {
  display: block;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
}

.mini-stat span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

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

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-back {
  width: 320px;
  height: 650px;
  top: 30px;
  right: 36px;
  transform: rotate(8deg);
  z-index: 1;
}

.hero-card-front {
  width: 350px;
  height: 690px;
  left: 20px;
  bottom: 20px;
  transform: rotate(-5deg);
  z-index: 2;
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(9, 19, 29, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow-main);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-note strong {
  font-size: 15px;
  line-height: 1.45;
}

.note-a {
  top: 74px;
  left: -14px;
}

.note-b {
  right: -4px;
  bottom: 44px;
}

.hero-marquee {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-marquee-track {
  width: max-content;
  display: flex;
  gap: 52px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.hero-marquee-track span {
  color: var(--text-soft);
  white-space: nowrap;
  font-weight: 700;
}

.hero-marquee-track span::before {
  content: '•';
  margin-right: 12px;
  color: var(--yellow-main);
}

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

.feature,
.feature-large,
.tabs-box,
.comparison-card,
.review-card,
.cta-panel,
.privacy-card,
.accordion-box {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.feature,
.feature-large,
.tabs-box,
.accordion-box,
.comparison-card,
.review-card,
.cta-panel,
.privacy-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feature,
.feature-large,
.comparison-card,
.review-card,
.privacy-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature:hover,
.feature-large:hover,
.comparison-card:hover,
.review-card:hover,
.privacy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 0, 0.26);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.feature-large,
.feature {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
}

.feature-large {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 0;
}

.feature {
  grid-column: span 4;
}

.feature-media {
  overflow: hidden;
}

.feature-large .feature-media {
  min-height: 100%;
}

.shot {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 0;
}

.shot img {
  transition: transform 0.8s ease;
}

.shot:hover img {
  transform: scale(1.05);
}

.feature-large .feature-media img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 1.1 / 1;
}

.feature .feature-media img {
  aspect-ratio: 9 / 17.3;
  object-fit: cover;
}

.feature-copy {
  padding: 24px;
}

.feature-large .feature-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-tag {
  background: rgba(255, 212, 0, 0.16);
  color: var(--yellow-main);
}

.feature-tag.soft {
  background: rgba(255, 255, 255, 0.12);
}

.feature-copy h3,
.tab-text h3,
.comparison-card h3,
.cta-panel-copy h3 {
  margin: 16px 0 12px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-large .feature-copy h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.feature .feature-copy h3,
.comparison-card h3 {
  font-size: 1.55rem;
}

.feature-copy p,
.tab-text p,
.comparison-card p,
.review-card p,
.privacy-card p,
.cta-panel-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.78;
}

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

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-main), var(--teal));
  box-shadow: 0 0 16px rgba(255, 212, 0, 0.4);
}

.tabs-box {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.07);
}

.tabs-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.tab-btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 700;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.tab-btn.active {
  color: #111;
  background: linear-gradient(135deg, var(--yellow-main), var(--yellow-deep));
  box-shadow: 0 12px 24px rgba(255, 212, 0, 0.2);
}

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

.tabs-content {
  margin-top: 28px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.tab-text h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pill-row span {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.tab-media {
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.tab-media.single img {
  border-radius: 20px;
  aspect-ratio: 9 / 18.2;
  object-fit: cover;
}

.tab-media.double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tab-media.double img {
  border-radius: 20px;
  aspect-ratio: 9 / 18.2;
  object-fit: cover;
}

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

.comparison-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow-main);
}

.accordion-box {
  margin-top: 28px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.accordion-item {
  border-bottom: 1px solid var(--line-soft);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  min-height: 78px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
}

.accordion-trigger i {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow-main);
  transition: transform 0.3s ease;
}

.accordion-trigger i::after {
  transform: rotate(90deg);
}

.accordion-item.active .accordion-trigger i::after {
  transform: rotate(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-content {
  max-height: 220px;
}

.accordion-content p {
  margin: 0;
  padding: 0 16px 22px;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.review-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.stars {
  margin-bottom: 14px;
  color: var(--yellow-main);
  letter-spacing: 0.18em;
}

.review-author {
  margin-top: 18px;
  display: grid;
  gap: 4px;
}

.review-author strong {
  font-size: 15px;
}

.review-author span {
  color: var(--text-dim);
  font-size: 14px;
}

.cta-panel {
  margin-top: 30px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 212, 0, 0.18),
    rgba(68, 208, 216, 0.12)
  );
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-panel-copy h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer {
  padding: 30px 0 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links a:hover,
.footer-store:hover {
  color: var(--text-main);
  transform: translateY(-2px);
}

.image-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 300;
}

.image-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.image-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 28px));
  padding: 14px;
  border-radius: 30px;
  background: rgba(10, 20, 30, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.3);
}

.image-modal-dialog img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 9 / 18;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 212, 0, 0.16);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  z-index: 3;
}

.privacy-main {
  padding-bottom: 40px;
}

.privacy-section {
  padding-top: 92px;
}

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

.privacy-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
}

.privacy-card h2 {
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.45rem;
  line-height: 1.14;
}

.privacy-card p + p {
  margin-top: 12px;
}

.privacy-card a {
  color: var(--yellow-main);
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.18s linear;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .feature-large,
  .tab-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-column: span 6;
  }

  .comparison-grid,
  .reviews-grid,
  .privacy-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 92px 0;
  }

  .hero-stats,
  .comparison-grid,
  .reviews-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-column: span 12;
  }

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

  .hero-card-back {
    width: 250px;
    height: 520px;
    right: 10px;
  }

  .hero-card-front {
    width: 280px;
    height: 560px;
    left: 0;
  }

  .floating-note {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .logo-text strong,
  .logo-text small {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(100% - 24px, 1000px);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-actions,
  .cta-panel-actions,
  .privacy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card-back {
    width: 214px;
    height: 430px;
    top: 46px;
    right: 0;
  }

  .hero-card-front {
    width: 234px;
    height: 468px;
    left: 0;
    bottom: 18px;
  }

  .note-a,
  .note-b {
    display: none;
  }

  .feature-large,
  .feature,
  .tabs-box,
  .comparison-card,
  .review-card,
  .cta-panel,
  .privacy-card,
  .accordion-box,
  .footer-inner {
    border-radius: 24px;
  }

  .feature-copy p,
  .tab-text p,
  .comparison-card p,
  .review-card p,
  .privacy-card p,
  .hero-text,
  .section-head p {
    font-size: 15px;
    line-height: 1.74;
  }

  .tab-media.double {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
