:root {
    --ink: #071426;
    --ink-soft: #1e344f;
    --muted: #66758a;
    --muted-2: #8b99aa;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.72);
    --cloud: #f5faff;
    --blue: #1677ff;
    --blue-2: #0757c8;
    --sky: #42cfff;
    --green: #18b978;
    --lime: #7ee787;
    --yellow: #ffd65a;
    --orange: #ff9a3d;
    --pink: #ff6baa;
    --violet: #7d6bff;
    --line: rgba(12, 28, 52, 0.095);
    --line-strong: rgba(22, 119, 255, 0.22);
    --border-soft: rgba(12, 28, 52, 0.075);
    --border-medium: rgba(12, 28, 52, 0.12);
    --border-blue: rgba(22, 119, 255, 0.24);
    --border-glow: rgba(66, 207, 255, 0.34);
    --shadow-sm: 0 16px 42px rgba(15, 48, 86, 0.085);
    --shadow-md: 0 28px 76px rgba(13, 43, 86, 0.14);
    --shadow-lg: 0 44px 128px rgba(7, 20, 38, 0.22);
    --premium-shadow-xs: 0 8px 22px rgba(15, 48, 86, 0.055);
    --premium-shadow-sm: 0 18px 46px rgba(15, 48, 86, 0.085);
    --premium-shadow-md: 0 30px 84px rgba(10, 38, 78, 0.14);
    --premium-shadow-lg: 0 52px 140px rgba(7, 20, 38, 0.24);
    --premium-shadow-blue: 0 24px 72px rgba(22, 119, 255, 0.16);
    --heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-xl: 40px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --max: 1180px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --download-green: #16b86f;
    --download-green-2: #0f9f62;
    --download-cyan: #35d7ff;
    --download-shadow: rgba(22, 184, 111, 0.28);
    --action-blue: #1677ff;
    --action-blue-2: #0757c8;
    --soft-blue-bg: #eef7ff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.62;
    font-weight: 400;
    letter-spacing: -0.004em;
    color: var(--ink);
    background: radial-gradient(circle at 14% 0%, rgba(22, 119, 255, 0.12), transparent 28%), radial-gradient(circle at 92% 6%, rgba(66, 207, 255, 0.1), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f6f9fc 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 0 !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.55;
    background-image: linear-gradient(rgba(22, 119, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 119, 255, 0.026) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
        opacity 0.85s var(--ease),
        transform 0.85s var(--ease);
}

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

h1 {
    margin: 22px 0 22px;
    animation: fadeUp 0.75s var(--ease) 0.08s both;
    font-size: clamp(3rem, 5.25vw, 5.75rem);
    line-height: 1.02;
    letter-spacing: -0.058em;
    font-weight: 800;
    max-width: 760px;
    color: #05152a;
    text-shadow: 0 12px 40px rgba(7, 25, 47, 0.07);
}

.float-card h3 {
    margin: 0 0 5px;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.section-head {
    margin: 0 auto 46px;
    text-align: center;
    max-width: 720px;
    margin-bottom: 42px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-2);
    font-family: var(--heading);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    font-weight: 800;
}

h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3.45vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.048em;
    font-weight: 800;
    max-width: 760px;
    margin-inline: auto;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    font-weight: 650;
    line-height: 1.75;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 1.45vw, 1.55rem);
    letter-spacing: -0.035em;
}

.step h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

