/* =========================================================
   PRIVALENS — SOLID ORANGE & MINIMALIST LANDING PAGE
========================================================= */

:root {
    --primary: #ff6b00;
    --primary-dark: #e05e00;
    --secondary: #ff8533;

    --dark: #111827;
    --dark-soft: #1f2937;

    --text: #2b303a;
    --muted: #6b7280;

    --light: #fafafa;
    --orange-light: #fff5ed;

    --white: #ffffff;
    --border: rgba(255, 107, 0, 0.15);

    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.04);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter",
        "Segoe UI", Roboto, sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;
    letter-spacing: -0.01em;

    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* =========================================================
   SMOOTH THEME TRANSITIONS
========================================================= */

body,
.navbar,
.hero,
.features-section,
.how-section,
.cta-section,
footer,
.browser-window,
.browser-top,
.browser-body,
.browser-address,
.fake-content,
.fake-card,
.privacy-floating-card,
.feature-card,
.feature-icon,
.chat-placeholder,
.btn,
.cta-card,
h1,
h2,
h3,
p,
span,
i {
    transition-property:
        background-color,
        color,
        border-color,
        box-shadow;

    transition-duration: 0.5s;

    transition-timing-function: ease-in-out;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: var(--dark);
}

.brand-logo {
    width: 22px; /* Made even smaller */
    height: 22px; /* Made even smaller */

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    overflow: hidden;
}

.nav-link {
    color: var(--dark-soft) !important;

    font-weight: 500;
    font-size: 0.9rem;

    padding: 0.6rem 0.85rem !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-start {
    border-radius: 8px !important;

    padding: 0.6rem 1.2rem !important;

    border: none !important;

    background: var(--primary) !important;

    color: var(--white) !important;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        background-color 0.5s ease-in-out,
        color 0.5s ease-in-out;
}

.nav-start:hover {
    background: var(--primary-dark) !important;

    transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    padding-top: 100px;
    padding-bottom: 60px;

    background: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 6px 14px;

    border-radius: 999px;

    background: var(--orange-light);

    border: 1px solid var(--border);

    color: var(--primary);

    font-size: 0.8rem;
    font-weight: 600;

    margin-bottom: 22px;
}


/* =========================================================
   HERO MAGNETIC TEXT BLUR
========================================================= */

.h1-wrapper {
    position: relative;

    margin-bottom: 24px;

    --mouse-x: -500px;
    --mouse-y: -500px;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);

    line-height: 1.08;

    letter-spacing: -0.04em;

    font-weight: 700;

    color: #000000 !important;

    margin: 0;

    width: fit-content;
}

.hero h1 .highlight {
    color: var(--primary) !important;
}


/* FRONT LAYER (Ultra-smooth gradient fade out) */

.hero h1:not(.h1-blurred) {
    position: relative;

    z-index: 2;

    -webkit-mask-image:
        radial-gradient(
            circle 220px at var(--mouse-x) var(--mouse-y),
            black 0%,
            rgba(0, 0, 0, 0.95) 25%,
            rgba(0, 0, 0, 0.7) 45%,
            rgba(0, 0, 0, 0.3) 70%,
            transparent 100%
        );

    mask-image:
        radial-gradient(
            circle 220px at var(--mouse-x) var(--mouse-y),
            black 0%,
            rgba(0, 0, 0, 0.95) 25%,
            rgba(0, 0, 0, 0.7) 45%,
            rgba(0, 0, 0, 0.3) 70%,
            transparent 100%
        );
}


/* BACK BLURRED LAYER (Matched ultra-smooth gradient fade in) */

.h1-blurred {
    position: absolute;

    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;

    padding: 50px;

    z-index: 1;

    pointer-events: none;

    filter: blur(28px);

    color: #000000 !important;

    -webkit-mask-image:
        radial-gradient(
            circle 220px
            at calc(var(--mouse-x) + 50px)
            calc(var(--mouse-y) + 50px),

            transparent 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.7) 55%,
            rgba(0, 0, 0, 0.95) 75%,
            black 100%
        );

    mask-image:
        radial-gradient(
            circle 220px
            at calc(var(--mouse-x) + 50px)
            calc(var(--mouse-y) + 50px),

            transparent 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.7) 55%,
            rgba(0, 0, 0, 0.95) 75%,
            black 100%
        );
}

.h1-blurred span {
    color: var(--primary) !important;
}

