/* =========================================
   QUIETGUARD GLOBAL STYLESHEET
   Second pass:
   - cleaned structure
   - reduced duplication
   - safer global defaults
   - page-specific blocks grouped clearly
   ========================================= */
/* =========================================
   1. ROOT VARIABLES
   ========================================= */ :root {
    --qg-blue: #86adff;
    --qg-blue-strong: #5f88f5;
    --qg-blue-deep: #102e63;
    --qg-green: #66d274;
    --qg-bg: #071a3a;
    --qg-bg-2: #0b2655;
    --qg-bg-3: #12356e;
    --qg-surface: rgba(255, 255, 255, 0.08);
    --qg-surface-strong: rgba(255, 255, 255, 0.12);
    --qg-surface-variant: rgba(255, 255, 255, 0.16);
    --qg-border-soft: rgba(255, 255, 255, 0.08);
    --qg-border: rgba(255, 255, 255, 0.12);
    --qg-border-strong: rgba(255, 255, 255, 0.16);
    --qg-text: #f5f8ff;
    --qg-text-secondary: #c9d7f2;
    --qg-text-soft: #9db3dd;
    --qg-shadow: 0 22px 60px rgba(3, 10, 25, 0.28);
    --qg-shadow-soft: 0 14px 34px rgba(3, 10, 25, 0.16);
    --qg-radius-sm: 12px;
    --qg-radius-md: 18px;
    --qg-radius-lg: 22px;
    --qg-radius-pill: 999px;
    --qg-container: 1120px;
    --qg-copy-width: 640px;
    --qg-transition: 0.2s ease;
}
/* =========================================
   2. BASE / RESET
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    background-color: var(--qg-bg);
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    margin: 0;
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--qg-text);
    background-color: var(--qg-bg);
    background-image:
        radial-gradient(circle at 14% 12%, rgba(134, 173, 255, 0.16), transparent 22%), radial-gradient(circle at 86% 12%, rgba(134, 173, 255, 0.18), transparent 28%), radial-gradient(circle at 78% 76%, rgba(102, 210, 116, 0.08), transparent 18%), linear-gradient(180deg, var(--qg-bg-3) 0%, var(--qg-bg-2) 38%, var(--qg-bg) 100%);
    background-repeat: no-repeat;
    background-attachment: scroll;
}
body.menu-open {
    overflow: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--qg-blue);
    text-decoration: none;
    transition: color var(--qg-transition), opacity var(--qg-transition), border-color var(--qg-transition), background var(--qg-transition);
}
button, input, select {
    font: inherit;
}
button {
    cursor: pointer;
}
/* =========================================
   3. LAYOUT
   ========================================= */
.page {
    max-width: var(--qg-container);
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 20px 56px;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
.container {
    width: 100%;
}
.narrow {
    max-width: 760px;
}
/* =========================================
   4. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, p {
    margin-top: 0;
}
h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #ffffff;
}
.section h2, .card h2, .card h3 {
    color: #ffffff;
}
.hero-eyebrow, .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--qg-text-soft);
}
.hero-sub, .hero-subtitle {
    font-size: 17px;
    color: var(--qg-text-secondary);
}
.hero-sub {
    margin-bottom: 16px;
}
.hero-subtitle {
    margin-bottom: 18px;
}
.helper {
    font-size: 13px;
    line-height: 1.4;
    color: var(--qg-text-soft);
}
.mb-0 {
    margin-bottom: 0;
}
/* =========================================
   5. BRAND
   ========================================= */
.logo-wrap {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
}
.logo-mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--qg-border-strong);
    border-radius: var(--qg-radius-md);
    background: var(--qg-surface);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.logo-mark-inner {
    position: relative;
    width: 30px;
    height: 30px;
    border: 4px solid var(--qg-blue);
    border-radius: 50%;
}
.logo-mark-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--qg-green);
    transform: translate(-50%, -50%);
}
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.brand-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #ffffff;
}
.tagline {
    max-width: 330px;
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.35;
    color: var(--qg-text-soft);
}
/* =========================================
   6. HEADER / NAVIGATION
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-bottom: 34px;
    padding: 24px 0 18px;
    border-bottom: 1px solid var(--qg-border-soft);
    background: rgba(7, 26, 58, 0.68);
    backdrop-filter: blur(16px);
}
.header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px 14px;
	min-height: 113px;
}
.brand-block {
    min-width: 0;
}
.header-tools {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-shrink: 0;
}
.header-bottom {
    padding: 12px 20px 0;
    border-top: 1px solid var(--qg-border);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px 22px;
}
.main-nav a {
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: var(--qg-radius-pill);
    color: var(--qg-text-secondary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
}
.main-nav a:hover, .main-nav a.active {
    border-color: var(--qg-border);
    background: var(--qg-surface);
    color: #ffffff;
}
.nav-toggle {
    display: none;
    border: none;
    background: none;
    color: #ffffff;
    font-size: 22px;
}
/* =========================================
   7. LANGUAGE SWITCHER
   ========================================= */