summary {
    cursor: pointer;
    padding: 22px 0;
    font-family: var(--heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-panel h2 {
    max-width: 820px;
    color: white;
    margin-inline: 0;
}

h1,
h2,
h3,
.brand,
.btn,
.nav-links,
.eyebrow,
.plan-name,
.price b,
.section-kicker,
.proof b,
.step::before,
summary {
    font-family: var(--heading);
}

h3,
.plan-name {
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-lead,
.section-head p,
.panel p,
.feature-card p,
.step p,
details p,
.plan-desc,
.list-item span,
.security span:last-child {
    font-weight: 500;
}

h3 {
    font-size: clamp(1.15rem, 1.25vw, 1.34rem);
    line-height: 1.24;
    letter-spacing: -0.026em;
    font-weight: 800;
}

.section-head p,
.panel p,
.cta-panel p {
    font-size: clamp(1rem, 1.05vw, 1.1rem);
    line-height: 1.72;
    font-weight: 500;
}

.feature-card h3,
.step h3,
.plan-name {
    font-size: clamp(1.18rem, 1.28vw, 1.42rem);
    line-height: 1.25;
    letter-spacing: -0.026em;
}

.gradient-text {
    background: linear-gradient(100deg, #0757c8, #1677ff, #42cfff);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 5s ease-in-out infinite;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 0 0 5px rgba(22, 119, 255, 0.08);
    margin-right: 9px;
}

details summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: "+";
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #0757c8;
    background: #eff7ff;
    border: 1px solid rgba(22, 119, 255, 0.12);
    font-size: 1.05rem;
    line-height: 1;
    transition:
        transform 0.24s var(--ease),
        background 0.24s var(--ease),
        color 0.24s var(--ease);
}

details[open] summary::after {
    content: "−";
    color: #ffffff;
    background: linear-gradient(135deg, #0757c8, #1677ff);
    transform: rotate(180deg);
}

.footer-summary {
    margin: 0;
    color: #bfd0e2;
    font-weight: 720;
    line-height: 1.75;
}

.footer-col h3,
.footer-contact-card h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--heading);
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.topbar {
    font-size: 0.92rem;
    background: linear-gradient(90deg, #071426 0%, #102a45 50%, #071426 100%);
    color: #ecf6ff;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(7, 20, 38, 0.08);
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-weight: 800;
}

.topbar strong {
    border-radius: 999px;
    padding: 4px 10px;
    font-family: var(--heading);
    color: #071426;
    background: linear-gradient(135deg, #ffffff, #dcebff);
    box-shadow: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(12, 28, 52, 0.09);
    box-shadow:
        0 14px 38px rgba(7, 20, 38, 0.055),
        inset 0 -1px 0 rgba(255, 255, 255, 0.7);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    min-width: max-content;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: -0.025em;
    gap: 14px !important;
    align-items: center !important;
}

.brand-logo {
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    max-height: 62px;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow:
        0 14px 34px rgba(22, 119, 255, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75) !important;
    filter: none !important;
}

.brand-fallback {
    display: none;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    box-shadow:
        0 18px 42px rgba(22, 119, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.brand-fallback svg {
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    font-weight: 600;
}

.nav-links a {
    opacity: 0.82;
    transition:
        color 0.24s var(--ease),
        opacity 0.24s var(--ease),
        transform 0.24s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--blue);
    transform: translateY(-1px);
}

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

.btn,
.nav-links,
.trust-chip,
.billing-note,
.plan-list li,
.topbar-inner {
    font-weight: 700;
}

.proof span,
.trust-chip,
.billing-note,
.plan-list li,
.nav-links,
.btn,
.eyebrow,
.topbar-inner {
    font-size: 0.94rem;
    line-height: 1.35;
}

.brand-logo,
.brand-fallback {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 14px 34px rgba(22, 119, 255, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.nav-links a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.24;
    transition:
        opacity 0.24s var(--ease),
        transform 0.24s var(--ease);
}

.nav-links a:hover::before {
    opacity: 0.7;
    transform: scale(1.22);
}

.topbar strong::before {
    content: "✦";
    margin-right: 6px;
    font-size: 0.85em;
}

.navbar .brand > span:last-child {
    display: none;
}

.footer-inner .brand-logo {
    width: 128px !important;
    height: 128px !important;
}

.footer-inner .brand > span:last-child {
    display: none;
}

.brand .brand-name {
    display: inline-flex !important;
    align-items: baseline;
    gap: 7px;
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(1.28rem, 1.55vw, 1.72rem);
    line-height: 1;
    letter-spacing: -0.035em;
    white-space: nowrap;
    filter: drop-shadow(0 8px 16px rgba(7, 20, 38, 0.08));
}

.brand .brand-name .kids-word {
    display: inline-block;
    background: linear-gradient(100deg, #1677ff, #18b978, #ffd65a, #ff6baa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand .brand-name .browser-word {
    margin-left: 0;
    background: linear-gradient(100deg, #0757c8, #1677ff, #42cfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand .brand-name .k1 {
    color: #1677ff;
}

.brand .brand-name .k2 {
    color: #18b978;
}

.brand .brand-name .k3 {
    color: #ffb547;
}

.brand .brand-name .k4 {
    color: #ff6baa;
}

.navbar .brand > span:last-child,
.footer-inner .brand > span:last-child {
    display: inline-flex !important;
}

.navbar .brand .brand-name,
.footer-inner .brand .brand-name {
    display: inline-flex !important;
}

.language-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.language-btn {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(12, 28, 52, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--heading);
    font-weight: 800;
    font-size: 0.94rem;
    line-height: 1;
    cursor: pointer;
    box-shadow:
        0 14px 34px rgba(15, 48, 86, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        border-color 0.25s var(--ease);
    color: #0757c8;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
    border-color: rgba(22, 119, 255, 0.16);
}

.language-btn:hover,
.language-wrap.is-open .language-btn {
    transform: translateY(-2px);
    color: #0f9f62;
    background: radial-gradient(circle at 18% 10%, rgba(22, 184, 111, 0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f0fff8 100%);
    border-color: rgba(22, 184, 111, 0.24);
    box-shadow:
        0 22px 56px rgba(15, 48, 86, 0.11),
        0 8px 22px rgba(22, 184, 111, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.language-btn svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.language-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 120;
    width: 300px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(12, 28, 52, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
    box-shadow:
        0 28px 76px rgba(7, 20, 38, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: top right;
    transition:
        opacity 0.24s var(--ease),
        visibility 0.24s var(--ease),
        transform 0.24s var(--ease);
}

.language-wrap.is-open .language-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-panel-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--ink);
    font-family: var(--heading);
    font-weight: 900;
    letter-spacing: -0.025em;
}

.language-panel-title svg {
    width: 20px;
    height: 20px;
    color: #0757c8;
}

.language-panel-note {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
    font-weight: 500;
}

#google_translate_element {
    min-height: 42px;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

#google_translate_element select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 28, 52, 0.12);
    background: #fff;
    color: var(--ink);
    font-family: var(--body);
    font-weight: 700;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#google_translate_element select:focus {
    border-color: rgba(22, 119, 255, 0.32);
    box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.08);
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    font-family: var(--body) !important;
}

.goog-te-gadget span,
.goog-te-gadget a {
    display: none !important;
}

.goog-te-combo {
    margin: 0 !important;
}

body > .skiptranslate {
    display: none !important;
}

.translated-ltr body,
.translated-rtl body {
    top: 0 !important;
}

.language-select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 28, 52, 0.12);
    background: #fff;
    color: var(--ink);
    font-family: var(--body);
    font-weight: 700;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.language-select:focus {
    border-color: rgba(22, 119, 255, 0.32);
    box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.08);
}

.language-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.language-apply,
.language-reset {
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--heading);
    font-weight: 800;
    transition:
        transform 0.22s var(--ease),
        box-shadow 0.22s var(--ease);
}

.language-apply {
    color: #fff;
    background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 34%), linear-gradient(135deg, #0757c8 0%, #1677ff 58%, #42cfff 100%);
    box-shadow:
        0 16px 36px rgba(22, 119, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.language-reset {
    color: #607086;
    background: linear-gradient(180deg, #ffffff, #f7fafc);
    border: 1px solid rgba(12, 28, 52, 0.12);
}

.language-apply:hover,
.language-reset:hover {
    transform: translateY(-2px);
}

.language-panel-note.small {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.78rem;
}

.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame {
    display: none !important;
}

.skiptranslate {
    display: none !important;
}

.language-select.is-loading,
.language-apply.is-loading {
    opacity: 0.65;
    cursor: wait;
}

.btn,
.language-btn,
.language-apply,
.language-reset {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
}

.btn::before,
.language-btn::before,
.language-apply::before,
.language-reset::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.44), transparent 32%), linear-gradient(135deg, rgba(66, 207, 255, 0.34), rgba(255, 214, 90, 0.2), rgba(255, 107, 170, 0.22));
    transition: opacity 0.28s var(--ease);
}

.btn:hover::before,
.language-btn:hover::before,
.language-apply:hover::before,
.language-reset:hover::before {
    opacity: 1;
}

.btn-secondary:hover,
.btn-dark:hover,
.language-btn:hover,
.language-apply:hover,
.language-reset:hover {
    transform: translateY(-4px) scale(1.018);
}

.btn:active,
.language-btn:active,
.language-apply:active,
.language-reset:active {
    transform: translateY(-1px) scale(0.985);
    transition-duration: 0.08s;
}

.btn .icon,
.language-btn svg {
    transition:
        transform 0.32s var(--ease),
        filter 0.32s var(--ease);
}

.btn:hover .icon,
.language-btn:hover svg {
    transform: translateX(2px) scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 6px 10px rgba(22, 119, 255, 0.18));
}

.btn span:not(.check),
.language-btn span {
    transition: transform 0.28s var(--ease);
}

.btn:hover span:not(.check),
.language-btn:hover span {
    transform: translateY(-1px);
}

.btn-secondary::after,
.btn-dark::after,
.language-btn::after,
.language-apply::after,
.language-reset::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 70%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s var(--ease);
}

.btn-secondary:hover::after,
.btn-dark:hover::after,
.language-btn:hover::after,
.language-apply:hover::after,
.language-reset:hover::after {
    left: 140%;
}

.btn-secondary .btn-ripple,
.language-btn .btn-ripple,
.language-reset .btn-ripple {
    background: rgba(22, 119, 255, 0.16);
}

.language-apply .btn-ripple,
.btn-dark .btn-ripple {
    background: rgba(255, 255, 255, 0.42);
}

.nav-actions .btn-primary,
.hero-actions .btn-primary,
.cta-actions .btn-primary,
.price-card.premium .btn-primary {
    box-shadow:
        0 20px 48px rgba(22, 119, 255, 0.3),
        0 0 0 0 rgba(22, 119, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.nav-actions .btn-primary:hover,
.hero-actions .btn-primary:hover,
.cta-actions .btn-primary:hover,
.price-card.premium .btn-primary:hover {
    box-shadow:
        0 30px 78px rgba(22, 119, 255, 0.38),
        0 0 0 8px rgba(22, 119, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary[href*="download"],
a.btn-primary[href="#download"],
.hero-actions a.btn-primary[href="#download"],
.nav-actions a.btn-primary[href="#download"],
.cta-actions a.btn-primary[href="#download"] {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 34%), linear-gradient(135deg, var(--download-green-2) 0%, var(--download-green) 54%, var(--download-cyan) 100%);
    box-shadow:
        0 22px 54px var(--download-shadow),
        0 8px 22px rgba(53, 215, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -1px 0 rgba(7, 20, 38, 0.12);
}

.btn-primary[href*="download"]:hover,
a.btn-primary[href="#download"]:hover,
.hero-actions a.btn-primary[href="#download"]:hover,
.nav-actions a.btn-primary[href="#download"]:hover,
.cta-actions a.btn-primary[href="#download"]:hover {
    background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.32), transparent 34%), linear-gradient(135deg, #0d8f59 0%, #18c97b 50%, #42dfff 100%);
    box-shadow:
        0 32px 80px rgba(22, 184, 111, 0.36),
        0 12px 30px rgba(53, 215, 255, 0.18),
        0 0 0 8px rgba(22, 184, 111, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-footer .brand {
    margin-bottom: 18px;
    color: #ffffff;
}

.site-footer .brand-logo {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow:
        0 18px 42px rgba(66, 207, 255, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7) !important;
}

.site-footer .brand .brand-name {
    filter: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border-width: 1px;
    border-color: transparent;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--premium-shadow-xs);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        border-color 0.25s var(--ease),
        background 0.25s var(--ease);
}

.btn-secondary {
    color: #0757c8 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
    border  : 2px solid;
    border-color: rgba(22, 119, 255, 0.16);
    box-shadow:
        0 14px 34px rgba(15, 48, 86, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.btn-dark {
    color: #ffffff;
    background: radial-gradient(circle at 20% 18%, rgba(66, 207, 255, 0.16), transparent 36%), linear-gradient(135deg, #071426 0%, #102a45 52%, #0a3b72 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 24px 60px rgba(7, 20, 38, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
    animation: fadeUp 0.75s var(--ease) 0.24s both;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-weight: 800;
    font-size: 0.94rem;
    box-shadow: 0 10px 28px rgba(20, 82, 140, 0.07);
}

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

.download-trust-panel {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: -10px 0 24px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line-strong);
    box-shadow: 0 16px 38px rgba(15, 48, 86, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: fadeUp 0.75s var(--ease) 0.28s both;
}

.download-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--ink-soft);
    background: #ffffff;
    border: 1px solid rgba(12, 28, 52, 0.08);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(13, 72, 135, 0.055);
}

.download-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex: 0 0 auto;
}

.download-meta-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
    color: #dcf5ff;
    font-size: 0.95rem;
    font-weight: 800;
}

.download-meta-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.download-meta-note span::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    color: #07331f;
    background: #7ee787;
    font-size: 0.74rem;
    font-weight: 950;
}

.eyebrow,
.trust-chip {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(22, 119, 255, 0.18);
    box-shadow:
        0 14px 34px rgba(15, 48, 86, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.icon {
    width: 1.05em;
    height: 1.05em;
    display: inline-block;
    flex: 0 0 auto;
    vertical-align: -0.16em;
}

.btn .icon {
    width: 1.12em;
    height: 1.12em;
    position: relative;
    z-index: 1;
}

.btn span:not(.check) {
    position: relative;
    z-index: 1;
}

.cta-actions .btn-dark .icon {
    opacity: 0.92;
}

.btn-primary {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow:
        0 20px 48px rgba(22, 119, 255, 0.3),
        0 8px 18px rgba(22, 119, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        inset 0 -1px 0 rgba(7, 20, 38, 0.1);
    animation: primaryButtonBreath 3.8s ease-in-out infinite;
}

.btn-primary:hover {
    box-shadow:
        0 28px 70px rgba(22, 119, 255, 0.36),
        0 10px 24px rgba(22, 119, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
    transform: translateY(-5px) scale(1.025);
    animation-play-state: paused;
}

.eyebrow,
.trust-chip,
.float-card,
.proof-panel,
.panel,
.feature-card,
.price-card,
.compare,
.step,
.security,
details,
.cta-panel {
    border: 1px solid var(--border-soft);
    box-shadow:
        var(--premium-shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-primary:hover .icon {
    transform: translateY(-2px) scale(1.12) rotate(-6deg);
    filter: drop-shadow(0 8px 12px rgba(255, 255, 255, 0.24));
}

.btn-primary::after {
    animation: buttonShine 3.4s ease-in-out infinite;
}

.btn-ripple {
    position: absolute;
    z-index: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.55);
    transform: translate(-50%, -50%) scale(0);
    animation: ripplePop 0.7s ease-out forwards;
}

.hero-actions .btn-primary {
    animation:
        primaryButtonBreath 3.8s ease-in-out infinite,
        gentleButtonNudge 5.4s ease-in-out 1.2s infinite;
}

.hero-actions .btn-primary:hover {
    animation-play-state: paused;
}

.trust-chip,
.side-item,
.shortcut,
.control,
.plan-icon,
.feature-icon {
    transition:
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease),
        border-color 0.28s var(--ease),
        background 0.28s var(--ease);
}

.trust-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 119, 255, 0.24);
    box-shadow:
        0 18px 46px rgba(15, 48, 86, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.btn-primary[href*="download"] .icon,
a.btn-primary[href="#download"] .icon {
    color: #ffffff;
}

.btn-primary:not([href*="download"]):not([href="#download"]) {
    color: #ffffff;
    background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 36%), linear-gradient(135deg, var(--action-blue-2) 0%, var(--action-blue) 58%, #42cfff 100%);
    box-shadow:
        0 20px 50px rgba(22, 119, 255, 0.28),
        0 8px 20px rgba(66, 207, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-primary:not([href*="download"]):not([href="#download"]):hover {
    box-shadow:
        0 30px 76px rgba(22, 119, 255, 0.36),
        0 0 0 8px rgba(22, 119, 255, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn-secondary:hover {
    color: #064ba8;
    background: radial-gradient(circle at 20% 12%, rgba(66, 207, 255, 0.14), transparent 34%), linear-gradient(180deg, #ffffff 0%, #eaf5ff 100%);
    border-color: rgba(22, 119, 255, 0.28);
    box-shadow:
        0 22px 56px rgba(15, 48, 86, 0.12),
        0 8px 22px rgba(22, 119, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.btn-dark:hover {
    background: radial-gradient(circle at 20% 18%, rgba(66, 207, 255, 0.22), transparent 36%), linear-gradient(135deg, #06111f 0%, #102f52 52%, #0757c8 100%);
    box-shadow:
        0 34px 86px rgba(7, 20, 38, 0.34),
        0 0 0 8px rgba(7, 20, 38, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.price-card:not(.premium) .btn-primary,
.price-card:not(.premium) a.btn-primary {
    background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #1677ff 0%, #42cfff 100%);
    box-shadow:
        0 18px 44px rgba(22, 119, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.price-card.premium .btn-primary,
.price-card.premium a.btn-primary {
    background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.3), transparent 34%), linear-gradient(135deg, #0f9f62 0%, #18b978 52%, #35d7ff 100%);
    box-shadow:
        0 24px 62px rgba(22, 184, 111, 0.3),
        0 8px 22px rgba(53, 215, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.cta-panel .btn-secondary {
    color: #071426;
    background: linear-gradient(180deg, #ffffff 0%, #eaf5ff 100%);
    border-color: rgba(255, 255, 255, 0.42);
}

.cta-panel .btn-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-primary[href*="download"]::before,
a.btn-primary[href="#download"]::before {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.52), transparent 32%), linear-gradient(135deg, rgba(22, 184, 111, 0.4), rgba(53, 215, 255, 0.34), rgba(255, 214, 90, 0.18));
}

.btn-primary[href*="download"],
a.btn-primary[href="#download"] {
    animation: downloadButtonBreath 3.8s ease-in-out infinite;
}

.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    opacity: 0.72;
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.42;
    animation: orbFloat 12s ease-in-out infinite;
}

.glow.one {
    width: 300px;
    height: 300px;
    left: -120px;
    top: 160px;
    background: rgba(22, 119, 255, 0.25);
}

.glow.two {
    width: 260px;
    height: 260px;
    right: -120px;
    top: 360px;
    animation-delay: -4s;
    background: rgba(66, 207, 255, 0.18);
}

.glow.three {
    width: 240px;
    height: 240px;
    left: 50%;
    bottom: -80px;
    animation-delay: -7s;
    background: rgba(24, 185, 120, 0.14);
}

.hero {
    position: relative;
    padding: 88px 0 72px;
}

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

.hero-lead {
    margin: 0 0 30px;
    color: var(--muted);
    animation: fadeUp 0.75s var(--ease) 0.16s both;
    font-size: clamp(1.02rem, 1.14vw, 1.15rem);
    line-height: 1.72;
    max-width: 620px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    min-height: 590px;
    isolation: isolate;
    animation: fadeScale 0.95s var(--ease) 0.22s both;
}

.browser-stage {
    position: absolute;
    inset: 34px 0 auto;
    z-index: 3;
    border-radius: 42px;
    padding: 12px;
    transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.72)) padding-box,
        linear-gradient(135deg, rgba(22, 119, 255, 0.34), rgba(66, 207, 255, 0.28)) border-box;
    animation: deviceFloat 7s ease-in-out 1s infinite;
    will-change: transform;
    border: 1px solid transparent;
    box-shadow:
        0 52px 135px rgba(7, 20, 38, 0.25),
        0 22px 62px rgba(22, 119, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.browser-window {
    overflow: hidden;
    border-radius: 32px;
    background: white;
    border: 1px solid rgba(12, 28, 52, 0.095);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(12, 28, 52, 0.045);
}

.browser-top {
    height: 68px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg, #ffffff, #f2f7fd);
    border-bottom: 1px solid rgba(12, 28, 52, 0.085);
}

.traffic {
    display: flex;
    gap: 8px;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.dot.red {
    background: #ff6b6b;
}

.dot.yellow {
    background: #ffd65a;
}

.dot.green {
    background: #24c77a;
}

.address {
    flex: 1;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: var(--muted);
    background: white;
    font-size: 0.88rem;
    font-weight: 800;
    border: 1px solid rgba(12, 28, 52, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 8px 18px rgba(15, 48, 86, 0.045);
}

.shield-dot {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--green), #6decb3);
    box-shadow: 0 12px 24px rgba(36, 199, 122, 0.18);
}

.browser-body {
    display: grid;
    grid-template-columns: 82px 1fr;
    min-height: 440px;
    background: #ffffff;
}

.side {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, #eff7ff 0%, #ffffff 100%);
    border-right-color: rgba(12, 28, 52, 0.07);
}

.side-item {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--blue);
    box-shadow: 0 10px 26px rgba(13, 72, 135, 0.1);
}

.side-item svg {
    width: 22px;
    height: 22px;
}

.screen {
    padding: 24px;
    background: radial-gradient(circle at 15% 2%, rgba(22, 119, 255, 0.07), transparent 26%), linear-gradient(180deg, #ffffff, #f7fafd);
}

.kid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.kid-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #1677ff, #42cfff);
    box-shadow: 0 16px 32px rgba(22, 119, 255, 0.18);
}

.avatar svg {
    width: 30px;
    height: 30px;
}

.kid-profile strong {
    display: block;
    font-family: var(--heading);
    letter-spacing: -0.02em;
    font-size: 1.03rem;
}

.kid-profile span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.86rem;
}

.safe-badge {
    padding: 10px 13px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--green), #6decb3);
    font-weight: 900;
    font-size: 0.88rem;
    box-shadow: 0 14px 26px rgba(36, 199, 122, 0.2);
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.shortcut {
    min-height: 92px;
    padding: 14px 10px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    gap: 6px;
    color: var(--ink-soft);
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(13, 72, 135, 0.08);
    font-family: var(--heading);
    font-weight: 700;
    text-align: center;
    transition:
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease);
}

.shortcut:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(13, 72, 135, 0.13);
}

.shortcut svg {
    width: 30px;
    height: 30px;
    color: var(--blue);
}

.control-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.control {
    padding: 15px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(13, 72, 135, 0.08);
}

.control small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.control strong {
    display: block;
    margin-top: 2px;
    font-family: var(--heading);
    letter-spacing: -0.02em;
}

.switch {
    width: 56px;
    height: 30px;
    padding: 4px;
    border-radius: 999px;
    margin-top: 10px;
    background: #d9e8f4;
}

.switch::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(7, 25, 47, 0.16);
    transform: translateX(26px);
}

.float-card {
    position: absolute;
    z-index: 4;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.float-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.parent-card {
    width: 248px;
    right: -20px;
    top: 0;
    animation: softFloat 5.8s ease-in-out infinite;
}

.usage-card {
    width: 226px;
    left: -28px;
    bottom: 38px;
    animation: softFloat 6.2s ease-in-out 0.3s infinite;
}

.ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 12px auto 2px;
    background: conic-gradient(var(--blue) 68%, #e6f2fa 0);
}

.ring span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    color: var(--blue-2);
    font-family: var(--heading);
    font-weight: 800;
}

.decor {
    position: absolute;
    z-index: 1;
    border-radius: 34px;
    pointer-events: none;
    filter: saturate(1.08);
}

.decor.one {
    width: 132px;
    height: 132px;
    right: 28px;
    bottom: 4px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(22, 119, 255, 0.16), rgba(66, 207, 255, 0.08));
    box-shadow: none;
    animation: decorMove 8s ease-in-out infinite;
}

.decor.two {
    width: 118px;
    height: 118px;
    left: -34px;
    top: 126px;
    transform: rotate(-14deg);
    background: linear-gradient(135deg, rgba(24, 185, 120, 0.14), rgba(66, 207, 255, 0.08));
    box-shadow: none;
    animation: decorMove 9s ease-in-out -2s infinite;
}

.proof span,
.kid-profile span,
.status-row,
.control small {
    font-weight: 700;
}

.feature-card p,
.step p,
details p,
.plan-desc,
.list-item span,
.security span:last-child,
.float-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    font-weight: 500;
}

.kid-profile strong,
.control strong,
.dash-row strong {
    font-size: 0.98rem;
    line-height: 1.28;
}

.kid-profile span,
.control small,
.dash-row span,
.status-row,
.address {
    font-size: 0.82rem;
    line-height: 1.35;
}

.side-item,
.shortcut,
.control {
    background: linear-gradient(180deg, #ffffff, #fafcff);
    border-color: rgba(12, 28, 52, 0.075);
    box-shadow:
        0 12px 28px rgba(15, 48, 86, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.safe-badge,
.shield-dot,
.check,
.mini-switch {
    background: linear-gradient(135deg, #12a66a, #3ddeaa);
    box-shadow: 0 12px 26px rgba(18, 166, 106, 0.22);
}

.float-card,
.proof-panel,
.panel,
.feature-card,
.price-card,
.compare,
.step,
.security,
details {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 255, 0.86));
    border-color: rgba(12, 28, 52, 0.085);
    box-shadow:
        0 18px 48px rgba(15, 48, 86, 0.085),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.side-item,
.shortcut,
.control,
.proof,
.list-item,
.dash-row {
    border: 1px solid var(--border-soft);
    box-shadow:
        0 12px 30px rgba(15, 48, 86, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.check,
.safe-badge,
.shield-dot,
.mini-switch {
    box-shadow:
        0 12px 26px rgba(18, 166, 106, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.side-item:hover,
.shortcut:hover,
.control:hover,
.plan-icon:hover,
.feature-icon:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow:
        0 22px 54px rgba(15, 48, 86, 0.13),
        0 8px 22px rgba(22, 119, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.proof-strip {
    padding: 4px 0 70px;
}

.proof-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.proof {
    padding: 24px 18px;
    border-radius: 26px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(12, 28, 52, 0.07);
}

.proof b {
    display: block;
    font-family: var(--heading);
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #071426, #0757c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.proof span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
}

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

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(12, 28, 52, 0.085);
    border: 1px solid rgba(12, 28, 52, 0.085);
    box-shadow:
        0 18px 48px rgba(15, 48, 86, 0.082),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition:
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease),
        border-color 0.28s var(--ease);
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -52px;
    width: 150px;
    height: 150px;
    border-radius: 42px;
    background: rgba(22, 119, 255, 0.065);
    transform: rotate(18deg);
    transition:
        transform 0.28s var(--ease),
        background 0.28s var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 132, 255, 0.24);
}

.feature-card:hover::after {
    transform: rotate(12deg) scale(1.08);
    background: rgba(10, 132, 255, 0.1);
}

.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: #0757c8;
    background: linear-gradient(180deg, #eff7ff, #ffffff);
    box-shadow: 0 14px 30px rgba(22, 119, 255, 0.1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}

.panel {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 38px;
}

.panel p {
    color: var(--muted);
    font-weight: 650;
    font-size: 1.08rem;
    line-height: 1.75;
}

.list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
}

.list-item strong {
    display: block;
    font-family: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.list-item span {
    color: var(--muted);
    font-weight: 650;
}

.dashboard {
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: white;
    background: radial-gradient(circle at 20% 0%, rgba(66, 207, 255, 0.14), transparent 28%), linear-gradient(145deg, #071426 0%, #102a45 55%, #071426 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 46px 125px rgba(7, 20, 38, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dashboard-top {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at 18% 18%, rgba(84, 216, 255, 0.22), transparent 28%), linear-gradient(135deg, #17395f, #07192f);
}

.dashboard-top strong {
    font-family: var(--heading);
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.dashboard-body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.dash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 12px 26px rgba(0, 0, 0, 0.075);
}

.dash-row strong {
    font-family: var(--heading);
    letter-spacing: -0.02em;
}

.dash-row span {
    color: #b9cce0;
    font-size: 0.92rem;
    font-weight: 700;
}

.meter {
    width: 150px;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #18b978, #42cfff);
    box-shadow: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 24px;
    align-items: stretch;
}

.price-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(12, 28, 52, 0.1);
    border: 1px solid rgba(12, 28, 52, 0.1);
    box-shadow:
        0 20px 58px rgba(15, 48, 86, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition:
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 119, 255, 0.22);
    box-shadow:
        0 34px 92px rgba(10, 38, 78, 0.15),
        0 10px 28px rgba(22, 119, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.price-card.premium {
    border: 1px solid rgba(22, 119, 255, 0.28);
    outline: 1px solid rgba(66, 207, 255, 0.18);
    outline-offset: 4px;
    background: radial-gradient(circle at 18% 10%, rgba(22, 119, 255, 0.08), transparent 32%), linear-gradient(180deg, #ffffff, #f1f7ff);
    border-color: rgba(22, 119, 255, 0.24);
    box-shadow:
        0 34px 92px rgba(22, 119, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.price-card.premium:hover {
    box-shadow:
        0 46px 125px rgba(22, 119, 255, 0.21),
        0 18px 48px rgba(7, 20, 38, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.plan-name {
    font-family: var(--heading);
    font-size: clamp(1.45rem, 1.75vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    margin-bottom: 8px;
}

.plan-desc {
    min-height: 58px;
    color: var(--muted);
    margin: 0 0 26px;
    font-weight: 650;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 8px;
}

.price b {
    font-family: var(--heading);
    font-size: clamp(3rem, 4.4vw, 4.45rem);
    line-height: 0.95;
    letter-spacing: -0.058em;
    background: linear-gradient(135deg, #071426, #0757c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price span {
    padding-bottom: 10px;
    color: var(--muted);
    font-weight: 900;
}

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

.plan-list li {
    display: flex;
    gap: 11px;
    color: var(--ink-soft);
    font-weight: 780;
    position: relative;
    align-items: flex-start;
}

.plan-list .dim {
    color: var(--muted-2);
}

.compare {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 30px;
    background: white;
    border-color: rgba(12, 28, 52, 0.1);
    border: 1px solid rgba(12, 28, 52, 0.1);
    box-shadow:
        0 22px 60px rgba(15, 48, 86, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.compare table {
    width: 100%;
    border-collapse: collapse;
}

.compare th,
.compare td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(12, 28, 52, 0.075);
    vertical-align: middle;
}

.compare th {
    font-family: var(--heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: #f2f7fd;
    white-space: nowrap;
}

.compare tr:last-child td {
    border-bottom: 0;
}

.yes {
    color: #0f9b5f;
    font-weight: 950;
}

.no {
    color: var(--muted-2);
    font-weight: 900;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}

.step {
    counter-increment: step;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(12, 28, 52, 0.085);
    border: 1px solid rgba(12, 28, 52, 0.085);
    box-shadow:
        0 18px 48px rgba(15, 48, 86, 0.082),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.step::before {
    content: counter(step);
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 14px 30px rgba(10, 132, 255, 0.2);
    font-family: var(--heading);
    font-weight: 800;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.security {
    padding: 24px;
    border-radius: 28px;
    background: white;
    border-color: rgba(12, 28, 52, 0.085);
    border: 1px solid rgba(12, 28, 52, 0.085);
    box-shadow:
        0 18px 48px rgba(15, 48, 86, 0.082),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.security b {
    display: block;
    margin: 13px 0 6px;
    font-family: var(--heading);
    letter-spacing: -0.02em;
}

.security span:last-child {
    color: var(--muted);
    font-weight: 650;
    font-size: 0.95rem;
}

.faq {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

details {
    padding: 0 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 255, 0.86));
    border: 1px solid rgba(12, 28, 52, 0.085);
    box-shadow:
        0 18px 48px rgba(15, 48, 86, 0.085),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    border-color: rgba(12, 28, 52, 0.085);
}

details[open] {
    border-color: rgba(22, 119, 255, 0.2);
    box-shadow:
        0 24px 64px rgba(15, 48, 86, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

details p {
    margin: 0 0 22px;
    color: var(--muted);
    font-weight: 650;
}

.cta {
    padding-bottom: 112px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: 46px;
    color: white;
    background: radial-gradient(circle at 15% 14%, rgba(66, 207, 255, 0.22), transparent 28%), radial-gradient(circle at 86% 68%, rgba(22, 119, 255, 0.2), transparent 28%), linear-gradient(135deg, #071426 0%, #102a45 54%, #0757c8 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 48px 130px rgba(7, 20, 38, 0.26),
        0 14px 42px rgba(22, 119, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cta-panel::after {
    content: "";
    position: absolute;
    right: -74px;
    top: -74px;
    width: 260px;
    height: 260px;
    border-radius: 64px;
    transform: rotate(22deg);
    background: rgba(255, 255, 255, 0.08);
}

.cta-panel p {
    max-width: 650px;
    color: #dcf5ff;
    font-weight: 650;
    font-size: 1.14rem;
}

.feature-card,
.price-card,
.proof,
.step,
.security,
details,
.panel,
.dashboard,
.cta-panel {
    transition:
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease),
        border-color 0.28s var(--ease),
        opacity 0.85s var(--ease);
}

.feature-card:hover,
.price-card:hover,
.proof:hover,
.step:hover,
.security:hover,
details:hover,
.panel:hover {
    transform: translateY(-6px);
}

.price-card .plan-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: #0757c8;
    background: linear-gradient(180deg, #eff7ff, #ffffff);
    border: 1px solid rgba(22, 119, 255, 0.12);
    box-shadow: 0 12px 26px rgba(15, 48, 86, 0.075);
}

.price-card.premium .plan-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #0757c8, #1677ff, #42cfff);
    box-shadow: 0 16px 34px rgba(22, 119, 255, 0.2);
}

.plan-list li .check,
.list-item .check {
    margin-top: 1px;
}

.compare td:first-child {
    font-weight: 700;
    color: var(--ink-soft);
    display: table-cell;
}

.compare td:first-child::before {
    content: "";
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 999px;
    margin-right: 10px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 0 0 5px rgba(22, 119, 255, 0.07);
    vertical-align: 0.06em;
}

.compare .yes,
.compare .no {
    white-space: nowrap;
}

.compare .yes::before,
.compare .no::before {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 900;
    vertical-align: 1px;
}

.compare .yes::before {
    content: "✓";
    color: #ffffff;
    background: linear-gradient(135deg, #12a66a, #3ddeaa);
    box-shadow: 0 8px 18px rgba(18, 166, 106, 0.18);
}

.compare .no::before {
    content: "—";
    color: #64748b;
    background: #eef3f8;
    box-shadow: inset 0 0 0 1px rgba(12, 28, 52, 0.06);
}

.security .check,
.list-item .check,
.plan-list .check {
    box-shadow: 0 10px 22px rgba(18, 166, 106, 0.18);
}

.feature-card:hover,
.step:hover,
.security:hover,
details:hover,
.panel:hover {
    border-color: rgba(22, 119, 255, 0.22);
    box-shadow:
        0 28px 74px rgba(10, 38, 78, 0.14),
        0 8px 24px rgba(22, 119, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.feature-icon,
.plan-icon {
    border: 1px solid rgba(22, 119, 255, 0.12);
    box-shadow:
        0 14px 32px rgba(22, 119, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cta-panel::before {
    border-color: rgba(255, 255, 255, 0.18);
}

.compare .yes::before,
.compare .no::before,
.check {
    transition:
        transform 0.26s var(--ease),
        box-shadow 0.26s var(--ease);
}

.compare td:hover .yes::before,
.compare td:hover .no::before,
.check:hover {
    transform: scale(1.12) rotate(-6deg);
}

footer {
    padding: 36px 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 252, 0.95));
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--muted);
    font-weight: 760;
}

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

footer.site-footer {
    position: relative;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
    color: #d8e8f8;
    background: radial-gradient(circle at 12% 0%, rgba(66, 207, 255, 0.16), transparent 28%), radial-gradient(circle at 88% 16%, rgba(22, 119, 255, 0.18), transparent 26%), linear-gradient(145deg, #061426 0%, #09203a 52%, #071426 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -28px 90px rgba(7, 20, 38, 0.12);
}

footer.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.site-footer a {
    color: inherit;
}

.footer-trust-strip {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.085);
}

.footer-trust-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #061426;
    background: linear-gradient(135deg, #7ee787, #42cfff);
    font-family: var(--heading);
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(66, 207, 255, 0.16);
}

.footer-trust-item strong,
.footer-trust-item small {
    display: block;
}

.footer-trust-item strong {
    color: #ffffff;
    font-family: var(--heading);
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-trust-item small {
    margin-top: 2px;
    color: #a9bfd4;
    font-weight: 750;
    line-height: 1.35;
}

.footer-shell {
    position: relative;
    z-index: 1;
    padding: 58px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(350px, 1.50fr) repeat(3, minmax(145px, 0.65fr)) minmax(350px, 1.50fr);
    gap: 30px;
    align-items: start;
}

.footer-brand-card,
.footer-contact-card {
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.062);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-disclaimer {
    margin: 18px 0 0;
    padding: 14px;
    border-radius: 20px;
    color: #e8f6ff;
    background: rgba(66, 207, 255, 0.085);
    border: 1px solid rgba(66, 207, 255, 0.14);
    font-weight: 760;
    line-height: 1.55;
}

.footer-disclaimer strong {
    color: #7ee787;
    font-family: var(--heading);
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #eaf7ff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.86rem;
    font-weight: 850;
}

.footer-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b7cada;
    font-weight: 780;
    transition:
        color 0.22s var(--ease),
        transform 0.22s var(--ease);
}

.footer-list a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(126, 231, 135, 0.78);
    box-shadow: 0 0 0 4px rgba(126, 231, 135, 0.075);
}

.footer-list a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-card p {
    margin: 0 0 16px;
    color: #a9bfd4;
    font-weight: 720;
    line-height: 1.55;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    color: #d8e8f8;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        background 0.22s var(--ease),
        transform 0.22s var(--ease),
        border-color 0.22s var(--ease);
}

.footer-contact-row + .footer-contact-row,
.footer-address {
    margin-top: 10px;
}

.footer-contact-row:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.078);
    border-color: rgba(66, 207, 255, 0.2);
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 13px;
    color: #061426;
    background: linear-gradient(135deg, #ffffff, #d9f3ff);
    font-family: var(--heading);
    font-weight: 900;
}

.footer-contact-row b,
.footer-contact-row em,
.footer-address b,
.footer-address span {
    display: block;
}

.footer-contact-row b,
.footer-address b {
    color: #ffffff;
    font-family: var(--heading);
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.footer-contact-row em,
.footer-address span {
    color: #a9bfd4;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 740;
    line-height: 1.45;
}

.footer-address {
    padding: 14px;
    border-radius: 18px;
    background: rgba(126, 231, 135, 0.075);
    border: 1px solid rgba(126, 231, 135, 0.14);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
    color: #9eb4c8;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.92rem;
    font-weight: 760;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-links a {
    color: #bdd0e2;
    font-weight: 820;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #eaf7ff;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 850;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--blue-2);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    font-size: 0.92rem;
    font-weight: 700;
    animation: fadeUp 0.75s var(--ease) both;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(36, 199, 122, 0.16);
    animation: pulse 1.8s ease-in-out infinite;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp 0.75s var(--ease) 0.32s both;
}

.check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
}

.status-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.88rem;
    font-weight: 900;
}

.mini-switch {
    width: 42px;
    height: 23px;
    border-radius: 999px;
    padding: 3px;
    background: var(--green);
}

.mini-switch::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: white;
    transform: translateX(19px);
}

section {
    padding: 90px 0;
}

.best-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    font-family: var(--heading);
    font-weight: 800;
    font-size: 0.88rem;
    color: #071426;
    background: linear-gradient(135deg, #ffffff, #dcebff);
    border: 1px solid rgba(22, 119, 255, 0.18);
    box-shadow:
        0 12px 28px rgba(15, 48, 86, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.billing-note {
    color: var(--muted);
    font-weight: 850;
    margin-bottom: 24px;
}

@keyframes buttonShine {
    0%,
    42% {
        transform: translateX(-130%);
    }
    58%,
    100% {
        transform: translateX(130%);
    }
}

@keyframes decorMove {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -18px;
    }
}

@keyframes deviceFloat {
    0%,
    100% {
        transform: perspective(1100px) rotateY(-7deg) rotateX(3deg) translateY(0);
    }
    50% {
        transform: perspective(1100px) rotateY(-4deg) rotateX(2deg) translateY(-14px);
    }
}

@keyframes downloadButtonBreath {
    0%,
    100% {
        box-shadow:
            0 22px 54px rgba(22, 184, 111, 0.28),
            0 0 0 0 rgba(22, 184, 111, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.42);
    }
    50% {
        box-shadow:
            0 28px 68px rgba(22, 184, 111, 0.34),
            0 0 0 9px rgba(22, 184, 111, 0.055),
            inset 0 1px 0 rgba(255, 255, 255, 0.48);
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleButtonNudge {
    0%,
    72%,
    100% {
        translate: 0 0;
    }
    78% {
        translate: 0 -3px;
    }
    84% {
        translate: 0 0;
    }
    90% {
        translate: 0 -2px;
    }
    96% {
        translate: 0 0;
    }
}

@keyframes gradientMove {
    0%,
    100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 26px, 0) scale(1.08);
    }
}

@keyframes primaryButtonBreath {
    0%,
    100% {
        box-shadow:
            0 20px 48px rgba(22, 119, 255, 0.26),
            0 0 0 0 rgba(22, 119, 255, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.38);
    }
    50% {
        box-shadow:
            0 24px 60px rgba(22, 119, 255, 0.32),
            0 0 0 9px rgba(22, 119, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 7px rgba(36, 199, 122, 0.16);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 13px rgba(36, 199, 122, 0.05);
        transform: scale(1.08);
    }
}

@keyframes ripplePop {
    to {
        transform: translate(-50%, -50%) scale(18);
        opacity: 0;
    }
}

@keyframes softFloat {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -12px;
    }
}

@media (max-width: 1180px) {
    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, minmax(160px, 0.7fr));
    }
    .footer-contact-card {
        grid-column: span 2;
    }
}

@media (max-width: 1080px) {
    h1 {
        max-width: 860px;
    }
    .hero-grid,
    .split,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        min-height: 630px;
    }
    .browser-stage {
        position: relative;
        inset: auto;
    }
    .parent-card,
    .usage-card {
        position: relative;
        inset: auto;
        width: auto;
        margin-top: 14px;
    }
    .decor {
        display: none;
    }
    .hero-lead {
        max-width: 720px;
    }
    .feature-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof-panel,
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    body {
        font-size: 15.5px;
    }
    h1 {
        font-size: clamp(2.55rem, 10.5vw, 4.3rem);
        line-height: 1.06;
        letter-spacing: -0.048em;
    }
    h2 {
        font-size: clamp(1.85rem, 8vw, 2.9rem);
        line-height: 1.1;
        letter-spacing: -0.04em;
    }
    .hero-lead,
    .section-head p,
    .panel p,
    .cta-panel p {
        font-size: 1rem;
    }
    .nav-links {
        display: none;
    }
    .nav-inner {
        min-height: 72px;
    }
    .brand span {
        display: none;
    }
    .footer-inner .brand span {
        display: inline;
    }
    .brand-logo {
        width: 54px !important;
        height: 54px !important;
        max-width: 54px !important;
    }
    .navbar .brand > span:last-child {
        display: none !important;
    }
    .navbar .brand .brand-name {
        display: inline-flex !important;
        font-size: 1.22rem;
    }
    .site-footer .brand span {
        display: inline-flex;
    }
    .hero {
        padding-top: 58px;
    }
    .browser-stage {
        transform: none;
        animation: none;
    }
    .browser-body {
        grid-template-columns: 1fr;
    }
    .side {
        flex-direction: row;
        overflow: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        background: #f2f8ff;
    }
    .shortcut-grid,
    .control-strip,
    .feature-grid,
    .steps,
    .proof-panel,
    .security-grid {
        grid-template-columns: 1fr;
    }
    .compare {
        overflow-x: auto;
    }
    .compare table {
        min-width: 640px;
    }
    .feature-card {
        min-height: auto;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-card,
    .footer-contact-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .language-btn span {
        display: none;
    }
    .language-btn {
        width: 50px;
        padding: 0;
    }
    .language-panel {
        right: -74px;
        width: min(300px, calc(100vw - 28px));
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
        line-height: 1.58;
    }
    .container {
        width: min(var(--max), calc(100% - 28px));
    }
    h1 {
        font-size: clamp(2.35rem, 12vw, 3.65rem);
        line-height: 1.08;
        letter-spacing: -0.038em;
    }
    h2 {
        font-size: clamp(1.72rem, 9vw, 2.45rem);
        line-height: 1.12;
        letter-spacing: -0.032em;
    }
    .topbar-inner {
        font-size: 0.82rem;
        flex-wrap: wrap;
        padding: 8px 0;
    }
    .nav-actions .btn-secondary {
        display: none;
    }
    .brand-logo,
    .brand-fallback {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }
    .nav-actions .btn {
        width: auto;
        padding-inline: 18px;
    }
    .brand-logo {
        width: 48px !important;
        height: 48px !important;
        max-width: 48px !important;
        border-radius: 15px !important;
    }
    .navbar .brand .brand-name {
        font-size: 1.02rem;
        letter-spacing: -0.035em;
    }
    .brand .brand-name .browser-word {
        margin-left: 5px;
    }
    .language-wrap {
        order: -1;
    }
    .language-btn {
        min-height: 46px;
        width: 46px;
    }
    .language-panel {
        right: -88px;
    }
    .btn {
        width: 100%;
        min-height: 54px;
        font-size: 0.92rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .download-trust-panel,
    .download-meta-note {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }
    .download-trust-item,
    .download-meta-note span {
        justify-content: center;
    }
    .proof span,
    .trust-chip,
    .billing-note,
    .plan-list li {
        font-size: 0.9rem;
    }
    .hero-visual {
        min-height: auto;
    }
    .browser-top {
        height: auto;
        min-height: 62px;
        flex-wrap: wrap;
        padding: 14px;
    }
    .address {
        order: 3;
        flex-basis: 100%;
        margin: 0;
    }
    .screen {
        padding: 18px;
    }
    .kid-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .safe-badge {
        align-self: flex-start;
    }
    .hero-lead {
        line-height: 1.65;
    }
    .panel,
    .price-card,
    .cta-panel {
        border-radius: 30px;
        padding: 24px;
    }
    .proof-strip {
        padding-bottom: 52px;
    }
    .cta {
        padding-bottom: 76px;
    }
    .compare td:first-child::before {
        margin-right: 7px;
    }
    .compare .yes::before,
    .compare .no::before {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    .plan-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }
    .price-card.premium {
        outline-offset: 2px;
    }
    .footer-trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-shell {
        padding: 42px 0 26px;
    }
    .footer-brand-card,
    .footer-contact-card {
        padding: 22px;
        border-radius: 26px;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    section {
        padding: 66px 0;
    }
}

@media (max-width: 420px) {
    .navbar .brand .brand-name .browser-word {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
    .browser-stage,
    .parent-card,
    .usage-card,
    .decor.one,
    .decor.two,
    .glow,
    .gradient-text,
    .pulse {
        animation: none !important;
    }
    .btn,
    .language-btn,
    .language-apply,
    .language-reset,
    .trust-chip,
    .side-item,
    .shortcut,
    .control,
    .plan-icon,
    .feature-icon {
        transition-duration: 0.01ms !important;
    }
    .btn-primary,
    .hero-actions .btn-primary {
        animation: none !important;
    }
    .btn-ripple {
        display: none !important;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.telegram-support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 5px 22px;
    border-radius: 999px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #229ed9, #1677ff);
    font-weight: 800;
    line-height: 1.5;
    box-shadow: 0 18px 42px rgba(34, 158, 217, 0.22);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
    margin-bottom: 30px;
}

.telegram-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(34, 158, 217, 0.28);
}

.telegram-icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.telegram-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 560px) {
    .telegram-support-btn {
        width: 100%;
    }
}
