/*=================================================
  Quick Window Search Hub
  Dark cyber address-bar / new-window aesthetic
  Palette: navy bg + cyan glow + violet accent
==================================================*/

:root {
    --qws-bg:           #0D1525;
    --qws-bg-2:         #12102a;
    --qws-surface:      #162032;
    --qws-surface-2:    #1E2E44;
    --qws-border:       #2B3D55;
    --qws-border-soft:  rgba(43, 61, 85, 0.55);
    --qws-cyan:         #38BDF8;
    --qws-cyan-2:       #0EA5E9;
    --qws-cyan-glow:    rgba(56, 189, 248, 0.25);
    --qws-cyan-soft:    rgba(56, 189, 248, 0.12);
    --qws-violet:       #A78BFA;
    --qws-text:         #E8F1FF;
    --qws-text-muted:   #7A90AE;
    --qws-radius:       16px;
    --qws-radius-sm:    8px;
    --qws-radius-lg:    24px;
    --qws-shadow:       0 24px 60px -20px rgba(0, 0, 0, 0.55), 0 8px 20px -8px rgba(0, 0, 0, 0.4);
    --qws-shadow-cyan:  0 16px 60px -16px rgba(56, 189, 248, 0.45);
}

/*---------------- Base ----------------*/
* { box-sizing: border-box; }

html { font-size: 10px; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
    line-height: 1.55;
    color: var(--qws-text);
    background: var(--qws-bg);
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.10), transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 30%, rgba(167, 139, 250, 0.08), transparent 70%),
        linear-gradient(180deg, var(--qws-bg) 0%, var(--qws-bg-2) 100%);
    background-attachment: fixed;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

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

a, button, input, textarea, select {
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

a {
    text-decoration: none;
    color: var(--qws-cyan);
}

a:hover { color: var(--qws-cyan-2); text-decoration: none; }

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--qws-text);
    font-weight: 700;
    line-height: 1.2;
}

p { margin-top: 0; }

::selection { background: var(--qws-cyan); color: var(--qws-bg); }

/*---------------- Container ----------------*/
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

/*---------------- Loader ----------------*/
.page-loader {
    background: var(--qws-bg);
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader .blobs { position: relative; width: 200px; height: 200px; filter: url(#goo); }

.page-loader .blob,
.page-loader .blob-center {
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--qws-cyan);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.page-loader .blob {
    animation: pl-orbit 4s linear infinite;
    transform-origin: 0 60px;
}
.page-loader .blob:nth-child(2) { animation-delay: -0.66s; }
.page-loader .blob:nth-child(3) { animation-delay: -1.33s; }
.page-loader .blob:nth-child(4) { animation-delay: -2s; }
.page-loader .blob:nth-child(5) { animation-delay: -2.66s; }
.page-loader .blob:nth-child(6) { animation-delay: -3.33s; }

@keyframes pl-orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

/*---------------- Return to top ----------------*/
.return-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--qws-cyan);
    color: var(--qws-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.55);
}

.return-to-top.back-top {
    opacity: 1;
    pointer-events: auto;
        transform: translateY(0);
}

.return-to-top:hover { background: var(--qws-cyan-2); color: var(--qws-bg); }

/*---------------- Header ----------------*/
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: padding 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease, border 0.25s ease;
    border-bottom: 1px solid transparent;
}

.site-header.pix-header-fixed {
    padding: 12px 0;
    background: rgba(13, 21, 37, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--qws-border-soft);
}

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

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

.site-mobile-logo,
.site-logo {
    display: flex;
    align-items: center;
}

.site-mobile-logo .logo,
.site-logo .logo {
    display: inline-flex;
    align-items: center;
}

.site-mobile-logo img,
.site-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.site-logo .sticky-logo,
.site-mobile-logo .sticky-logo { display: none; }

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

.site-nav .close-menu { display: none; }

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

.site-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}

.site-main-menu li a {
    color: var(--qws-text-muted);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.site-main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--qws-cyan);
    transition: width 0.25s ease;
}

.site-main-menu li a:hover,
.site-main-menu li a.active {
    color: var(--qws-text);
}

.site-main-menu li a:hover::after,
.site-main-menu li a.active::after {
    width: 100%;
}