.lang-switcher {
    position: relative;
    z-index: 50;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--qg-radius-pill);
    background: var(--qg-surface);
    color: #ffffff;
    font-size: 14px;
}
.lang-label {
    display: none;
}
.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    z-index: 9999;
    display: none;
    min-width: 180px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    border: 1px solid var(--qg-border);
    border-radius: 16px;
    background: rgba(18, 48, 95, 0.98);
    box-shadow: 0 18px 40px rgba(2, 10, 28, 0.38);
    backdrop-filter: blur(12px);
}
.lang-menu li a {
    display: block;
    padding: 9px 12px;
    color: var(--qg-text-secondary);
    font-size: 14px;
    text-decoration: none;
}
.lang-menu li a:hover {
    background: var(--qg-surface);
    color: #ffffff;
}
/* =========================================
   8. SHARED LINKS
   ========================================= */
.inline-link, .inline-link-page {
    color: var(--qg-blue);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
    text-decoration-color: rgba(134, 173, 255, 0.45);
}
.inline-link-page {
    font-size: 54%;
}
.inline-link:hover, .inline-link-page:hover {
    color: #b8ccff;
    text-decoration-color: rgba(184, 204, 255, 0.78);
}
.inline-link:focus-visible, .inline-link-page:focus-visible {
    outline: 2px solid rgba(134, 173, 255, 0.32);
    outline-offset: 3px;
    border-radius: 4px;
}
.inline-link:active, .inline-link-page:active {
    opacity: 0.85;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--qg-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
    text-decoration-color: rgba(134, 173, 255, 0.42);
}
.text-link:hover {
    color: #b8ccff;
    text-decoration-color: rgba(184, 204, 255, 0.78);
}
/* =========================================
   9. SHARED UI
   ========================================= */
.pill, .pill-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--qg-radius-pill);
    background: var(--qg-surface);
    font-size: 12px;
    color: var(--qg-text-secondary);
}
.pill {
    padding: 6px 12px;
}
.pill-note {
    margin-top: 20px;
    padding: 7px 14px;
}
.pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--qg-green);
    box-shadow: 0 0 0 4px rgba(102, 210, 116, 0.18);
}
.card, .feedback-card {
    border: 1px solid var(--qg-surface-variant);
    border-radius: var(--qg-radius-lg);
    background: var(--qg-surface);
    box-shadow: var(--qg-shadow);
    backdrop-filter: blur(10px);
}
.card {
    padding: 22px 22px 24px;
}
.feedback-card {
    margin: 0;
    padding: 22px;
}
.card h2, .card h3 {
    margin: 0 0 6px;
    font-size: 20px;
}
.card p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--qg-text-secondary);
}
.feedback-card p {
    margin: 0 0 12px;
    font-size: 15px;
    color: #ffffff;
}
.feedback-card footer {
    margin: 0;
    padding: 0;
    border: 0;
    text-align: left;
    font-size: 12px;
    color: var(--qg-text-soft);
}
.card-text p:last-child, .card-list ul:last-child {
    margin-bottom: 0;
}
.card-cta {
    padding-bottom: 26px;
}
.flash {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: var(--qg-radius-sm);
    font-size: 13px;
}
.flash-success {
    border: 1px solid rgba(102, 210, 116, 0.24);
    background: rgba(102, 210, 116, 0.12);
    color: #dbf7e0;
}
.flash-error {
    border: 1px solid rgba(255, 139, 134, 0.22);
    background: rgba(255, 139, 134, 0.12);
    color: #ffe2e0;
}
/* =========================================
   10. FORMS
   ========================================= */