.hero-description {
    font-size: 1.05rem;

    color: var(--muted);

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 8px;

    padding: 12px 22px;

    font-weight: 600;

    font-size: 0.95rem;
}

.hero-buttons .btn-dark {
    border: none;

    background: var(--primary);

    color: var(--white);

    transition:
        transform 0.2s ease,
        background-color 0.5s ease-in-out,
        color 0.5s ease-in-out;
}

.hero-buttons .btn-dark:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);
}

.hero-buttons .btn-light {
    background: var(--white);

    border: 1px solid #e5e7eb;

    color: var(--dark);

    transition:
        transform 0.2s ease,
        background-color 0.5s ease-in-out,
        border-color 0.5s ease-in-out,
        color 0.5s ease-in-out;
}

.hero-buttons .btn-light:hover {
    border-color: var(--dark);

    transform: translateY(-1px);
}

.hero-trust {
    display: flex;

    gap: 20px;

    margin-top: 32px;

    color: var(--muted);

    font-size: 0.82rem;
}

.hero-trust i {
    color: var(--primary);
}


/* =========================================================
   BROWSER WINDOW
========================================================= */

.hero-visual {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.browser-window {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 530px;

    background: white;

    border-radius: 14px;

    border: 1px solid #e5e7eb;

    box-shadow: var(--shadow);

    overflow: hidden;

    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background-color 0.5s ease-in-out;
}

.browser-window:hover {
    transform: translateY(-4px) scale(1.01);

    border-color: var(--primary);

    box-shadow:
        0 15px 35px rgba(255, 107, 0, 0.15);
}

.browser-top {
    height: 44px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 0 16px;

    background: #f9fafb;

    border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
    display: flex;

    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d1d5db;
}

.browser-address {
    flex: 1;

    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    border-radius: 6px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    color: var(--muted);

    font-size: 0.75rem;

    font-weight: 500;
}

.browser-address i {
    color: var(--primary);
}

.browser-body {
    padding: 24px;

    background: var(--white);
}

.fake-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 24px;
}

.fake-logo {
    width: 80px;
    height: 10px;

    border-radius: 4px;

    background: var(--primary);
}

.fake-menu {
    display: flex;

    gap: 8px;
}

.fake-menu span {
    width: 30px;
    height: 6px;

    border-radius: 4px;

    background: #e5e7eb;
}

.fake-content {
    background: #fafafa;

    padding: 20px;

    border-radius: 10px;

    border: 1px solid #f3f4f6;
}


/* =========================================================
   SPOTLIGHT CHAT (Reveals text under cursor)
========================================================= */

.spotlight-chat {
    position: relative;

    margin-bottom: 16px;

    height: 34px;

    user-select: none;

    width: 100%;

    --mouse-x: -200px;
    --mouse-y: -200px;
}

.spotlight-chat.orange-chat {
    justify-content: flex-start;
}

.spotlight-chat.grey-chat {
    justify-content: flex-end;
}

.spotlight-chat .chat-placeholder {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    -webkit-mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            transparent 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.9) 75%,
            black 100%
        );

    mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            transparent 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.9) 75%,
            black 100%
        );
}

.orange-chat .chat-placeholder::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 245px;
    height: 100%;

    background: var(--primary);

    border-radius: 10px;
}

.grey-chat .chat-placeholder::before {
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 75px;
    height: 100%;

    background: #d1d5db;

    border-radius: 10px;
}

.spotlight-chat .chat-text {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    line-height: 34px;

    font-size: 0.95rem;

    font-weight: 700;

    pointer-events: none;

    -webkit-mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            black 0%,
            rgba(0, 0, 0, 0.9) 40%,
            rgba(0, 0, 0, 0.4) 75%,
            transparent 100%
        );

    mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            black 0%,
            rgba(0, 0, 0, 0.9) 40%,
            rgba(0, 0, 0, 0.4) 75%,
            transparent 100%
        );
}

.orange-chat .chat-text {
    text-align: left;

    padding-left: 12px;

    color: var(--primary);

    width: 245px;
}

.grey-chat .chat-text {
    display: flex;

    justify-content: flex-end;
    padding-right: 20px;

    align-items: center;

    color: var(--dark-soft);
}


/* =========================================================
   PASSWORD CARD (Reveals text under cursor)
========================================================= */

.fake-card {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    padding: 14px;

    border-radius: 10px;

    background: var(--white);

    border: 1px solid #e5e7eb;

    cursor: pointer;

    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s ease,
        background-color 0.4s ease;
}