.site-nav > .btn {
    margin-left: 8px;
}

.toggle-menu {
    display: none;
    width: 36px; height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.toggle-menu .bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--qws-text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/*---------------- Buttons ----------------*/
.btn,
.btn_main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
    border: none;
    background: var(--qws-cyan);
    color: var(--qws-bg);
    text-decoration: none;
    box-shadow: 0 12px 30px -10px var(--qws-cyan-glow);
    background-clip: padding-box;
    line-height: 1;
}

.btn:hover,
.btn_main:hover {
    background: var(--qws-cyan-2);
    color: var(--qws-bg);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px -10px rgba(56, 189, 248, 0.55);
    text-decoration: none;
}

.qws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    background-clip: padding-box;
}

.qws-btn--primary {
    background: var(--qws-cyan);
    color: var(--qws-bg);
    box-shadow: var(--qws-shadow-cyan);
    border: none;
}

.qws-btn--primary:hover {
    background: var(--qws-cyan-2);
    color: var(--qws-bg);
    transform: translateY(-1px);
    box-shadow: 0 20px 50px -14px rgba(56, 189, 248, 0.6);
}

.qws-btn--ghost {
    background: transparent;
    color: var(--qws-text);
    border: 1px solid var(--qws-border);
}

.qws-btn--ghost:hover {
    border-color: var(--qws-cyan);
    color: var(--qws-cyan);
    background: var(--qws-cyan-soft);
}

.qws-btn--lg {
    padding: 18px 34px;
    font-size: 15px;
}

.qws-btn img { display: block; transition: transform 0.25s ease; }
.qws-btn:hover img { transform: translateX(3px); }

/*---------------- Type helpers ----------------*/
.qws-text--gradient {
    background: linear-gradient(95deg, var(--qws-cyan) 0%, var(--qws-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 0.15em;
    display: inline-block;
}

.qws-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--qws-cyan-soft);
    color: var(--qws-cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background-clip: padding-box;
    margin-bottom: 18px;
}

.qws-eyebrow--center { display: inline-flex; }

.qws-eyebrow__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--qws-cyan);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.qws-kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1.2;
    background: var(--qws-surface-2);
    border: 1px solid var(--qws-border);
    border-radius: 6px;
    color: var(--qws-text);
    margin: 0 2px;
    background-clip: padding-box;
}

.qws-kbd--cyan {
    background: var(--qws-cyan);
    color: var(--qws-bg);
    border-color: var(--qws-cyan);
}

.qws-kbd--sm {
    padding: 2px 7px;
    font-size: 0.75em;
}

/*---------------- Background decorations ----------------*/
.qws-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--qws-border-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--qws-border-soft) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.18;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.qws-bg-glow {
    position: absolute;
    top: -100px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 60%);
    pointer-events: none;
    z-index: 0;
}

/*=================================================
  HERO
==================================================*/
.qws-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.qws-hero__row {
    position: relative;
    z-index: 1;
}

.qws-hero__title {
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.qws-hero__subtitle {
    font-size: 1.7rem;
    color: var(--qws-text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
}

.qws-hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.qws-hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.qws-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qws-hero__meta-item strong {
    color: var(--qws-text);
    font-size: 14px;
    font-weight: 700;
}

.qws-hero__meta-item span {
    color: var(--qws-text-muted);
    font-size: 12.5px;
}

.qws-hero__meta-divider {
    width: 1px;
    height: 36px;
    background: var(--qws-border);
}

.qws-hero__art {
    position: relative;
    margin-left: -10px;
}

.qws-hero__art img {
    width: 100%;
    height: auto;
    border-radius: var(--qws-radius-lg);
    box-shadow: var(--qws-shadow);
}

/*=================================================
  HOW IT WORKS
==================================================*/
.qws-how {
    position: relative;
    padding: 100px 0;
}

.qws-section-head {
    margin-bottom: 64px;
}

.qws-section-title {
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}

.qws-section-lead {
    font-size: 1.6rem;
    color: var(--qws-text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.qws-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.qws-step {
    background: linear-gradient(180deg, var(--qws-surface) 0%, var(--qws-bg-2) 100%);
    border: 1px solid var(--qws-border);
    border-radius: var(--qws-radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.qws-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--qws-cyan) 50%, transparent 100%);
    opacity: 0.5;
}

.qws-step:nth-child(even) {
    grid-template-columns: 1.05fr 1fr;
}

.qws-step:nth-child(even) .qws-step__art {
    order: -1;
}

.qws-step__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.qws-step__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--qws-cyan);
    background: var(--qws-cyan-soft);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background-clip: padding-box;
    letter-spacing: 0.04em;
}

.qws-step__title {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0;
}

.qws-step__text {
    font-size: 1.6rem;
    color: var(--qws-text-muted);
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}

.qws-step__art img {
    width: 100%;
    height: auto;
    border-radius: var(--qws-radius);
    box-shadow: var(--qws-shadow);
}

/*=================================================
  FEATURES
==================================================*/
.qws-features {
    position: relative;
    padding: 100px 0;
}

.qws-feature-grid {
    margin-top: 12px;
}

.qws-feature-grid > [class*="col-"] {
    margin-bottom: 24px;
    display: flex;
}

.qws-feature-card {
    background: var(--qws-surface);
    border: 1px solid var(--qws-border);
    border-radius: var(--qws-radius);
    padding: 28px 26px;
    height: 100%;
    width: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.qws-feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--qws-cyan), transparent);
    transition: left 0.6s ease;
}