form {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}
label {
    font-size: 13px;
    color: var(--qg-text-secondary);
}
input, select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--qg-radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--qg-text);
    font-size: 15px;
}
input::placeholder {
    color: rgba(201, 215, 242, 0.72);
}
input:focus, select:focus {
    outline: 2px solid rgba(134, 173, 255, 0.28);
    border-color: var(--qg-blue);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    border: none;
    border-radius: var(--qg-radius-pill);
    background: linear-gradient(135deg, var(--qg-blue) 0%, var(--qg-blue-strong) 100%);
    box-shadow: 0 12px 24px rgba(95, 136, 245, 0.24);
    color: #091731;
    font-size: 16px;
    font-weight: 700;
}
.btn-primary:hover {
    filter: brightness(1.05);
}
/* =========================================
   11. HERO
   ========================================= */
.hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 56px;
    padding: 32px 0 72px;
}
.hero-page {
    padding: 20px 0 56px;
}
.hero-copy {
    max-width: var(--qg-copy-width);
}
.hero-bullets {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
.hero-bullets li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--qg-text-secondary);
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}
.hero-phone-wrap {
    position: relative;
    width: min(100%, 540px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-phone-wrap::before {
    content: "";
    position: absolute;
    inset: 12% 10% 10% 14%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(88, 174, 255, 0.18) 0%, rgba(74, 196, 129, 0.10) 34%, rgba(5, 18, 52, 0) 72%);
    filter: blur(28px);
}
.hero-phone, .hero-phone-quietline {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.30));
}
/* =========================================
   12. SHARED CONTENT BLOCKS
   ========================================= */
.section, .section-soft {
    margin-bottom: 40px;
}
.section h2 {
    margin-bottom: 10px;
    font-size: 20px;
}
.section-alt {
    margin-top: 8px;
}
.section-intro {
    margin-bottom: 18px;
}
.section-intro h2 {
    margin-bottom: 10px;
}
.two-col {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.three-col {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid-2 {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-3 {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.stack-sm {
    display: grid;
    gap: 18px;
}
.bullets, .tick-list {
    list-style: none;
    padding: 0;
}
.bullets {
    margin: 0;
}
.bullets li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--qg-text-secondary);
}
.bullets li::before {
    content: "• ";
    color: var(--qg-green);
    font-weight: bold;
}
.tick-list {
    margin: 0;
    display: grid;
    gap: 10px;
}
.tick-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--qg-text-secondary);
}
.tick-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--qg-green);
    font-weight: 700;
}
.tick-list.compact {
    gap: 8px;
}
.bullets-with-icons .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.feature-icon {
    flex: 0 0 24px;
    height: 24px;
    margin-top: 2px;
}
.feature-text {
    flex: 1;
    color: var(--qg-text-secondary);
}
.pricing-grid {
    margin-top: 22px;
}
.pricing-card {
    min-height: 100%;
}
.pricing-card h3 {
    margin-bottom: 10px;
}
.section-top-gap {
    margin-top: 22px;
}
.feedback-list {
    display: grid;
    gap: 18px;
}
/* =========================================
13. HOME PAGE
========================================= */
.home-hero {
    align-items: start;
}
.home-hero-card {
    min-height: 100%;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 20px 0 12px;
}
.store-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 56px;
    padding: 12px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #101114 0%, #171a20 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.store-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
    border-color: rgba(255, 255, 255, 0.18);
}
.store-button-kicker {
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}
.store-button-title {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--qg-surface-variant);
    color: #ffffff;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.secondary-link-button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}
