/* ================================================================
   Smart Picks Hub — app.css
   Aesthetic: Extra-suggestion / sparkle pick
              highlighted autocomplete row · 4-point sparkles
   Palette:   from extension popup (#2563EB on #F7FAFF)
   Type:      Inter (same as popup)
================================================================ */

:root {
  --bg:                 #F7FAFF;
  --bg-alt:             #E8F1FE;
  --surface:            #FFFFFF;
  --surface-alt:        #F7FAFF;

  --accent:             #2563EB;
  --accent-2:           #60A5FA;
  --accent-dark:        #1D4ED8;
  --accent-light:       #BFDBFE;

  --text:               #102A43;
  --text-muted:         #6B7785;
  --text-soft:          #4A5A66;

  --border:             #BFDBFE;
  --border-subtle:      #E8F1FE;

  --gradient-brand:     linear-gradient(125deg, #2563EB 0%, #60A5FA 100%);
  --gradient-soft:      linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);

  --radius-card:        18px;
  --radius-pill:        999px;
  --shadow-sm:          0 2px 10px rgba(16, 42, 67, 0.06);
  --shadow-md:          0 14px 38px rgba(37, 99, 235, 0.14);

  --font-display:       'Inter', 'Segoe UI', Arial, sans-serif;
  --font-body:          'Inter', 'Segoe UI', Arial, sans-serif;
}

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

html { font-size: 10px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 0.6em;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  a:hover { color: var(--accent-dark); }
}

button { cursor: pointer; outline: 0; border: 0; background: none; font: inherit; color: inherit; }

::selection { background: rgba(37, 99, 235, 0.18); color: var(--text); }

/* ----------------------------------------------------------------
   Template-required selectors
---------------------------------------------------------------- */
.fullscreen {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 80px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.18;
  color: var(--text);
}
.title-big { font-size: 5.2rem; line-height: 1.1; }
.title-small { font-size: 3rem; }

.text {
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.btn,
.btn_main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  background-clip: padding-box;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
@media (hover: hover) {
  .btn:hover,
  .btn_main:hover {
    color: #FFFFFF;
    background: var(--accent-dark);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.34);
    transform: translateY(-2px);
    text-decoration: none;
  }
}

.btn_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .btn_ghost:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent);
    border-color: var(--accent-2);
    text-decoration: none;
  }
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.15em;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader .loader { filter: url(#goo); }
.page-loader .blobs { position: relative; width: 80px; height: 80px; }
.page-loader .blob,
.page-loader .blob-center {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%;
  left: 50%;
  margin: -10px;
}
.page-loader .blob-center {
  background: var(--accent-2);
  animation: blob-pulse 2.4s infinite ease-in-out;
}
.page-loader .blob:nth-child(2) { animation: blob-orbit 2.4s infinite ease-in-out 0.0s; }
.page-loader .blob:nth-child(3) { animation: blob-orbit 2.4s infinite ease-in-out 0.4s; }
.page-loader .blob:nth-child(4) { animation: blob-orbit 2.4s infinite ease-in-out 0.8s; }
.page-loader .blob:nth-child(5) { animation: blob-orbit 2.4s infinite ease-in-out 1.2s; }
.page-loader .blob:nth-child(6) { animation: blob-orbit 2.4s infinite ease-in-out 1.6s; }
.page-loader .blob:nth-child(7) { animation: blob-orbit 2.4s infinite ease-in-out 2.0s; }
@keyframes blob-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } }
@keyframes blob-orbit {
  0%, 100% { transform: translate(0, 0) scale(0.4); opacity: 0.6; }
  50%      { transform: translate(28px, -28px) scale(1); opacity: 1; }
}