.qws-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--qws-cyan);
    box-shadow: 0 16px 40px -16px rgba(56, 189, 248, 0.35);
}

.qws-feature-card:hover::after { left: 100%; }

.qws-feature-card__icon {
    width: 64px; height: 64px;
    margin-bottom: 22px;
}

.qws-feature-card__title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--qws-text);
}

.qws-feature-card__text {
    font-size: 1.45rem;
    color: var(--qws-text-muted);
    line-height: 1.65;
    margin: 0;
}

/*=================================================
  BOTTOM CTA
==================================================*/
.qws-cta {
    position: relative;
    padding: 60px 0 120px;
}

.qws-cta__panel {
    position: relative;
    background: linear-gradient(150deg, var(--qws-surface) 0%, var(--qws-bg-2) 100%);
    border: 1px solid var(--qws-border);
    border-radius: var(--qws-radius-lg);
    padding: 60px 48px;
    text-align: center;
    overflow: hidden;
}

.qws-cta__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(56, 189, 248, 0.25), transparent 60%);
    pointer-events: none;
}

.qws-cta__bracket {
    position: absolute;
    width: 24px; height: 24px;
    border: 2px solid var(--qws-cyan);
    opacity: 0.7;
}
.qws-cta__bracket--tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.qws-cta__bracket--tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; }
.qws-cta__bracket--bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; }
.qws-cta__bracket--br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }

.qws-cta__title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 auto 16px;
    max-width: 720px;
    position: relative;
}

.qws-cta__text {
    font-size: 1.6rem;
    color: var(--qws-text-muted);
    margin: 0 auto 36px;
    max-width: 540px;
    position: relative;
}

.qws-cta__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.qws-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px dashed var(--qws-border);
    border-radius: 999px;
    background: rgba(13, 21, 37, 0.6);
    color: var(--qws-text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.qws-cta__pill-text { color: var(--qws-text); }

/*=================================================
  FOOTER
==================================================*/
.footer {
    background: rgba(13, 21, 37, 0.7);
    border-top: 1px solid var(--qws-border-soft);
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer-content { padding-bottom: 40px; }

.footer-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-menu { min-width: 280px; }

.footer__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--qws-cyan);
    margin-bottom: 16px;
}

.footer-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.footer-link {
    color: var(--qws-text-muted);
    font-size: 14px;
    font-weight: 500;
}

.footer-link:hover { color: var(--qws-cyan); text-decoration: none; }

.footer-copyright {
    border-top: 1px solid var(--qws-border-soft);
    padding: 20px 24px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: var(--qws-text-muted);
    font-size: 12.5px;
}

/*=================================================
  MODAL
==================================================*/
.modal-content {
    background: var(--qws-surface);
    border: 1px solid var(--qws-border);
    border-radius: var(--qws-radius);
    color: var(--qws-text) !important;
    overflow: hidden;
    box-shadow: var(--qws-shadow);
}

.modal-header {
    border: none;
    padding: 14px 18px 0;
    display: flex;
    justify-content: flex-end;
}