.hero-store-helper {
    margin: 0 0 18px;
}
.home-callout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 18px;
    border: 1px solid var(--qg-border);
    border-radius: var(--qg-radius-md);
    background: rgba(255, 255, 255, 0.04);
}
.home-callout-text {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--qg-text-secondary);
}
.home-options-helper {
    margin-top: 12px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
@media (max-width: 820px) {
    .home-callout {
        min-height: auto;
    }
}
@media (max-width: 640px) {
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .store-button, .secondary-link-button {
        width: 100%;
    }
    .store-button-title {
        font-size: 17px;
    }
    .home-callout {
        padding: 16px;
    }
}
/* =========================================
14. HOW IT WORKS PAGE
========================================= */
.hiw-hero {
    align-items: start;
}
.hiw-hero-copy {
    max-width: 760px;
}
.hiw-overview-card {
    min-height: 100%;
}
.hiw-steps {
    display: grid;
    gap: 18px;
}
.hiw-step-card {
    overflow: hidden;
}
.hiw-step-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 380px);
    gap: 28px;
    align-items: center;
}
.hiw-step-grid-reverse .hiw-step-copy {
    order: 2;
}
.hiw-step-grid-reverse .hiw-shot-wrap {
    order: 1;
}
.hiw-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(84, 139, 255, 0.12);
    border: 1px solid rgba(84, 139, 255, 0.20);
    color: var(--qg-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.hiw-step-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
}
.hiw-step-copy p {
    margin: 0;
    color: var(--qg-text-secondary);
}
.hiw-shot-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hiw-phone-frame {
    width: 100%;
    max-width: 320px;
    padding: 12px;
    border-radius: 34px;
    background: linear-gradient(180deg, #161a22 0%, #0e1118 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.30), 0 10px 24px rgba(37, 86, 182, 0.18);
}
.hiw-phone-top {
    display: flex;
    justify-content: center;
    padding: 4px 0 10px;
}
.hiw-phone-top span {
    display: block;
    width: 72px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}
.hiw-phone-screen {
    overflow: hidden;
    border-radius: 24px;
    background: #0b0e14;
}
.hiw-shot-right {
    float: right;
    width: min(68%, 163px);
    margin: 4px 0 14px 20px;
}
.hero-cta-row-badge {
    align-items: center;
}
.hero-cta-row-badge-large {
    gap: 16px;
    margin: 24px 0 18px;
}
.play-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
}
.play-badge-link-emphasis {
    padding: 9px;
    border-radius: 18px;
    background: rgba(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.play-badge-link-emphasis:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.play-badge {
    display: block;
    width: auto;
    max-width: 100%;
}
.play-badge-large {
    height: 39px;
}
.secondary-link-button-large {
    min-height: 57px;
    padding: 0 22px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
}
.hiw-final-card {
    text-align: left;
}
.mb-0 {
    margin-bottom: 0 !important;
}
@media (max-width: 920px) {
    .hiw-step-grid, .hiw-step-grid-reverse {
        grid-template-columns: 1fr;
    }
    .hiw-step-grid-reverse .hiw-step-copy, .hiw-step-grid-reverse .hiw-shot-wrap {
        order: initial;
    }
    .play-badge-large {
        height: 70px;
    }
    .hiw-phone-frame {
        max-width: 290px;
    }
}
@media (max-width: 640px) {
    .hiw-step-grid {
        gap: 18px;
    }
    .hero-cta-row-badge-large {
        align-items: stretch;
    }
    .play-badge-link-emphasis {
        justify-content: flex-start;
        padding: 8px 10px;
    }
    .play-badge-large {
        height: 64px;
    }
    .secondary-link-button-large {
        min-height: 58px;
        width: 100%;
    }
    .hiw-phone-frame {
        max-width: 250px;
        padding: 10px;
        border-radius: 28px;
    }
    .hiw-phone-screen {
        border-radius: 20px;
    }
}
/* =========================================
   15. APPS FOOTER
   ========================================= */
.apps-footer-section {
    margin-top: 52px;
    padding: 4px 0 0;
}
.apps-footer-intro {
    max-width: 760px;
    margin: 0 auto 20px;
    text-align: center;
}
.apps-footer-intro h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    color: var(--qg-text);
}
.apps-footer-intro p {
    margin: 0 auto;
    max-width: 640px;
    color: var(--qg-text-secondary);
    line-height: 1.55;
    font-size: 16px;
}
.apps-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}
.apps-footer-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--qg-radius-lg);
    padding: 18px 22px 20px;
    text-align: center;
    box-shadow: var(--qg-shadow-soft);
}
.apps-footer-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: var(--qg-radius-pill);
    background: rgba(134, 173, 255, 0.10);
    border: 1px solid rgba(134, 173, 255, 0.18);
    color: var(--qg-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.apps-footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    margin-bottom: 14px;
}
.apps-footer-logo {
    width: auto;
    height: auto;
    object-fit: contain;
}
.apps-footer-logo-suite, .apps-footer-logo-quietline {
    max-height: 58px;
}
.apps-footer-card h3 {
    margin: 0 0 10px;
    color: var(--qg-text);
    font-size: 18px;
    line-height: 1.2;
}
.apps-footer-card p {
    margin: 0 auto 12px;
    max-width: 300px;
    min-height: 0;
    color: var(--qg-text-secondary);
    line-height: 1.5;
    font-size: 15px;
}
.apps-footer-card .inline-link {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
}
/* =========================================
   16. FOOTER
   ========================================= */
