:root {
  --ink: #0b1730;
  --ink-soft: #132443;
  --navy: #0d1b35;
  --navy-2: #102a59;
  --blue: #2588f5;
  --blue-strong: #0f6fe5;
  --cyan: #48d9ff;
  --green: #45e6a4;
  --amber: #f7b955;
  --rose: #ff7d9b;
  --text: #12213d;
  --muted: #64738a;
  --muted-light: #aebbd0;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --page: #edf3f9;
  --line: rgba(16, 36, 67, 0.09);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 32px rgba(10, 29, 58, 0.08);
  --shadow-md: 0 24px 65px rgba(10, 29, 58, 0.13);
  --shadow-lg: 0 38px 110px rgba(7, 25, 54, 0.22);
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --radius-xl: 52px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 10%, rgba(37, 136, 245, 0.10), transparent 26rem),
    radial-gradient(circle at 94% 22%, rgba(69, 230, 164, 0.08), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, var(--page) 48%, #f7faff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(13, 27, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 53, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.container {
  width: min(1200px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(247, 250, 254, 0.78);
  box-shadow: 0 8px 32px rgba(9, 27, 54, 0.04);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(25, 118, 224, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #5c6b80;
  font-size: 0.93rem;
  font-weight: 750;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--blue-strong);
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(37, 136, 245, 0.15);
  border-radius: 14px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 14px 30px rgba(37, 136, 245, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 136, 245, 0.30);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(37, 136, 245, 0.14);
  border-radius: 999px;
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(15, 49, 91, 0.06);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 0 5px rgba(69, 230, 164, 0.12);
}

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

.section-title.left {
  margin: 0;
  text-align: left;
}

.section-title h2,
.cta h2 {
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.7vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-title p,
.cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Home hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 78px 0 92px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 24%, rgba(72, 217, 255, 0.22), transparent 27rem),
    radial-gradient(circle at 7% 88%, rgba(69, 230, 164, 0.13), transparent 24rem),
    linear-gradient(135deg, #07152d 0%, #0b2147 52%, #103a74 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(circle at 76% 42%, black, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -210px;
  top: -250px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(255, 255, 255, 0.025),
    0 0 0 148px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(450px, 1.02fr);
  align-items: center;
  gap: 66px;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 665px;
}

.hero .eyebrow,
.analytics .eyebrow,
.cta .eyebrow,
.privacy-hero .eyebrow,
.support-hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  color: #d8edff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 720px;
  margin: 23px 0 22px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: #b9c9de;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

.hero p strong {
  color: #fff;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 178px;
  min-height: 60px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  font-weight: 850;
  line-height: 1.05;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: rgba(72, 217, 255, 0.46);
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.23);
}

.store-button.outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.store-button small {
  display: block;
  margin-bottom: 4px;
  color: inherit;
  font-size: 0.67rem;
  font-weight: 650;
  opacity: 0.70;
}

.store-icon {
  font-size: 1.9rem;
  line-height: 1;
}

.play-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #41d67d 0 34%, #48d9ff 35% 62%, #ffd14a 63% 82%, #ff6b6b 83%);
  clip-path: polygon(7% 0, 100% 50%, 7% 100%);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.mini-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #c3d1e3;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.hero-orbit {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 58px;
  border: 1px dashed rgba(72, 217, 255, 0.18);
}

.hero-orbit::after {
  width: 14px;
  height: 14px;
  top: 84px;
  right: 34px;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(69, 230, 164, 0.12), 0 0 38px rgba(69, 230, 164, 0.58);
}

.phone-card {
  position: relative;
  z-index: 3;
  width: min(350px, 74%);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 47px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(209, 225, 245, 0.75));
  box-shadow: var(--shadow-lg);
  transform: rotateY(-5deg) rotateX(1deg);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 39px;
}

.phone-card img {
  width: 100%;
  border-radius: 39px;
}

.phone-card-secondary {
  position: absolute;
  right: -4px;
  bottom: 38px;
  z-index: 1;
  width: 218px;
  opacity: 0.68;
  filter: saturate(0.92);
  transform: rotate(9deg) translateZ(-40px);
}