.return-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.2s ease, visibility 0.3s ease;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3);
}
body.header-fixed .return-to-top,
.return-to-top.back-top { opacity: 1; visibility: visible; }
.return-to-top:hover { transform: translateY(-3px); color: #FFFFFF; }
.return-to-top__icon { width: 18px; height: 18px; display: block; }

/* ----------------------------------------------------------------
   Header
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.pix-header-fixed {
  background: rgba(247, 250, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(16, 42, 67, 0.06);
  padding: 12px 0;
}

.header-container { display: flex; align-items: center; justify-content: space-between; }
.header-inner    { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }

.site-mobile-logo { display: flex; align-items: center; }
.site-logo { display: none; }
.site-mobile-logo .logo { display: inline-flex; align-items: center; }
.site-mobile-logo img { height: 40px; width: auto; }
.site-mobile-logo .sticky-logo { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.menu-wrapper { display: flex; align-items: center; }

.site-main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-main-menu li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.site-main-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .site-main-menu li a:hover { color: var(--accent); }
  .site-main-menu li a:hover::after,
  .site-main-menu li a.active::after { transform: scaleX(1); }
}

.toggle-menu {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.toggle-menu .bar {
  display: block;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.close-menu { display: none; }

/* ----------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.hero {
  background: var(--gradient-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(96, 165, 250, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(37, 99, 235, 0.16) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero__sparkle {
  fill: var(--accent-2);
  opacity: 0.45;
}
.hero__sparkle--sm { opacity: 0.3; fill: var(--accent); }
.hero__sparkle--mid { opacity: 0.28; }

.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero__text { max-width: 560px; min-width: 0; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: #E8F1FE;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: none;
  background-clip: padding-box;
  margin-bottom: 22px;
}
.hero__eyebrow-spark {
  width: 10px;
  height: 10px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0 50%, 35% 35%);
}

.hero__title { margin-bottom: 18px; }
.hero__subtitle {
  font-size: 1.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero__subtitle strong { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  color: var(--text-muted);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__visual { position: relative; z-index: 2; min-width: 0; }

/* Autocomplete mock — signature ornament */
.ac-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.ac-mock__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.ac-mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.ac-mock__dot--r { background: #F87171; }
.ac-mock__dot--y { background: #FBBF24; }
.ac-mock__dot--g { background: #34D399; }

.ac-mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 18px 10px;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 14px;
  background: #FFFFFF;
  min-width: 0;
}
.ac-mock__search { flex-shrink: 0; }
.ac-mock__query {
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ac-mock__caret {
  width: 2px;
  height: 18px;
  background: var(--accent);
  animation: caret-blink 1.1s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.ac-mock__list {
  list-style: none;
  margin: 0 12px 16px;
  padding: 8px 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #FFFFFF;
}
.ac-mock__row {
  padding: 12px 18px;
  font-size: 1.55rem;
  color: var(--text-soft);
}
.ac-mock__row--pick {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 8px 8px;
  padding: 12px 14px;
  background: #F7FAFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
}
.ac-mock__mark { flex-shrink: 0; }
.ac-mock__pick-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-bottom: 0.15em;
}
.ac-mock__pick-text strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.ac-mock__pick-text span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

/* ----------------------------------------------------------------
   How it works
---------------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.howto {
  position: relative;
  padding: 110px 0 100px;
  background: var(--surface);
}
.howto__header { max-width: 760px; margin: 0 auto 56px; }
.howto__title { font-size: 4rem; line-height: 1.16; margin-bottom: 8px; }

.howto__row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: start;
  gap: 0;
}

.howto-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.howto-step__head {
  margin-bottom: 22px;
  padding: 0 6px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.howto-step__num {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #E8F1FE;
  border: none;
  background-clip: padding-box;
  border-radius: var(--radius-pill);
}
.howto-step__title {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.22;
  color: var(--text);
  margin: 0 0 10px;
}
.howto-step__desc {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.howto-step__visual {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howto-slide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.query-mock {
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
}
.query-mock__label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-align: left;
}
.query-mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  min-width: 0;
}
.query-mock__bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.howto-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(37, 99, 235, 0.5);
  align-self: center;
  margin-top: 60px;
}
.howto-arrow svg { width: 56px; height: 24px; display: block; }

/* ----------------------------------------------------------------
   Values as suggestion list
---------------------------------------------------------------- */
.values {
  padding: 100px 0;
  background: var(--bg);
}
.values__split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.values__title { font-size: 3.6rem; line-height: 1.16; margin-bottom: 16px; }

.sug-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.sug-list__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 22px;
  min-width: 0;
}
.sug-list__row + .sug-list__row { border-top: 1px solid var(--border-subtle); }
.sug-list__row--pick {
  margin: 4px 10px;
  padding: 16px 14px;
  background: #F7FAFF;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.sug-list__row--pick + .sug-list__row { border-top: 0; }
.sug-list__icon { flex-shrink: 0; margin-top: 2px; }
.sug-list__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-bottom: 0.15em;
}
.sug-list__body strong {
  font-size: 1.6rem;
  color: var(--text);
}
.sug-list__body span {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   Closer
---------------------------------------------------------------- */
.closer {
  padding: 80px 0 100px;
  background: var(--surface);
}
.closer__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closer__quote {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 28px;
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.footer {
  background: #102A43;
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 0;
  position: relative;
}
.footer-content { position: relative; z-index: 1; }
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo img { height: 40px; width: auto; }

.footer-menu .footer__title {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.footer-nav-wrapper { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-link {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}
@media (hover: hover) {
  .footer-link:hover { color: #FFFFFF; text-decoration: none; }
}

.footer-copyright {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 22px 0 26px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ----------------------------------------------------------------
   Inner pages
---------------------------------------------------------------- */
.inner-page {
  padding: 160px 0 100px;
  background: var(--gradient-soft);
  min-height: 80vh;
  position: relative;
}
.inner-page .main-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.inner-page > .container { position: relative; z-index: 1; }
.inner-page .title { margin-bottom: 16px; }
.inner-page p { color: var(--text-muted); font-size: 1.7rem; margin-bottom: 28px; }
.inner-page img { margin: 30px auto; max-width: 460px; }
.inner-page .btn { margin-top: 8px; }
.uninstall-image { max-width: 751px !important; width: 100%; height: auto; }

.inner-figure {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  padding: 0;
}
.inner-figure__svg {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(16, 42, 67, 0.12));
}

.error-code {
  font-family: var(--font-heading, "Inter", sans-serif);
  font-weight: 700;
  font-size: clamp(9rem, 22vw, 16rem);
  line-height: 1;
  margin: 10px auto 40px;
  color: var(--primary, #2563EB);
  letter-spacing: 2px;
}

.contact-section { padding: 160px 0 100px; background: var(--gradient-soft); position: relative; }
.contact-section__container { position: relative; z-index: 1; }
.contact-section__container .title { margin-bottom: 50px; }

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.contact-card__subtitle {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card__text {
  font-size: 1.55rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.terms-section {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
}
.terms-section .decor { display: none; }
.terms-section .container { position: relative; z-index: 1; }
.terms-section .title { margin-bottom: 36px; }

.terms-privacy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  margin-top: 12px;
}
.terms-privacy h2 {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text);
  margin: 1.6em 0 0.6em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--border);
}
.terms-privacy h2:first-child { margin-top: 0; }
.terms-privacy h3 {
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--text);
  margin: 1.3em 0 0.5em;
}
.terms-privacy p {
  font-size: 1.55rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 1em;
}
.terms-privacy a { color: var(--accent); text-decoration: underline; }
.terms-privacy ul,
.terms-privacy ol { padding-left: 1.5em; color: var(--text-muted); margin: 0 0 1em; font-size: 1.55rem; }
.terms-privacy li { margin-bottom: 0.5em; line-height: 1.7; }
.terms-privacy strong { color: var(--text); }

.modal-content {
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(16, 42, 67, 0.25);
  overflow: hidden;
}
.modal-header { border: 0; padding-bottom: 0; }
.modal-body p { font-size: 1.55rem; color: var(--text-muted); line-height: 1.65; }
.modal-content .pix-btn {
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  background-clip: padding-box;
}

.mask-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 42, 67, 0.55);
  z-index: 998;
}

.wow { visibility: hidden; }
.pixFadeUp {
  visibility: visible;
  animation: pixFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pixFadeUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