footer {
    margin-top: 36px;
    padding-top: 16px;
    border-top: 1px solid var(--qg-border);
    font-size: 12px;
    text-align: center;
    color: var(--qg-text-soft);
}
footer p {
    margin: 6px 0;
}
.footer-strategic {
    max-width: 560px;
    margin: 10px auto 0;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
    color: var(--qg-text-soft);
}
.footer-strategic .footer-investor-link {
    color: var(--qg-text-secondary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
    text-decoration-color: rgba(134, 173, 255, 0.3);
}
.footer-strategic .footer-investor-link:hover {
    color: var(--qg-blue);
    text-decoration-color: rgba(134, 173, 255, 0.55);
}
/* =========================================
   17. QUIETLINE PAGE
   ========================================= */
.quietline-hero-mark-wrap {
    width: min(100%, 420px);
    min-height: 280px;
}
.quietline-hero-mark {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 60px rgba(3, 10, 25, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.quietline-hero-mark .logo-mark {
    width: 92px;
    height: 92px;
    border-radius: 28px;
}
.quietline-hero-mark .logo-mark-inner {
    width: 52px;
    height: 52px;
    border-width: 6px;
}
.quietline-card-top-align h3 {
    margin-bottom: 14px;
}
.quietline-tight-list {
    margin-top: 0;
}
.quietline-feedback-grid {
    margin-top: 18px;
}
.quietline-quote-card {
    min-height: 100%;
    padding: 20px 18px 18px;
}
.quietline-quote {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--qg-text-secondary);
}
/* =========================================
   18. PRIVACY / POLICY PAGE
   ========================================= */
.policy-hero {
    align-items: flex-start;
    gap: 24px;
}
.policy-important-card {
    min-height: 100%;
}
.policy-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--qg-blue);
    font-weight: 700;
}
.policy-anchor-wrap {
    padding-top: 0;
    margin-top: -6px;
}
.policy-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 14px;
    position: sticky;
    top: 12px;
    z-index: 20;
    background: rgba(11, 38, 85, 0.58);
    border-radius: var(--qg-radius-lg);
    border: 1px solid var(--qg-border);
    box-shadow: var(--qg-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.policy-anchor-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--qg-radius-pill);
    color: var(--qg-text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}