.phone-card-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 39px;
  background: linear-gradient(90deg, rgba(13, 33, 71, 0.34), transparent 65%);
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 178px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 19px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 24px 58px rgba(4, 20, 44, 0.22);
  backdrop-filter: blur(18px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.24rem;
  letter-spacing: -0.035em;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-card.one {
  left: -10px;
  top: 15%;
}

.floating-card.two {
  right: 2px;
  bottom: 16%;
  animation-delay: -2.4s;
}

.trusted {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 96px;
  margin-top: -42px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.trusted p {
  max-width: 310px;
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
}

.trusted div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.trusted strong {
  padding: 9px 13px;
  border: 1px solid rgba(13, 27, 53, 0.065);
  border-radius: 999px;
  color: #637188;
  background: #f7f9fc;
  font-size: 0.78rem;
  font-weight: 750;
}

/* Sections */
.pricing,
.features,
.analytics,
.screens,
.testimonials,
.faq,
.cta {
  position: relative;
  padding: 98px 0;
}

.pricing {
  padding-top: 112px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 44px;
}

.pricing-card {
  position: relative;
  isolation: isolate;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.pricing-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 250px;
  height: 250px;
  right: -105px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(37, 136, 245, 0.10);
}

.pricing-card.free {
  display: flex;
  flex-direction: column;
}

.pricing-card.premium {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 92% 8%, rgba(72, 217, 255, 0.20), transparent 16rem),
    linear-gradient(145deg, #091a36 0%, #103267 100%);
  box-shadow: 0 32px 82px rgba(8, 26, 55, 0.25);
}

.pricing-card.premium::before {
  background: rgba(69, 230, 164, 0.13);
}

.plan-badge,
.best-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(37, 136, 245, 0.12);
  border-radius: 999px;
  color: var(--blue-strong);
  background: #edf6ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.premium-badge {
  border-color: rgba(69, 230, 164, 0.20);
  color: var(--green);
  background: rgba(69, 230, 164, 0.11);
}

.best-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border-color: transparent;
  color: #082b25;
  background: linear-gradient(135deg, var(--green), #77f5c1);
  box-shadow: 0 12px 28px rgba(69, 230, 164, 0.22);
}

.plan-head h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.premium .plan-head h3 {
  color: #fff;
}

.plan-head p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.67;
}

.premium .plan-head p {
  color: #aebed3;
}

.price {
  margin: 30px 0 24px;
  color: var(--ink);
  font-size: 3.55rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 30px 0 24px;
}

.price-box {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.075);
}

.price-box.highlight {
  border-color: rgba(69, 230, 164, 0.24);
  background: rgba(69, 230, 164, 0.11);
}

.price-box small {
  display: block;
  margin-bottom: 8px;
  color: #9fb0c7;
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-box strong {
  font-size: clamp(1.6rem, 3.3vw, 2.3rem);
  letter-spacing: -0.055em;
}

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

.plan-list.two-columns {
  grid-template-columns: 1fr 1fr;
}

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: #617087;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.45;
}

.premium .plan-list li {
  color: #d0dbea;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  color: #0eac78;
  background: rgba(69, 230, 164, 0.15);
  font-size: 0.74rem;
  font-weight: 900;
}

.plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 18px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 18px 38px rgba(37, 136, 245, 0.27);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-button:hover,
.plan-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(37, 136, 245, 0.34);
}

.plan-button.secondary {
  border: 1px solid rgba(13, 27, 53, 0.08);
  color: var(--ink) !important;
  background: #f8faff;
  box-shadow: none;
}

.trial-note {
  margin: 15px 0 0;
  color: #94a7c0;
  font-size: 0.86rem;
  font-weight: 650;
  text-align: center;
}