.fake-card:hover {
    transform: translateY(-2px) scale(1.008);

    border-color: var(--primary);

    box-shadow:
        0 8px 20px rgba(255, 107, 0, 0.1);
}

.fake-avatar {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--primary);
}

.fake-info {
    flex: 1;
}

.protected-text {
    font-size: 0.85rem;

    font-weight: 600;

    color: var(--primary);

    margin-bottom: 2px;
}

.spotlight-password {
    position: relative;

    display: inline-block;

    font-size: 0.95rem;

    user-select: none;

    line-height: 1.2;

    --mouse-x: -200px;
    --mouse-y: -200px;
}

.password-dots {
    color: var(--muted);

    letter-spacing: 2px;

    font-family: monospace;

    font-size: 0.85rem;

    display: block;

    -webkit-mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            transparent 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.9) 75%,
            black 100%
        );

    mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            transparent 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.9) 75%,
            black 100%
        );
}

.password-text {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    color: var(--primary);

    font-weight: 700;

    letter-spacing: normal;

    font-size: 0.95rem;

    opacity: 1;

    pointer-events: none;

    transition:
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    -webkit-mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            black 0%,
            rgba(0, 0, 0, 0.9) 40%,
            rgba(0, 0, 0, 0.4) 75%,
            transparent 100%
        );

    mask-image:
        radial-gradient(
            circle 110px
            at var(--mouse-x) var(--mouse-y),

            black 0%,
            rgba(0, 0, 0, 0.9) 40%,
            rgba(0, 0, 0, 0.4) 75%,
            transparent 100%
        );
}

.privacy-check {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--primary);
}

.privacy-floating-card {
    position: absolute;

    right: -80px;

    bottom: 20px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow: var(--shadow);

    animation: floatingCard 4s ease-in-out infinite;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--orange-light);

    color: var(--primary);
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 16px;
}

.section-heading h2 span {
    color: var(--primary);
}


/* =========================================================
   FEATURES (Interactive & Fun 5 Cards)
========================================================= */

.features-section {
    padding: 90px 0;

    background: var(--light);
}

.feature-card {
    height: 100%;

    padding: 30px;

    background: var(--white);

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    box-shadow: var(--shadow-sm);

    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);

    border-color: var(--primary);

    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    margin-bottom: 20px;

    font-size: 1.25rem;

    color: var(--primary);

    background: var(--orange-light);

    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);

    background: var(--primary);

    color: #ffffff;
}


/* =========================================================
   SCROLLING PRIVALENS LOGO
========================================================= */

.logo-scroll-section {
    position: relative;

    height: 88vh;

    margin-top: 10px;

    margin-bottom: -45px;

    overflow: hidden;
}


.logo-scroll-sticky {
    position: sticky;

    top: 0;

    height: 65vh;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: visible;
}


/* =========================================================
   LOGO CONTAINER
========================================================= */

.logo-glow {
    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 50px;

    background: transparent;
}


/* =========================================================
   SMALL SOFT WHITE GLOW
========================================================= */