.policy-anchor-nav a:hover, .policy-anchor-nav a:focus-visible {
    color: #ffffff;
    background: rgba(84, 139, 255, 0.12);
    border-color: rgba(84, 139, 255, 0.28);
    transform: translateY(-1px);
    outline: none;
}
.policy-section-head {
    max-width: 860px;
    margin-bottom: 18px;
}
.policy-section-head h2 {
    margin: 0 0 10px;
}
.policy-section-head p {
    margin: 0;
    font-size: 15px;
    color: var(--qg-text-secondary);
    line-height: 1.75;
}
.policy-summary-stack, .policy-detail-stack {
    display: grid;
    gap: 18px;
}
.policy-summary-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 24px;
}
.policy-summary-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: 2px;
    background: radial-gradient(circle at 35% 35%, rgba(162, 205, 255, 0.98), rgba(72, 126, 255, 0.74));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 28px rgba(37, 86, 182, 0.16);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.policy-summary-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.policy-summary-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(18, 36, 86, 0.18));
}
.policy-summary-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: #ffffff;
}
.policy-summary-copy p {
    margin: 0;
    max-width: 820px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--qg-text-secondary);
}
.policy-detail-section {
    padding-top: 8px;
}
.policy-detail-card {
    padding: 24px;
    scroll-margin-top: 96px;
}
.policy-detail-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: var(--qg-radius-pill);
    background: rgba(84, 139, 255, 0.10);
    color: var(--qg-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.policy-detail-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.policy-detail-card p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--qg-text-secondary);
}
.policy-detail-card p:last-child {
    margin-bottom: 0;
}
.policy-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.policy-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--qg-text-secondary);
}
.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--qg-blue);
    box-shadow: 0 0 0 5px rgba(84, 139, 255, 0.10);
}
.policy-detail-card .inline-link {
    word-break: break-word;
}
.policy-detail-stack .policy-detail-card {
    background: var(--qg-surface);
    border: 1px solid var(--qg-surface-variant);
    box-shadow: var(--qg-shadow);
}
/* =========================================
   19. RESPONSIVE
   ========================================= */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 20px 0 56px;
    }
    .hero-copy {
        max-width: none;
    }
    .hero-visual {
        justify-content: center;
    }
    .hero-phone-wrap {
        width: min(82vw, 430px);
    }
    .policy-hero {
        gap: 20px;
    }
    .policy-anchor-nav {
        top: 10px;
    }
    .quietline-hero-mark-wrap {
        min-height: 220px;
    }
    .quietline-hero-mark {
        width: 180px;
        height: 180px;
        border-radius: 30px;
    }
    .quietline-hero-mark .logo-mark {
        width: 76px;
        height: 76px;
        border-radius: 24px;
    }
    .quietline-hero-mark .logo-mark-inner {
        width: 44px;
        height: 44px;
        border-width: 5px;
    }
}
@media (max-width: 820px) {
    .policy-anchor-wrap {
        margin-top: -2px;
    }
    .policy-anchor-nav {
        top: 8px;
        gap: 8px;
        padding: 12px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
    }
    .policy-anchor-nav::-webkit-scrollbar {
        height: 6px;
    }
    .policy-anchor-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 999px;
    }
    .policy-anchor-nav a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 13px;
        font-size: 13px;
    }
    .policy-section-head p, .policy-summary-copy p {
        font-size: 14px;
    }
    .policy-summary-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 20px;
    }
    .policy-summary-icon {
        width: 58px;
        height: 58px;
    }
    .policy-summary-icon::after {
        inset: 8px;
    }
    .policy-summary-logo {
        width: 30px;
        height: 30px;
    }
    .policy-summary-copy h3 {
        font-size: 24px;
    }
    .policy-detail-card {
        padding: 20px;
        scroll-margin-top: 82px;
    }
    .policy-detail-card h3 {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .page {
        padding: 0 16px 40px;
    }
    .site-header {
        padding: 18px 0 10px;
    }
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 0 16px 12px;
    }
    .brand-block, .logo-wrap {
        width: 100%;
    }
    .tagline {
        max-width: none;
    }
    .header-tools {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .header-bottom {
        padding: 10px 16px 0;
    }
    .main-nav {
        justify-content: flex-start;
        gap: 10px 14px;
    }
    .main-nav a {
        padding: 9px 12px;
        font-size: 14px;
    }
    .lang-switcher {
        position: relative;
        margin-left: auto;
    }
    .lang-menu {
        right: 0;
        left: auto;
        min-width: 170px;
    }
    .site-header .header-tools {
        display: block;
        width: 100%;
        text-align: right;
    }
    .site-header .lang-switcher {
        display: inline-block;
        margin-left: 0;
    }
    .hero-page {
        padding: 10px 0 40px;
    }
    .feedback-card, .card {
        padding: 18px 18px 20px;
    }
    .grid-2, .grid-3 {
        gap: 18px;
    }
    .apps-footer-section {
        margin-top: 42px;
    }
    .apps-footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .apps-footer-card {
        padding: 18px;
    }
    .apps-footer-intro p {
        font-size: 15px;
    }
    .apps-footer-logo-wrap {
        min-height: 58px;
    }
    .apps-footer-logo-suite, .apps-footer-logo-quietline {
        max-height: 42px;
    }
    .apps-footer-card p {
        max-width: none;
        font-size: 15px;
    }
}
@media (max-width: 640px) {
    .policy-card-kicker, .policy-detail-label {
        font-size: 11px;
        letter-spacing: 0.07em;
    }
    .policy-summary-copy h3 {
        font-size: 22px;
    }
    .policy-detail-card h3 {
        font-size: 21px;
    }
    .policy-detail-card p, .policy-list li {
        font-size: 14px;
    }
    .policy-anchor-nav {
        border-radius: 18px;
    }
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 20px 0 10px;
}
.hero-cta-row-compact {
    gap: 12px;
}
.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--qg-radius-pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: #ffffff;
    box-shadow: var(--qg-shadow-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background var(--qg-transition), border-color var(--qg-transition), transform var(--qg-transition), box-shadow var(--qg-transition);
}
.store-button:hover {
    color: #ffffff;
    border-color: rgba(134, 173, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-1px);
}
/* Google Play CTA */
.store-button-google-inline {
    min-width: 183px;
    min-height: 56px;
    padding: 10px 18px;
    justify-content: flex-start;
    background: #0c0c0d;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.store-button-google-inline:hover {
    background: #161618;
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.store-button-google-inline:active {
    transform: translateY(0);
    background: #101113;
}
.store-button-google-inline-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.store-button-google-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}
.store-button-copy-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}
.store-button-kicker {
    font-size: 9px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 4px;
    font-weight: 600;
}
.store-button-title {
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}
/* Secondary CTA stays softer */
.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--qg-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    color: var(--qg-text-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition:
        background var(--qg-transition), border-color var(--qg-transition), transform var(--qg-transition);
}
.secondary-link-button:hover {
    color: #ffffff;
    border-color: rgba(134, 173, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}
@media (max-width: 640px) {
    .hero-cta-row {
        align-items: stretch;
    }
    .store-button-google-inline, .secondary-link-button {
        width: 100%;
        justify-content: center;
    }
    .store-button-google-inline-inner {
        justify-content: center;
    }
}