.modal-header .close {
    color: var(--qws-text-muted);
    font-size: 28px;
    opacity: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1;
}

.modal-header .close:hover { color: var(--qws-cyan); }

.modal-body {
    padding: 8px 28px 20px;
    color: var(--qws-text);
}

.modal-body p {
    color: var(--qws-text);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.modal-body strong { color: var(--qws-cyan); }

.about-btn { padding-bottom: 24px !important; }

.modal .btn,
.modal .pix-btn {
    background: var(--qws-cyan);
    color: var(--qws-bg);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.modal .btn:hover,
.modal .pix-btn:hover {
    background: var(--qws-cyan-2);
    color: var(--qws-bg);
}

/*=================================================
  INNER PAGES
==================================================*/
.qws-inner {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.qws-inner__panel {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.qws-inner__title {
    font-size: 4.4rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.qws-inner__text {
    font-size: 1.6rem;
    color: var(--qws-text-muted);
    line-height: 1.65;
    margin: 0 auto 30px;
    max-width: 580px;
}

.qws-inner__art {
    margin: 16px auto 30px;
    max-width: 480px;
}

.qws-inner__art img { width: 100%; height: auto; }

/*-- Contact --*/
.contact-section { padding: 180px 0 100px; }

.contact-section__container { max-width: 1080px; }

.contact-section__wrap { margin-top: 40px; }

.qws-contact-card {
    background: var(--qws-surface);
    border: 1px solid var(--qws-border);
    border-radius: var(--qws-radius);
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.qws-contact-card:hover {
    border-color: var(--qws-cyan);
    transform: translateY(-2px);
}

.qws-contact-card__subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--qws-cyan);
    margin-bottom: 14px;
}

.qws-contact-card__text {
    font-size: 1.5rem;
    color: var(--qws-text-muted);
    line-height: 1.65;
    margin: 0 0 24px;
}

/*-- Privacy / Terms (legal copy) --*/
.qws-inner--legal { padding: 160px 0 100px; }

.terms-privacy {
    color: var(--qws-text-muted);
    line-height: 1.7;
    font-size: 1.5rem;
    background: var(--qws-surface);
    border: 1px solid var(--qws-border);
    border-radius: var(--qws-radius);
    padding: 36px 32px;
    margin-top: 40px;
}

.terms-privacy h1,
.terms-privacy h2,
.terms-privacy h3,
.terms-privacy h4 {
    color: var(--qws-text);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.terms-privacy h2 { font-size: 2rem; color: var(--qws-cyan); }
.terms-privacy h3 { font-size: 1.7rem; }
.terms-privacy h4 { font-size: 1.55rem; }

.terms-privacy p { margin: 0 0 14px; }
.terms-privacy ul,
.terms-privacy ol { margin: 0 0 14px; padding-left: 22px; }
.terms-privacy li { margin-bottom: 6px; }

.terms-privacy a { color: var(--qws-cyan); text-decoration: underline; }
.terms-privacy a:hover { color: var(--qws-cyan-2); }

.terms-privacy strong { color: var(--qws-text); }

/*-- Uninstall --*/
.qws-uninstall-image {
    border-radius: var(--qws-radius);
    border: 1px solid var(--qws-border);
    box-shadow: var(--qws-shadow);
    background: var(--qws-surface);
    padding: 12px;
    max-width: 100%;
    height: auto;
}

/*=================================================
  ANIMATIONS (used by .wow)
==================================================*/
.wow { visibility: hidden; }

.pixFadeUp {
    animation-name: pixFadeUp;
    animation-duration: 0.9s;
    animation-fill-mode: both;
}

@keyframes pixFadeUp {
    0% { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}

/*=================================================
  HELPERS
==================================================*/
.text-center { text-align: center; }

.fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.title { font-weight: 700; font-size: 4.4rem; line-height: 1.2; color: var(--qws-text); }
.text  { font-weight: 400; font-size: 1.6rem; line-height: 1.5; color: var(--qws-text); }

/* Bootstrap row gutter fix for our grid */
.row { display: flex; flex-wrap: wrap; margin-right: -12px; margin-left: -12px; }
.row > [class*="col-"] { padding-right: 12px; padding-left: 12px; }