.logo-glow::before {
    content: "";

    position: absolute;

    width: 115%;
    height: 115%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);

    filter: blur(25px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.scroll-logo {
    position: relative;

    width: 145px;

    height: auto;

    display: block;

    transform-origin: center center;

    will-change: width;

    filter: none;

    z-index: 1;
}


/* =========================================================
   HOW IT WORKS (Offset Text & Shifted Cards, No Outline)
========================================================= */

.how-section {
    padding: 90px 0;

    background: #ffffff;
}

.how-section,
.how-section .section-label,
.how-section h2,
.how-section h2 span,
.how-section .how-description,
.how-section .step-content h3,
.how-section .step-content p {
    color: #000000 !important;
}

/* Push workflow header text block slightly right from container edge */
.how-section .container > .row > .col-lg-5 {
    padding-left: 35px;
}

/* Shift the 3 step cards a little to the left inside the wrapper */
.how-section .container > .row > .col-lg-6 {
    padding-left: 10px;
    padding-right: 30px;
}

/* Individual Workflow Step Card */
.how-section .step {
    padding: 24px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Hover-only Step Effect */
.how-section .step:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateY(-4px) translateX(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.1);
}

/* Step Number Badge Animation on Hover */
.step-number {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;

    background: var(--primary);

    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.how-section .step:hover .step-number {
    transform: scale(1.1) rotate(-4deg);
    background: var(--primary-dark);
}

[data-theme="dark"] .how-section {
    background: #ffffff;
}

[data-theme="dark"] .how-section,
[data-theme="dark"] .how-section .section-label,
[data-theme="dark"] .how-section h2,
[data-theme="dark"] .how-section h2 span,
[data-theme="dark"] .how-section .how-description,
[data-theme="dark"] .how-section .step-content h3,
[data-theme="dark"] .how-section .step-content p {
    color: #000000 !important;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 80px 0;

    background: var(--light);
}

.cta-card {
    padding: 60px 30px;

    border-radius: 20px;

    color: white;

    background: var(--dark);

    box-shadow: var(--shadow-lg);
}

.cta-card h2 span {
    color: var(--primary);
}

.cta-card p {
    color: inherit;
}

.cta-card .btn {
    border: none;

    border-radius: 8px;

    background: var(--primary);

    color: white;

    padding: 12px 24px;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        background-color 0.5s ease-in-out,
        color 0.5s ease-in-out;
}

.cta-card .btn:hover {
    background: var(--primary-dark);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 40px 0 20px;

    background: #0a0c10;

    color: white;
}

footer p {
    color: #727272 !important;
}


/* =========================================================
   DARK MODE
========================================================= */

[data-theme="dark"] {
    --white: #0f172a;

    --light: #1e293b;

    --dark: #f8fafc;

    --dark-soft: #cbd5e1;

    --text: #94a3b8;

    --shadow-sm:
        0 8px 25px rgba(0, 0, 0, 0.2);

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.92);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .browser-window,
[data-theme="dark"] .browser-body,
[data-theme="dark"] .fake-content,
[data-theme="dark"] .fake-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .privacy-floating-card {
    background: #1e293b;

    border-color: #334155;
}

[data-theme="dark"] .browser-top,
[data-theme="dark"] .browser-address {
    background: #0f172a;

    border-color: #334155;
}

[data-theme="dark"] .fake-menu span {
    background: #334155;
}

[data-theme="dark"] .grey-chat .chat-placeholder::before {
    background: #334155;
}

[data-theme="dark"] .orange-chat .chat-placeholder::before {
    background: var(--primary-dark);
}

[data-theme="dark"] .hero-badge {
    background: rgba(255, 107, 0, 0.1);
}

[data-theme="dark"] .hero-buttons .btn-light {
    background: transparent;

    color: var(--dark);

    border-color: #334155;
}

[data-theme="dark"] .hero-buttons .btn-light:hover {
    background: #334155;
}

[data-theme="dark"] .hero h1 {
    color: #ffffff !important;
}


/* =========================================================
   DARK MODE CHAT / PASSWORD
========================================================= */

[data-theme="dark"] .orange-chat .chat-text {
    color: #ffffff;
}

[data-theme="dark"] .password-text {
    color: #ffffff;
}


/*
   Logo keeps original PNG colors.
*/

[data-theme="dark"] .scroll-logo {
    filter: none;
}

[data-theme="dark"] .logo-glow {
    background: transparent;
}


/* =========================================================
   DARK MODE CTA
========================================================= */

[data-theme="dark"] .cta-card {
    color: #000000;
}

[data-theme="dark"] .cta-card h2,
[data-theme="dark"] .cta-card p {
    color: #000000;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .privacy-floating-card {
        right: 0;

        bottom: -20px;

        left: 50%;

        transform: translateX(-50%);

        animation: none;
    }


    .logo-scroll-section {
        height: 80vh;

        margin-top: 10px;

        margin-bottom: -25px;
    }

    .logo-scroll-sticky {
        height: 60vh;
    }

    .logo-glow {
        padding: 35px;
    }

    .how-section .container > .row > .col-lg-5,
    .how-section .container > .row > .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (max-width: 576px) {

    .hero {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .hero-trust {
        flex-direction: column;

        gap: 8px;
    }

    .browser-body {
        padding: 16px;
    }

    .privacy-floating-card {
        width: max-content;

        max-width: 90%;
    }

    .features-section,
    .how-section {
        padding: 70px 0;
    }


    .logo-scroll-section {
        height: 75vh;

        margin-top: 10px;

        margin-bottom: -15px;
    }

    .logo-scroll-sticky {
        height: 55vh;
    }

    .logo-glow {
        padding: 25px;
    }


    .logo-glow::before {
        width: 110%;
        height: 110%;

        filter: blur(20px);
    }
}