.features {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

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

.feature-card,
.testimonial {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -75px;
  top: -75px;
  border-radius: 50%;
  background: rgba(37, 136, 245, 0.08);
  transition: transform 240ms ease;
}

.feature-card:hover,
.feature-card:focus-within,
.testimonial:hover {
  border-color: rgba(37, 136, 245, 0.16);
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::after {
  transform: scale(1.35);
}

.feature-card > span,
.support-cards article > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(37, 136, 245, 0.11);
  border-radius: 18px;
  color: var(--blue-strong);
  background: linear-gradient(145deg, #edf7ff, #e4f1ff);
  box-shadow: inset 0 1px #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card h3,
.testimonial h3 {
  margin: 22px 0 9px;
  color: var(--ink);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.testimonial p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.analytics {
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(72, 217, 255, 0.18), transparent 25rem),
    radial-gradient(circle at 4% 90%, rgba(69, 230, 164, 0.10), transparent 25rem),
    linear-gradient(135deg, #07152d, #0d2a58);
}

.analytics::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 60px;
}

.analytics .section-title h2 {
  color: #fff;
}

.analytics .section-title p {
  color: #aebed4;
}

.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.chart-card {
  min-height: 218px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.chart-card.large {
  grid-column: 1 / -1;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #aebed3;
  font-size: 0.83rem;
  font-weight: 750;
}

.chart-head strong {
  color: var(--green);
  font-size: 0.98rem;
}

.line-chart {
  position: relative;
  height: 162px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 19px;
  background: linear-gradient(180deg, rgba(37, 136, 245, 0.10), rgba(37, 136, 245, 0.01));
}

.line-chart::before {
  content: "";
  position: absolute;
  inset: 10px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 46px 38px;
}

.line-chart i {
  position: absolute;
  right: 22px;
  bottom: 31px;
  left: 22px;
  height: 76px;
  border-top: 5px solid var(--cyan);
  border-right: 5px solid var(--cyan);
  border-radius: 0 60px 0 0;
  filter: drop-shadow(0 8px 12px rgba(72, 217, 255, 0.28));
  transform: skewX(-18deg);
}

.donut {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 23px auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 44%, var(--green) 44% 68%, var(--amber) 68% 82%, rgba(255, 255, 255, 0.12) 82%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 29px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  background: #102a57;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 142px;
  margin-top: 23px;
}

.bars i {
  flex: 1;
  min-width: 10px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(37, 136, 245, 0.16);
}

.bars i:nth-child(1) { height: 36%; }
.bars i:nth-child(2) { height: 58%; }
.bars i:nth-child(3) { height: 42%; }
.bars i:nth-child(4) { height: 78%; }
.bars i:nth-child(5) { height: 64%; }

.screens {
  overflow: hidden;
}

.screen-carousel {
  position: relative;
}

.screen-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 18px 8px 38px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.screen-track::-webkit-scrollbar {
  display: none;
}

.screen-track img {
  width: 286px;
  flex: 0 0 286px;
  scroll-snap-align: center;
  border: 7px solid rgba(255, 255, 255, 0.95);
  border-radius: 41px;
  box-shadow: 0 25px 65px rgba(10, 29, 58, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screen-track img:nth-child(even) {
  transform: translateY(16px);
}

.screen-track img:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 32px 82px rgba(10, 29, 58, 0.24);
}

.screen-track img:nth-child(even):hover {
  transform: translateY(8px) scale(1.015);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 0 4px;
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  color: #fff;
  background: var(--blue);
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }

.testimonials {
  background: rgba(255, 255, 255, 0.48);
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-height: 255px;
}

.testimonial::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 8px;
  color: rgba(37, 136, 245, 0.12);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  font-size: 1.01rem;
}

.testimonial strong {
  margin-top: 26px;
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial span {
  margin-top: 4px;
  color: #8a97a9;
  font-size: 0.82rem;
  font-weight: 650;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 64px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 1.15rem;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: -4px 0 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.68;
}

.cta {
  padding-top: 82px;
}

.cta-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 45px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(72, 217, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #07152d, #0e3470);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  left: -190px;
  bottom: -220px;
  border: 52px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.cta-card > img {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 29px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.cta h2 {
  max-width: 700px;
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.cta p {
  color: #aebed4;
  font-size: 1rem;
}

.cta .store-buttons {
  flex-direction: column;
  margin-top: 0;
}

.cta .store-button {
  min-width: 190px;
}

/* Privacy */
.privacy-hero,
.support-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(72, 217, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 6% 88%, rgba(69, 230, 164, 0.10), transparent 22rem),
    linear-gradient(135deg, #07152d, #0e3470);
}

.privacy-hero::before,
.support-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 28px 28px;
}

.privacy-hero {
  padding: 90px 0 86px;
}

.privacy-wrap {
  position: relative;
  max-width: 900px;
}

.privacy-wrap::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 5px;
  width: 265px;
  height: 265px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.018);
}

.privacy-hero h1,
.support-copy h1 {
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(2.85rem, 6.5vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: -0.073em;
}

.privacy-lead,
.support-copy > p {
  max-width: 780px;
  margin-bottom: 0;
  color: #bac9dc;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.76;
}

.privacy-lead strong {
  color: #fff;
}

.updated {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 24px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #b9c9dd;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
}

.privacy-section {
  padding: 78px 0 104px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.privacy-menu {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.privacy-menu::before {
  content: "Nesta página";
  padding: 7px 11px 11px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-menu a {
  padding: 11px 12px;
  border-radius: 12px;
  color: #64738a;
  font-size: 0.86rem;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.privacy-menu a:hover,
.privacy-menu a:focus-visible {
  color: var(--blue-strong);
  background: #edf6ff;
  transform: translateX(3px);
}

.privacy-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.privacy-card h2 {
  position: relative;
  margin: 50px 0 15px;
  padding-top: 30px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.privacy-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.privacy-card h2:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 27, 53, 0.12), transparent);
}

.privacy-card p {
  margin-bottom: 16px;
  color: #5f6e84;
  font-size: 1rem;
  line-height: 1.82;
}

.privacy-card a {
  color: var(--blue-strong);
  font-weight: 800;
}

.privacy-note {
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(37, 136, 245, 0.12);
  border-radius: 17px;
  color: #4f6280;
  background: #edf6ff;
  line-height: 1.65;
}

/* Support */
.support-hero {
  padding: 84px 0 78px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: start;
  gap: 56px;
}

.support-copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  padding-top: 34px;
}

.support-copy > p {
  max-width: 610px;
}

.support-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.support-pills span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #c5d3e5;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.8rem;
  font-weight: 700;
}

.support-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 34px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 38px 90px rgba(1, 15, 37, 0.30);
  backdrop-filter: blur(20px);
}

.support-form::before {
  content: "Envie sua mensagem";
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 880;
  letter-spacing: -0.035em;
}

.support-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 27, 53, 0.10);
  border-radius: 15px;
  outline: none;
  color: var(--ink);
  background: #f5f8fc;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.support-form input,
.support-form select {
  min-height: 53px;
  padding: 0 15px;
}

.support-form textarea {
  min-height: 154px;
  padding: 15px;
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #9aa6b7;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(37, 136, 245, 0.48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 136, 245, 0.10);
}

.support-form .support-submit {
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 18px 40px rgba(37, 136, 245, 0.29);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support-form .support-submit:hover:not(:disabled),
.support-form .support-submit:focus-visible:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(37, 136, 245, 0.36);
}

.support-small {
  margin: -3px 0 0;
  color: #7b889b;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.support-info {
  padding: 88px 0 104px;
}

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

.support-cards article {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.support-cards article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.support-cards h2 {
  margin: 20px 0 9px;
  color: var(--ink);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.support-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.support-cards a {
  color: var(--blue-strong);
  font-weight: 800;
}

.support-phone-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) 1fr;
  gap: 14px;
  align-items: end;
}

.support-phone-grid label {
  margin: 0;
}

.support-optional {
  display: inline-block;
  margin-left: 5px;
  color: #8794a7;
  font-size: 0.72rem;
  font-weight: 650;
}

/* Footer */
.footer-modern {
  margin-top: 0;
  padding: 66px 0 24px;
  color: #aebbd0;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 136, 245, 0.17), transparent 24rem),
    linear-gradient(145deg, #07152d, #0b2147);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.36fr 0.72fr 0.86fr 0.86fr;
  align-items: start;
  gap: 38px;
}

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

.footer-brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 870;
  letter-spacing: -0.03em;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: #8fa1ba;
  font-size: 0.83rem;
}

.footer-brand-block > p,
.footer-download p {
  max-width: 410px;
  margin-bottom: 0;
  color: #96a7bd;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: #b9c9dc;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.73rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.87rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column a {
  color: #9fafc4;
  font-size: 0.87rem;
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-store {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.footer-store + .footer-store {
  color: #0b2147 !important;
  background: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: #8294ad;
  font-size: 0.82rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-bottom a {
  color: #aebed2;
  font-size: 0.82rem;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 20px 48px rgba(37, 136, 245, 0.36);
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 100ms;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.035); opacity: 1; }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 36px;
  }

  .phone-card-secondary {
    right: -28px;
  }

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

  .cta .store-buttons {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }

  .support-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 38px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 32px, 760px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .privacy-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(22px);
  }

  .nav-links.open,
  .privacy-nav.open {
    display: flex !important;
  }

  .nav-links > a:not(.nav-cta) {
    padding: 12px 13px;
    border-radius: 12px;
  }

  .nav-links > a:not(.nav-cta):hover {
    background: #f1f6fc;
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 5px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 86px;
  }

  .hero-grid,
  .analytics-grid,
  .faq-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section-title.left,
  .support-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero p,
  .section-title.left p,
  .support-copy > p {
    margin-inline: auto;
  }

  .store-buttons,
  .mini-proof,
  .support-pills {
    justify-content: center;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 8px;
  }

  .phone-card {
    width: min(345px, 68vw);
  }

  .phone-card-secondary {
    right: 7%;
  }

  .floating-card.one {
    left: 5%;
  }

  .floating-card.two {
    right: 4%;
  }

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

  .trusted p {
    max-width: none;
  }

  .trusted div {
    justify-content: flex-start;
  }

  .pricing-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

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

  .analytics .section-title.left {
    margin-bottom: 42px;
  }

  .privacy-menu {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;
  }

  .privacy-menu::-webkit-scrollbar {
    display: none;
  }

  .privacy-menu::before {
    display: none;
  }

  .privacy-menu a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .support-copy {
    position: static;
    padding-top: 0;
  }

  .support-form {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1,
  .privacy-hero h1,
  .support-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.1rem);
  }

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

  .hero-orbit {
    width: 390px;
    height: 390px;
  }

  .phone-card {
    width: min(292px, 72vw);
    border-radius: 40px;
  }

  .phone-card img,
  .phone-card::before,
  .phone-card-secondary::after {
    border-radius: 33px;
  }

  .phone-card-secondary {
    right: -1%;
    bottom: 35px;
    width: 168px;
  }

  .floating-card {
    min-width: 148px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .floating-card strong {
    font-size: 1.05rem;
  }

  .floating-card.one {
    left: 0;
    top: 12%;
  }

  .floating-card.two {
    right: 0;
    bottom: 11%;
  }

  .trusted {
    margin-top: -34px;
    padding: 20px;
    border-radius: 22px;
  }

  .pricing,
  .features,
  .analytics,
  .screens,
  .testimonials,
  .faq,
  .cta {
    padding: 74px 0;
  }

  .pricing {
    padding-top: 94px;
  }

  .pricing-card,
  .support-form,
  .privacy-card {
    padding: 25px;
    border-radius: 27px;
  }

  .best-badge {
    position: static;
    margin-bottom: 16px;
  }

  .price-row,
  .plan-list.two-columns,
  .charts,
  .feature-grid,
  .testimonial-grid,
  .support-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .testimonial,
  .support-cards article {
    padding: 25px;
  }

  .screen-track {
    gap: 15px;
    padding-inline: 25px;
  }

  .screen-track img {
    width: 242px;
    flex-basis: 242px;
    border-radius: 35px;
  }

  .carousel-btn {
    display: none;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    border-radius: 30px;
    text-align: center;
  }

  .cta-card > img {
    width: 82px;
    height: 82px;
    margin-inline: auto;
    border-radius: 24px;
  }

  .cta .store-buttons {
    grid-column: auto;
    flex-direction: column;
  }

  .cta .store-button {
    width: 100%;
  }

  .privacy-hero,
  .support-hero {
    padding: 66px 0;
  }

  .privacy-wrap::after {
    display: none;
  }

  .privacy-section,
  .support-info {
    padding: 62px 0 78px;
  }

  .support-phone-grid {
    grid-template-columns: 1fr;
  }

  .footer-modern {
    padding-top: 52px;
  }

  .footer-brand-block {
    grid-column: auto;
  }

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

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
