@charset "UTF-8";
/* CSS Document */
/* =========================================================
   MOBILE SECURITY PAGE
   PART 1 — BACKGROUND, GRID, HERO, AND PHONE ANIMATIONS
   Cybersecurity Life
   ========================================================= */


/* =========================================================
   PAGE VARIABLES
   ========================================================= */

.mobile-security-page {
    --mobile-bg: #020711;
    --mobile-bg-light: #061426;
    --mobile-panel: rgba(5, 20, 37, 0.9);

    --mobile-blue: #00bfff;
    --mobile-cyan: #57e8ff;
    --mobile-green: #48ffad;
    --mobile-purple: #9b7cff;
    --mobile-red: #ff657f;
    --mobile-yellow: #ffd166;

    --mobile-text: #f4fbff;
    --mobile-muted: #adc4d2;

    --mobile-border: rgba(87, 232, 255, 0.22);
    --mobile-shadow:
        0 0 32px rgba(0, 191, 255, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.35);

    position: relative;
    isolation: isolate;
    overflow: hidden;

    color: var(--mobile-text);

    background:
        radial-gradient(
            circle at 15% 12%,
            rgba(0, 191, 255, 0.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(72, 255, 173, 0.09),
            transparent 25%
        ),
        radial-gradient(
            circle at 50% 70%,
            rgba(155, 124, 255, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #020711 0%,
            #061426 50%,
            #020811 100%
        );
}


/* =========================================================
   MOVING CYBER GRID BACKGROUND
   ========================================================= */

.mobile-security-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(0, 191, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 191, 255, 0.055) 1px,
            transparent 1px
        );

    background-size: 46px 46px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 0.7) 70%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 0.7) 70%,
            transparent 100%
        );

    animation: mobileGridMove 18s linear infinite;
}


/* Moving diagonal digital lines */

.mobile-security-page::after {
    content: "";
    position: fixed;
    inset: -45%;
    z-index: -3;
    pointer-events: none;

    background:
        repeating-linear-gradient(
            125deg,
            transparent 0,
            transparent 90px,
            rgba(72, 255, 173, 0.025) 91px,
            transparent 92px
        );

    animation: mobileBackgroundSweep 26s linear infinite;
}


/* Keep all sizing predictable */

.mobile-security-page *,
.mobile-security-page *::before,
.mobile-security-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.mobile-hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding:
        120px
        max(28px, calc((100vw - 1180px) / 2))
        100px;

    border-bottom:
        1px solid rgba(87, 232, 255, 0.12);
}


/* Perspective floor grid */

.mobile-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(72, 255, 173, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 191, 255, 0.075) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    transform:
        perspective(760px)
        rotateX(64deg)
        scale(1.55)
        translateY(30%);

    transform-origin: bottom;

    opacity: 0.8;

    animation: mobileHeroGrid 13s linear infinite;
}


/* Hero glowing divider */

.mobile-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mobile-blue),
            var(--mobile-green),
            transparent
        );

    box-shadow:
        0 0 16px rgba(0, 191, 255, 0.8),
        0 0 32px rgba(72, 255, 173, 0.45);

    animation: mobileDividerPulse 3.5s ease-in-out infinite;
}


/* General hero lighting layer */

.mobile-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 35%,
            rgba(0, 191, 255, 0.16),
            transparent 33%
        ),
        radial-gradient(
            circle at 76% 45%,
            rgba(72, 255, 173, 0.1),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(2, 7, 17, 0.35),
            rgba(2, 7, 17, 0.04),
            rgba(2, 7, 17, 0.3)
        );

    animation: mobileHeroGlow 8s ease-in-out infinite;
}


/* =========================================================
   HERO CONTENT GRID
   ========================================================= */

.mobile-hero-content {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(360px, 0.92fr);

    align-items: center;
    gap: 72px;
}


/* Hero text entrance */

.mobile-hero-text {
    position: relative;
    z-index: 3;

    animation: mobileFadeUp 0.9s ease both;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;
    padding: 10px 16px;

    border:
        1px solid rgba(72, 255, 173, 0.36);

    border-radius: 999px;

    color: var(--mobile-green);

    background:
        rgba(72, 255, 173, 0.055);

    box-shadow:
        0 0 20px rgba(72, 255, 173, 0.1);

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    animation: mobileLabelFloat 4s ease-in-out infinite;
}


.section-label i {
    filter:
        drop-shadow(
            0 0 7px rgba(72, 255, 173, 0.7)
        );

    animation:
        mobilePhoneIconPulse 2.2s ease-in-out infinite;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.mobile-hero h1 {
    margin: 0;

    font-size:
        clamp(3.8rem, 7vw, 6.7rem);

    line-height: 0.98;
    letter-spacing: -0.055em;
    text-transform: uppercase;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            var(--mobile-cyan) 46%,
            var(--mobile-green) 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(
            0 0 20px rgba(0, 191, 255, 0.15)
        );

    padding:
        6px 22px 8px 0;
}


.mobile-hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--mobile-green),
            var(--mobile-cyan),
            #ffffff
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   HERO PARAGRAPH
   ========================================================= */

.mobile-hero-text > p {
    max-width: 690px;

    margin: 28px 0 0;

    color: #bed2de;

    font-size:
        clamp(1rem, 1.65vw, 1.15rem);

    line-height: 1.82;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.mobile-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 34px;
}


.primary-button,
.secondary-button {
    position: relative;
    overflow: hidden;

    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 23px;

    border-radius: 9px;

    font-weight: 900;
    letter-spacing: 0.025em;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.primary-button {
    color: #00150d;

    background:
        linear-gradient(
            135deg,
            var(--mobile-cyan),
            var(--mobile-green)
        );

    box-shadow:
        0 0 26px rgba(0, 191, 255, 0.28);
}


.primary-button::before {
    content: "";
    position: absolute;
    inset: 0;

    transform: translateX(-125%);

    background:
        linear-gradient(
            110deg,
            transparent 24%,
            rgba(255, 255, 255, 0.6),
            transparent 72%
        );

    transition:
        transform 0.6s ease;
}


.primary-button:hover::before {
    transform: translateX(125%);
}


.secondary-button {
    color: #d8f8ff;

    border:
        1px solid rgba(87, 232, 255, 0.48);

    background:
        rgba(2, 14, 27, 0.7);

    box-shadow:
        inset 0 0 18px rgba(0, 191, 255, 0.04);
}


.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-4px);
}


.primary-button:hover {
    box-shadow:
        0 0 38px rgba(0, 191, 255, 0.42);
}


.secondary-button:hover {
    color: var(--mobile-green);

    border-color:
        rgba(72, 255, 173, 0.7);

    box-shadow:
        0 0 26px rgba(72, 255, 173, 0.15);
}


/* =========================================================
   MOBILE DEVICE VISUAL
   ========================================================= */

.mobile-device-visual {
    position: relative;
    z-index: 3;

    min-height: 590px;

    display: grid;
    place-items: center;

    animation:
        mobileVisualEntrance 1s ease 0.2s both;
}


/* Background glow behind phone */

.mobile-device-visual::before {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 191, 255, 0.2),
            rgba(72, 255, 173, 0.08) 42%,
            transparent 70%
        );

    filter: blur(10px);

    animation:
        mobileDeviceAura 5s ease-in-out infinite;
}


/* Rotating cyber ring */

.mobile-device-visual::after {
    content: "";
    position: absolute;

    width: 485px;
    height: 485px;

    border:
        1px solid rgba(87, 232, 255, 0.16);

    border-radius: 50%;

    box-shadow:
        inset 0 0 50px rgba(72, 255, 173, 0.04),
        0 0 50px rgba(0, 191, 255, 0.06);

    animation:
        mobileDeviceRing 15s linear infinite;
}


/* =========================================================
   SECURITY SIGNAL RINGS
   ========================================================= */

.security-signal {
    position: absolute;

    border:
        1px solid rgba(87, 232, 255, 0.18);

    border-radius: 50%;

    opacity: 0;

    animation:
        mobileSecuritySignal 4.5s ease-out infinite;
}


.signal-one {
    width: 310px;
    height: 310px;

    animation-delay: 0s;
}


.signal-two {
    width: 390px;
    height: 390px;

    animation-delay: 1.4s;
}


.signal-three {
    width: 470px;
    height: 470px;

    animation-delay: 2.8s;
}


/* =========================================================
   PHONE FRAME
   ========================================================= */

.phone-frame {
    position: relative;
    z-index: 5;

    width: 300px;
    height: 590px;

    padding: 12px;

    border:
        2px solid rgba(159, 235, 255, 0.58);

    border-radius: 46px;

    background:
        linear-gradient(
            145deg,
            #09223a,
            #020914 60%,
            #0b2438
        );

    box-shadow:
        0 0 0 5px rgba(0, 191, 255, 0.05),
        0 0 45px rgba(0, 191, 255, 0.25),
        0 30px 65px rgba(0, 0, 0, 0.55),
        inset 0 0 22px rgba(87, 232, 255, 0.08);

    animation:
        mobilePhoneFloat 5s ease-in-out infinite;
}


/* Phone side highlight */

.phone-frame::before {
    content: "";
    position: absolute;

    left: -3px;
    top: 95px;

    width: 3px;
    height: 90px;

    border-radius: 4px;

    background:
        linear-gradient(
            var(--mobile-blue),
            var(--mobile-green)
        );

    box-shadow:
        0 0 14px rgba(0, 191, 255, 0.55);
}


/* Phone moving light */

.phone-frame::after {
    content: "";
    position: absolute;
    inset: 6px;

    pointer-events: none;

    border-radius: 39px;

    background:
        linear-gradient(
            120deg,
            transparent 25%,
            rgba(255, 255, 255, 0.055) 42%,
            transparent 58%
        );

    transform: translateX(-120%);

    animation:
        mobilePhoneShine 5.5s ease-in-out infinite;
}


/* =========================================================
   PHONE SPEAKER
   ========================================================= */

.phone-speaker {
    position: absolute;
    z-index: 8;

    top: 18px;
    left: 50%;

    width: 78px;
    height: 20px;

    transform: translateX(-50%);

    border-radius: 999px;

    background: #01050a;

    box-shadow:
        inset 0 0 8px rgba(87, 232, 255, 0.08);
}


/* =========================================================
   PHONE SCREEN
   ========================================================= */

.phone-screen {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 100%;

    border-radius: 35px;

    background:
        radial-gradient(
            circle at 50% 28%,
            rgba(0, 191, 255, 0.18),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #07192d,
            #020a13
        );

    border:
        1px solid rgba(87, 232, 255, 0.15);
}


/* Animated grid inside phone */

.phone-screen::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(87, 232, 255, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87, 232, 255, 0.045) 1px,
            transparent 1px
        );

    background-size: 24px 24px;

    animation:
        mobilePhoneGrid 9s linear infinite;
}


/* Scanning beam */

.phone-screen::after {
    content: "";
    position: absolute;
    z-index: 1;

    left: 0;
    top: -30%;

    width: 100%;
    height: 28%;

    background:
        linear-gradient(
            transparent,
            rgba(72, 255, 173, 0.09),
            transparent
        );

    animation:
        mobilePhoneScan 4.8s linear infinite;
}


/* =========================================================
   PHONE STATUS BAR
   ========================================================= */

.phone-status-bar {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 21px 19px 10px;

    color: #eafaff;

    font-size: 0.68rem;
    font-weight: 800;
}


.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;

    color: var(--mobile-cyan);
}


/* =========================================================
   PHONE SECURITY DISPLAY
   ========================================================= */

.phone-security-display {
    position: relative;
    z-index: 4;

    padding: 34px 17px 18px;

    text-align: center;
}


/* Animated shield */

.mobile-shield {
    width: 88px;
    height: 88px;

    margin: 0 auto 19px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(72, 255, 173, 0.4);

    border-radius: 28px;

    color: var(--mobile-green);

    background:
        linear-gradient(
            145deg,
            rgba(72, 255, 173, 0.12),
            rgba(0, 191, 255, 0.07)
        );

    box-shadow:
        0 0 30px rgba(72, 255, 173, 0.16),
        inset 0 0 22px rgba(0, 191, 255, 0.08);

    font-size: 2.4rem;

    animation:
        mobileShieldPulse 2.6s ease-in-out infinite;
}


.phone-security-display h2 {
    margin: 0 0 8px;

    font-size: 1.38rem;
    letter-spacing: -0.025em;
}


.phone-security-display > p {
    margin: 0;

    color: var(--mobile-muted);

    font-size: 0.78rem;
    line-height: 1.5;
}


/* =========================================================
   PROTECTION ACTIVE STATUS
   ========================================================= */

.mobile-security-status {
    width: fit-content;

    margin: 18px auto 24px;
    padding: 8px 12px;

    display: flex;
    align-items: center;
    gap: 8px;

    border:
        1px solid rgba(72, 255, 173, 0.3);

    border-radius: 999px;

    color: var(--mobile-green);

    background:
        rgba(72, 255, 173, 0.055);

    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--mobile-green);

    box-shadow:
        0 0 0 0 rgba(72, 255, 173, 0.7);

    animation:
        mobileStatusPulse 1.8s ease-out infinite;
}


/* =========================================================
   PHONE SECURITY ITEMS
   ========================================================= */

.phone-security-items {
    display: grid;
    gap: 10px;
}


.phone-security-item {
    min-height: 48px;

    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 9px;

    padding: 10px 11px;

    border:
        1px solid rgba(87, 232, 255, 0.12);

    border-radius: 10px;

    color: #d8eef6;

    background:
        rgba(5, 22, 39, 0.78);

    text-align: left;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.phone-security-item:hover {
    transform: translateX(4px);

    border-color:
        rgba(72, 255, 173, 0.4);

    background:
        rgba(8, 35, 54, 0.9);
}


.phone-security-item i {
    color: var(--mobile-cyan);

    filter:
        drop-shadow(
            0 0 7px rgba(0, 191, 255, 0.4)
        );
}


.phone-security-item span {
    font-size: 0.72rem;
}


.phone-security-item strong {
    color: var(--mobile-green);

    font-size: 0.64rem;
    letter-spacing: 0.03em;
}


/* =========================================================
   PHONE HOME INDICATOR
   ========================================================= */

.phone-home-indicator {
    position: absolute;
    z-index: 8;

    left: 50%;
    bottom: 18px;

    width: 88px;
    height: 4px;

    transform: translateX(-50%);

    border-radius: 999px;

    background:
        rgba(223, 250, 255, 0.75);

    box-shadow:
        0 0 10px rgba(87, 232, 255, 0.2);
}


/* =========================================================
   KEYFRAME ANIMATIONS
   ========================================================= */

@keyframes mobileGridMove {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            46px 46px,
            46px 46px;
    }
}


@keyframes mobileBackgroundSweep {
    from {
        transform:
            translate3d(-8%, -8%, 0)
            rotate(0deg);
    }

    to {
        transform:
            translate3d(8%, 8%, 0)
            rotate(3deg);
    }
}


@keyframes mobileHeroGrid {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            0 58px,
            58px 0;
    }
}


@keyframes mobileDividerPulse {
    0%,
    100% {
        opacity: 0.5;
        filter: brightness(0.9);
    }

    50% {
        opacity: 1;
        filter: brightness(1.35);
    }
}


@keyframes mobileHeroGlow {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}


@keyframes mobileFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes mobileVisualEntrance {
    from {
        opacity: 0;
        transform:
            translateX(50px)
            scale(0.94);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1);
    }
}


@keyframes mobileLabelFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes mobilePhoneIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}


@keyframes mobileDeviceAura {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


@keyframes mobileDeviceRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes mobileSecuritySignal {
    0% {
        opacity: 0;
        transform: scale(0.58);
    }

    20% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}


@keyframes mobilePhoneFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-0.5deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(0.5deg);
    }
}


@keyframes mobilePhoneShine {
    0%,
    45% {
        transform: translateX(-130%);
    }

    65%,
    100% {
        transform: translateX(130%);
    }
}


@keyframes mobilePhoneGrid {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            0 24px,
            24px 0;
    }
}


@keyframes mobilePhoneScan {
    from {
        top: -30%;
    }

    to {
        top: 105%;
    }
}


@keyframes mobileShieldPulse {
    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 24px rgba(72, 255, 173, 0.13),
            inset 0 0 20px rgba(0, 191, 255, 0.07);
    }

    50% {
        transform: scale(1.07);

        box-shadow:
            0 0 42px rgba(72, 255, 173, 0.28),
            inset 0 0 28px rgba(0, 191, 255, 0.13);
    }
}


@keyframes mobileStatusPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(72, 255, 173, 0.72);
    }

    70% {
        box-shadow:
            0 0 0 11px rgba(72, 255, 173, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(72, 255, 173, 0);
    }
}


/* =========================================================
   RESPONSIVE HERO
   ========================================================= */

@media (max-width: 1080px) {
    .mobile-hero {
        min-height: auto;
    }

    .mobile-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-hero-text {
        max-width: 820px;
        margin: 0 auto;
    }

    .mobile-hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-hero-buttons {
        justify-content: center;
    }

    .mobile-device-visual {
        min-height: 650px;
    }
}


@media (max-width: 760px) {
    .mobile-hero {
        padding:
            95px
            18px
            78px;
    }

    .mobile-hero-content {
        gap: 50px;
    }

    .mobile-hero h1 {
        font-size:
            clamp(3rem, 15vw, 5rem);

        line-height: 1.02;
        letter-spacing: -0.045em;
    }

    .mobile-hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .mobile-device-visual {
        min-height: 590px;
        transform: scale(0.9);
    }
}


@media (max-width: 460px) {
    .mobile-device-visual {
        min-height: 540px;
        margin-left: -24px;
        margin-right: -24px;

        transform: scale(0.82);
    }

    .mobile-hero h1 {
        font-size:
            clamp(2.65rem, 14vw, 4rem);
    }

    .section-label {
        font-size: 0.66rem;
        letter-spacing: 0.07em;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mobile-security-page *,
    .mobile-security-page *::before,
    .mobile-security-page *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}








/* =========================================================
   MOBILE SECURITY PAGE
   PART 2 — CONTENT SECTIONS, CARDS, THREATS, AND LAYERS
   ========================================================= */


/* =========================================================
   SHARED CONTENT SECTION
   ========================================================= */

.content-section {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    padding: 96px 0;
}


.content-section + .content-section {
    border-top:
        1px solid rgba(87, 232, 255, 0.07);
}


/* Decorative glow behind sections */

.content-section::before {
    content: "";
    position: absolute;
    z-index: -1;

    left: 50%;
    top: 10%;

    width: 520px;
    height: 520px;

    transform: translateX(-50%);

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(0, 191, 255, 0.07),
            transparent 68%
        );

    filter: blur(12px);
}


/* =========================================================
   SHARED SECTION HEADINGS
   ========================================================= */

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    margin-bottom: 48px;
}


.centered-heading {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;

    justify-content: center;
    text-align: center;
}


.section-number {
    min-width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid rgba(87, 232, 255, 0.3);

    border-radius: 14px;

    color: var(--mobile-cyan);

    background:
        linear-gradient(
            145deg,
            rgba(0, 191, 255, 0.1),
            rgba(72, 255, 173, 0.045)
        );

    box-shadow:
        0 0 24px rgba(0, 191, 255, 0.1);

    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.1em;

    animation:
        mobileSectionNumberPulse 3.2s ease-in-out infinite;
}


.section-eyebrow {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--mobile-green);

    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.section-heading h2,
.permissions-text h2,
.lost-device-header h2,
.mobile-security-summary h2 {
    margin: 0;

    font-size:
        clamp(2.2rem, 4.5vw, 3.5rem);

    line-height: 1.08;
    letter-spacing: -0.045em;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            var(--mobile-cyan) 55%,
            var(--mobile-green)
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.centered-heading p {
    max-width: 760px;

    margin: 18px auto 0;

    color: var(--mobile-muted);

    font-size: 1.03rem;
    line-height: 1.8;
}


/* =========================================================
   INTRODUCTION SECTION
   ========================================================= */

.introduction-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(350px, 0.92fr);

    align-items: stretch;
    gap: 30px;
}


.introduction-text {
    padding: 32px;

    border:
        1px solid rgba(87, 232, 255, 0.16);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 27, 47, 0.86),
            rgba(3, 13, 25, 0.93)
        );

    box-shadow:
        var(--mobile-shadow);

    backdrop-filter: blur(10px);
}


.introduction-text p {
    margin: 0;

    color: #c0d4df;

    font-size: 1.02rem;
    line-height: 1.88;
}


.introduction-text p + p {
    margin-top: 21px;
}


/* =========================================================
   MOBILE DATA CARD
   ========================================================= */

.mobile-data-card {
    position: relative;
    overflow: hidden;

    padding: 30px;

    border:
        1px solid rgba(72, 255, 173, 0.22);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 32, 49, 0.92),
            rgba(3, 14, 26, 0.96)
        );

    box-shadow:
        var(--mobile-shadow);

    backdrop-filter: blur(10px);
}


.mobile-data-card::before {
    content: "";
    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mobile-green),
            var(--mobile-cyan),
            transparent
        );

    animation:
        mobileCardTopScan 5s linear infinite;
}


.mobile-data-card::after {
    content: "";
    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 150px;
    height: 150px;

    border:
        1px solid rgba(87, 232, 255, 0.09);

    border-radius: 50%;

    animation:
        mobileCardRingRotate 10s linear infinite;
}


.data-card-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 23px;
}


.data-card-header i {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(72, 255, 173, 0.3);

    border-radius: 13px;

    color: var(--mobile-green);

    background:
        rgba(72, 255, 173, 0.06);

    font-size: 1.25rem;

    box-shadow:
        0 0 18px rgba(72, 255, 173, 0.12);

    animation:
        mobileDataIconPulse 2.8s ease-in-out infinite;
}


.data-card-header h3 {
    margin: 0;

    font-size: 1.25rem;
    line-height: 1.25;
}


.mobile-data-list {
    position: relative;
    z-index: 2;

    display: grid;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.mobile-data-list li {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 11px 12px;

    border:
        1px solid rgba(87, 232, 255, 0.09);

    border-radius: 10px;

    color: #cfe3ec;

    background:
        rgba(4, 18, 32, 0.65);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.mobile-data-list li:hover {
    transform: translateX(5px);

    border-color:
        rgba(72, 255, 173, 0.3);

    background:
        rgba(7, 31, 47, 0.88);
}


.mobile-data-list i {
    color: var(--mobile-green);

    filter:
        drop-shadow(
            0 0 6px rgba(72, 255, 173, 0.45)
        );
}


/* =========================================================
   MOBILE THREAT GRID
   ========================================================= */

.mobile-threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================================
   MOBILE THREAT CARD
   ========================================================= */

.mobile-threat-card {
    position: relative;
    overflow: hidden;

    min-height: 350px;

    padding: 28px;

    border:
        1px solid var(--mobile-border);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 31, 53, 0.87),
            rgba(3, 14, 26, 0.95)
        );

    box-shadow:
        var(--mobile-shadow);

    backdrop-filter: blur(10px);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}


.mobile-threat-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(255, 101, 127, 0.52);

    background:
        linear-gradient(
            145deg,
            rgba(16, 39, 58, 0.96),
            rgba(5, 17, 31, 0.98)
        );

    box-shadow:
        0 0 36px rgba(255, 101, 127, 0.1),
        0 18px 44px rgba(0, 0, 0, 0.38);
}


/* Animated scanning top border */

.mobile-threat-card::before {
    content: "";
    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mobile-red),
            var(--mobile-yellow),
            transparent
        );

    animation:
        mobileThreatCardScan 4.8s linear infinite;
}


/* Decorative rotating corner ring */

.mobile-threat-card::after {
    content: "";
    position: absolute;

    right: -48px;
    bottom: -48px;

    width: 125px;
    height: 125px;

    border:
        1px solid rgba(255, 101, 127, 0.09);

    border-radius: 50%;

    animation:
        mobileCardRingRotate 9s linear infinite;
}


.threat-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border:
        1px solid rgba(255, 101, 127, 0.32);

    border-radius: 16px;

    color: var(--mobile-red);

    background:
        linear-gradient(
            145deg,
            rgba(255, 101, 127, 0.1),
            rgba(255, 209, 102, 0.04)
        );

    font-size: 1.55rem;

    box-shadow:
        0 0 22px rgba(255, 101, 127, 0.11);

    animation:
        mobileThreatIconPulse 3s ease-in-out infinite;
}


.threat-level {
    position: absolute;
    z-index: 3;

    top: 25px;
    right: 25px;

    padding: 7px 10px;

    border-radius: 999px;

    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.high-risk {
    color: #ffdce2;

    border:
        1px solid rgba(255, 101, 127, 0.38);

    background:
        rgba(255, 101, 127, 0.09);

    box-shadow:
        0 0 16px rgba(255, 101, 127, 0.08);
}


.medium-risk {
    color: #fff1bd;

    border:
        1px solid rgba(255, 209, 102, 0.38);

    background:
        rgba(255, 209, 102, 0.08);

    box-shadow:
        0 0 16px rgba(255, 209, 102, 0.08);
}


.mobile-threat-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    font-size: 1.22rem;
}


.mobile-threat-card > p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--mobile-muted);

    line-height: 1.76;
}


.threat-defense {
    position: relative;
    z-index: 2;

    margin-top: 22px;
    padding: 15px;

    border-left:
        3px solid var(--mobile-green);

    border-radius: 0 9px 9px 0;

    color: #bdd4de;

    background:
        rgba(72, 255, 173, 0.045);

    font-size: 0.88rem;
    line-height: 1.65;
}


.threat-defense strong {
    color: var(--mobile-green);
}


/* =========================================================
   MOBILE PROTECTION LAYERS
   ========================================================= */

.mobile-layers-container {
    position: relative;

    display: grid;
    gap: 18px;

    max-width: 1000px;
    margin: 0 auto;
}


/* Vertical glowing line */

.mobile-layers-container::before {
    content: "";
    position: absolute;

    left: 38px;
    top: 24px;
    bottom: 24px;

    width: 2px;

    background:
        linear-gradient(
            var(--mobile-blue),
            var(--mobile-green),
            var(--mobile-purple)
        );

    box-shadow:
        0 0 14px rgba(0, 191, 255, 0.5);

    animation:
        mobileLayerLinePulse 4s ease-in-out infinite;
}


.mobile-layer {
    position: relative;
    overflow: hidden;

    display: grid;

    grid-template-columns:
        64px
        58px
        1fr;

    align-items: center;
    gap: 20px;

    min-height: 130px;

    padding: 22px 26px;

    border:
        1px solid rgba(87, 232, 255, 0.17);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 30, 51, 0.88),
            rgba(3, 14, 26, 0.95)
        );

    box-shadow:
        var(--mobile-shadow);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


.mobile-layer:hover {
    transform: translateX(8px);

    border-color:
        rgba(72, 255, 173, 0.42);

    box-shadow:
        0 0 30px rgba(72, 255, 173, 0.1),
        0 16px 38px rgba(0, 0, 0, 0.3);
}


/* Animated light sweep */

.mobile-layer::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(87, 232, 255, 0.045),
            transparent 70%
        );

    transform: translateX(-120%);

    animation:
        mobileLayerSweep 6s ease-in-out infinite;
}


.layer-number {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    justify-self: center;

    border:
        1px solid rgba(87, 232, 255, 0.28);

    border-radius: 50%;

    color: var(--mobile-cyan);

    background:
        #041322;

    box-shadow:
        0 0 0 7px rgba(0, 191, 255, 0.035),
        0 0 20px rgba(0, 191, 255, 0.1);

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;

    animation:
        mobileLayerNumberPulse 2.8s ease-in-out infinite;
}


.layer-icon {
    position: relative;
    z-index: 2;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(72, 255, 173, 0.3);

    border-radius: 15px;

    color: var(--mobile-green);

    background:
        rgba(72, 255, 173, 0.055);

    box-shadow:
        0 0 20px rgba(72, 255, 173, 0.09);

    font-size: 1.35rem;

    transition:
        transform 0.28s ease;
}


.mobile-layer:hover .layer-icon {
    transform:
        rotate(5deg)
        scale(1.08);
}


.layer-content {
    position: relative;
    z-index: 2;
}


.layer-content h3 {
    margin: 0 0 8px;

    font-size: 1.2rem;
}


.layer-content p {
    margin: 0;

    color: var(--mobile-muted);

    line-height: 1.72;
}


/* =========================================================
   PART 2 ANIMATIONS
   ========================================================= */

@keyframes mobileSectionNumberPulse {
    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 18px rgba(0, 191, 255, 0.08);
    }

    50% {
        transform: scale(1.06);

        box-shadow:
            0 0 30px rgba(0, 191, 255, 0.2);
    }
}


@keyframes mobileCardTopScan {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}


@keyframes mobileCardRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes mobileDataIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}


@keyframes mobileThreatCardScan {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}


@keyframes mobileThreatIconPulse {
    0%,
    100% {
        transform: scale(1);

        filter:
            drop-shadow(
                0 0 4px rgba(255, 101, 127, 0.25)
            );
    }

    50% {
        transform: scale(1.1);

        filter:
            drop-shadow(
                0 0 12px rgba(255, 101, 127, 0.65)
            );
    }
}


@keyframes mobileLayerLinePulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}


@keyframes mobileLayerSweep {
    0%,
    55% {
        transform: translateX(-120%);
    }

    80%,
    100% {
        transform: translateX(120%);
    }
}


@keyframes mobileLayerNumberPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 7px rgba(0, 191, 255, 0.035),
            0 0 16px rgba(0, 191, 255, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(0, 191, 255, 0.025),
            0 0 26px rgba(72, 255, 173, 0.16);
    }
}


/* =========================================================
   PART 2 RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1050px) {
    .introduction-grid {
        grid-template-columns: 1fr;
    }

    .mobile-threat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 760px) {
    .content-section {
        width: min(100% - 28px, 1180px);
        padding: 76px 0;
    }

    .section-heading {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .section-number {
        min-width: 52px;
        width: 52px;
        height: 52px;
    }

    .mobile-threat-grid {
        grid-template-columns: 1fr;
    }

    .mobile-layer {
        grid-template-columns:
            52px
            1fr;

        gap: 15px;
    }

    .mobile-layers-container::before {
        left: 25px;
    }

    .layer-number {
        grid-row: 1 / span 2;
    }

    .layer-icon {
        width: 50px;
        height: 50px;
    }

    .layer-content {
        grid-column: 2;
    }
}


@media (max-width: 500px) {
    .introduction-text,
    .mobile-data-card,
    .mobile-threat-card {
        padding: 23px;
    }

    .threat-level {
        position: static;

        display: inline-block;

        margin-bottom: 17px;
    }

    .mobile-layer {
        grid-template-columns: 1fr;

        padding: 22px;
        text-align: center;
    }

    .mobile-layers-container::before {
        display: none;
    }

    .layer-number,
    .layer-icon {
        grid-row: auto;
        grid-column: auto;

        margin: 0 auto;
    }

    .layer-content {
        grid-column: auto;
    }
}






/* =========================================================
   MOBILE SECURITY PAGE
   PART 3 — PERMISSIONS, CHECKLIST, LOST DEVICE, PLATFORMS
   ========================================================= */


/* =========================================================
   APPLICATION PERMISSIONS SECTION
   ========================================================= */

.app-permissions-section {
    position: relative;
}


.permissions-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    align-items: center;
    gap: 34px;
}


.permissions-text {
    position: relative;

    padding: 34px;

    border:
        1px solid rgba(87, 232, 255, 0.17);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 28, 48, 0.88),
            rgba(3, 14, 26, 0.95)
        );

    box-shadow:
        var(--mobile-shadow);

    backdrop-filter: blur(10px);
}


.permissions-text > p {
    margin: 22px 0 0;

    color: var(--mobile-muted);

    font-size: 1.01rem;
    line-height: 1.82;
}


/* =========================================================
   PERMISSION WARNING
   ========================================================= */

.permission-warning {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    margin-top: 27px;
    padding: 20px;

    border:
        1px solid rgba(255, 209, 102, 0.27);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 209, 102, 0.08),
            rgba(255, 101, 127, 0.045)
        );

    box-shadow:
        0 0 22px rgba(255, 209, 102, 0.07);
}


.permission-warning::before {
    content: "";
    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mobile-yellow),
            var(--mobile-red),
            transparent
        );

    animation:
        mobileWarningScan 4.8s linear infinite;
}


.permission-warning > i {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid rgba(255, 209, 102, 0.3);

    border-radius: 13px;

    color: var(--mobile-yellow);

    background:
        rgba(255, 209, 102, 0.07);

    font-size: 1.2rem;

    animation:
        mobileWarningPulse 2.7s ease-in-out infinite;
}


.permission-warning div {
    position: relative;
    z-index: 2;
}


.permission-warning strong {
    color: var(--mobile-yellow);

    font-size: 1rem;
}


.permission-warning p {
    margin: 7px 0 0;

    color: #d6cda9;

    line-height: 1.67;
}


/* =========================================================
   PERMISSIONS PANEL
   ========================================================= */

.permissions-panel {
    position: relative;
    overflow: hidden;

    padding: 28px;

    border:
        1px solid rgba(87, 232, 255, 0.24);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 32, 53, 0.94),
            rgba(2, 12, 24, 0.97)
        );

    box-shadow:
        0 0 38px rgba(0, 191, 255, 0.13),
        0 24px 55px rgba(0, 0, 0, 0.38);

    backdrop-filter: blur(12px);

    animation:
        mobilePermissionsFloat 5s ease-in-out infinite;
}


/* Animated panel grid */

.permissions-panel::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(87, 232, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87, 232, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 28px 28px;

    animation:
        mobilePermissionsGrid 10s linear infinite;
}


/* Moving scan light */

.permissions-panel::after {
    content: "";
    position: absolute;

    left: 0;
    top: -30%;

    width: 100%;
    height: 28%;

    pointer-events: none;

    background:
        linear-gradient(
            transparent,
            rgba(72, 255, 173, 0.07),
            transparent
        );

    animation:
        mobilePermissionsScan 5.4s linear infinite;
}


.permissions-panel-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 25px;
    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(87, 232, 255, 0.12);
}


.sample-app-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid rgba(72, 255, 173, 0.32);

    border-radius: 17px;

    color: var(--mobile-green);

    background:
        linear-gradient(
            145deg,
            rgba(72, 255, 173, 0.1),
            rgba(0, 191, 255, 0.06)
        );

    box-shadow:
        0 0 22px rgba(72, 255, 173, 0.11);

    font-size: 1.45rem;

    animation:
        mobilePermissionIconPulse 2.8s ease-in-out infinite;
}


.permissions-panel-header span {
    color: var(--mobile-cyan);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


.permissions-panel-header h3 {
    margin: 5px 0 0;

    font-size: 1.25rem;
}


/* =========================================================
   PERMISSION ROWS
   ========================================================= */

.permission-row {
    position: relative;
    z-index: 2;

    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(87, 232, 255, 0.09);
}


.permission-row:last-child {
    border-bottom: 0;
}


.permission-name {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #d5eaf2;
}


.permission-name i {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(87, 232, 255, 0.15);

    border-radius: 9px;

    color: var(--mobile-cyan);

    background:
        rgba(0, 191, 255, 0.045);
}


.permission-setting {
    padding: 7px 10px;

    border-radius: 999px;

    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.permission-setting.allowed {
    color: var(--mobile-green);

    border:
        1px solid rgba(72, 255, 173, 0.3);

    background:
        rgba(72, 255, 173, 0.065);
}


.permission-setting.limited {
    color: var(--mobile-yellow);

    border:
        1px solid rgba(255, 209, 102, 0.3);

    background:
        rgba(255, 209, 102, 0.06);
}


.permission-setting.denied {
    color: var(--mobile-red);

    border:
        1px solid rgba(255, 101, 127, 0.3);

    background:
        rgba(255, 101, 127, 0.06);
}


/* =========================================================
   SECURITY CHECKLIST GRID
   ========================================================= */

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


/* =========================================================
   CHECKLIST CARDS
   ========================================================= */

.checklist-card {
    position: relative;
    overflow: hidden;

    min-height: 285px;

    padding: 26px;

    border:
        1px solid rgba(87, 232, 255, 0.18);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 30, 51, 0.88),
            rgba(3, 14, 26, 0.95)
        );

    box-shadow:
        var(--mobile-shadow);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}


.checklist-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(72, 255, 173, 0.48);

    background:
        linear-gradient(
            145deg,
            rgba(11, 42, 62, 0.96),
            rgba(4, 17, 31, 0.98)
        );

    box-shadow:
        0 0 34px rgba(72, 255, 173, 0.1),
        0 18px 42px rgba(0, 0, 0, 0.35);
}


/* Animated top light */

.checklist-card::before {
    content: "";
    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mobile-cyan),
            var(--mobile-green),
            transparent
        );

    animation:
        mobileChecklistScan 5.2s linear infinite;
}


/* Decorative ring */

.checklist-card::after {
    content: "";
    position: absolute;

    right: -44px;
    bottom: -44px;

    width: 115px;
    height: 115px;

    border:
        1px solid rgba(72, 255, 173, 0.08);

    border-radius: 50%;

    animation:
        mobileChecklistRing 10s linear infinite;
}


.checklist-number {
    position: absolute;
    z-index: 2;

    top: 19px;
    right: 20px;

    color: rgba(87, 232, 255, 0.28);

    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}


.checklist-card > i {
    position: relative;
    z-index: 2;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    margin-bottom: 21px;

    border:
        1px solid rgba(72, 255, 173, 0.3);

    border-radius: 16px;

    color: var(--mobile-green);

    background:
        rgba(72, 255, 173, 0.055);

    box-shadow:
        0 0 21px rgba(72, 255, 173, 0.1);

    font-size: 1.4rem;

    animation:
        mobileChecklistIconPulse 3s ease-in-out infinite;
}


.checklist-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 11px;

    font-size: 1.12rem;
}


.checklist-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--mobile-muted);

    line-height: 1.72;
}


/* =========================================================
   LOST DEVICE SECTION
   ========================================================= */

.lost-device-section {
    position: relative;
}


.lost-device-header {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 46px;
}


.lost-device-icon {
    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid rgba(255, 101, 127, 0.3);

    border-radius: 19px;

    color: var(--mobile-red);

    background:
        linear-gradient(
            145deg,
            rgba(255, 101, 127, 0.1),
            rgba(255, 209, 102, 0.04)
        );

    box-shadow:
        0 0 28px rgba(255, 101, 127, 0.1);

    font-size: 1.65rem;

    animation:
        mobileLostIconPulse 2.8s ease-in-out infinite;
}


/* =========================================================
   RESPONSE TIMELINE
   ========================================================= */

.response-timeline {
    position: relative;

    display: grid;
    gap: 18px;

    max-width: 1000px;
    margin: 0 auto;
}


/* Glowing vertical timeline */

.response-timeline::before {
    content: "";
    position: absolute;

    left: 29px;
    top: 30px;
    bottom: 30px;

    width: 2px;

    background:
        linear-gradient(
            var(--mobile-red),
            var(--mobile-yellow),
            var(--mobile-green)
        );

    box-shadow:
        0 0 13px rgba(255, 101, 127, 0.4);

    animation:
        mobileResponseLinePulse 4s ease-in-out infinite;
}


.response-step {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;

    align-items: flex-start;

    min-height: 125px;

    padding: 23px 25px;

    border:
        1px solid rgba(87, 232, 255, 0.17);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 29, 49, 0.9),
            rgba(3, 14, 26, 0.96)
        );

    box-shadow:
        var(--mobile-shadow);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


.response-step:hover {
    transform: translateX(8px);

    border-color:
        rgba(255, 209, 102, 0.4);

    box-shadow:
        0 0 30px rgba(255, 209, 102, 0.08),
        0 16px 36px rgba(0, 0, 0, 0.32);
}


/* Moving light sweep */

.response-step::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255, 209, 102, 0.04),
            transparent 72%
        );

    transform: translateX(-120%);

    animation:
        mobileResponseSweep 6.2s ease-in-out infinite;
}


.response-step-number {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    justify-self: center;

    border:
        1px solid rgba(255, 101, 127, 0.3);

    border-radius: 50%;

    color: #ffdce3;

    background:
        #09101b;

    box-shadow:
        0 0 0 7px rgba(255, 101, 127, 0.035),
        0 0 18px rgba(255, 101, 127, 0.11);

    font-size: 0.75rem;
    font-weight: 900;

    animation:
        mobileResponseNumberPulse 2.7s ease-in-out infinite;
}


.response-step > div {
    position: relative;
    z-index: 2;
}


.response-step h3 {
    margin: 0 0 8px;

    font-size: 1.17rem;
}


.response-step p {
    margin: 0;

    color: var(--mobile-muted);

    line-height: 1.72;
}


/* =========================================================
   IOS AND ANDROID PLATFORM GRID
   ========================================================= */

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* =========================================================
   PLATFORM CARDS
   ========================================================= */

.platform-card {
    position: relative;
    overflow: hidden;

    min-height: 390px;

    padding: 30px;

    border:
        1px solid rgba(87, 232, 255, 0.18);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 30, 51, 0.9),
            rgba(3, 14, 26, 0.96)
        );

    box-shadow:
        var(--mobile-shadow);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


.platform-card:hover {
    transform: translateY(-8px);
}


.ios-card:hover {
    border-color:
        rgba(87, 232, 255, 0.48);

    box-shadow:
        0 0 34px rgba(0, 191, 255, 0.12),
        0 18px 42px rgba(0, 0, 0, 0.35);
}


.android-card:hover {
    border-color:
        rgba(72, 255, 173, 0.48);

    box-shadow:
        0 0 34px rgba(72, 255, 173, 0.11),
        0 18px 42px rgba(0, 0, 0, 0.35);
}


/* Animated scanning edge */

.platform-card::before {
    content: "";
    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 2px;

    animation:
        mobilePlatformScan 5.1s linear infinite;
}


.ios-card::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            #ffffff,
            var(--mobile-cyan),
            transparent
        );
}


.android-card::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mobile-green),
            var(--mobile-cyan),
            transparent
        );
}


/* Rotating ring */

.platform-card::after {
    content: "";
    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    animation:
        mobilePlatformRing 11s linear infinite;
}


.ios-card::after {
    border:
        1px solid rgba(87, 232, 255, 0.08);
}


.android-card::after {
    border:
        1px solid rgba(72, 255, 173, 0.08);
}


.platform-card-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 17px;

    margin-bottom: 24px;
    padding-bottom: 21px;

    border-bottom:
        1px solid rgba(87, 232, 255, 0.11);
}


.platform-card-header > i {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 17px;

    font-size: 1.8rem;
}


.ios-card .platform-card-header > i {
    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(87, 232, 255, 0.05)
        );

    box-shadow:
        0 0 22px rgba(255, 255, 255, 0.08);
}


.android-card .platform-card-header > i {
    color: var(--mobile-green);

    border:
        1px solid rgba(72, 255, 173, 0.3);

    background:
        rgba(72, 255, 173, 0.06);

    box-shadow:
        0 0 22px rgba(72, 255, 173, 0.1);
}


.platform-card-header span {
    color: var(--mobile-cyan);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


.platform-card-header h3 {
    margin: 5px 0 0;

    font-size: 1.25rem;
}


.platform-card ul {
    position: relative;
    z-index: 2;

    display: grid;
    gap: 13px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.platform-card li {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 12px;

    border:
        1px solid rgba(87, 232, 255, 0.09);

    border-radius: 10px;

    color: #cfe2eb;

    background:
        rgba(4, 18, 32, 0.62);

    line-height: 1.55;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.platform-card li:hover {
    transform: translateX(5px);

    border-color:
        rgba(72, 255, 173, 0.28);

    background:
        rgba(7, 31, 47, 0.87);
}


.platform-card li i {
    margin-top: 4px;

    color: var(--mobile-green);

    filter:
        drop-shadow(
            0 0 5px rgba(72, 255, 173, 0.4)
        );
}


/* =========================================================
   PART 3 ANIMATIONS
   ========================================================= */

@keyframes mobileWarningScan {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}


@keyframes mobileWarningPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.09);

        filter:
            drop-shadow(
                0 0 10px rgba(255, 209, 102, 0.55)
            );
    }
}


@keyframes mobilePermissionsFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-0.2deg);
    }

    50% {
        transform:
            translateY(-10px)
            rotate(0.2deg);
    }
}


@keyframes mobilePermissionsGrid {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            0 28px,
            28px 0;
    }
}


@keyframes mobilePermissionsScan {
    from {
        top: -30%;
    }

    to {
        top: 105%;
    }
}


@keyframes mobilePermissionIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform:
            scale(1.08)
            rotate(3deg);
    }
}


@keyframes mobileChecklistScan {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}


@keyframes mobileChecklistRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes mobileChecklistIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);

        filter:
            drop-shadow(
                0 0 10px rgba(72, 255, 173, 0.48)
            );
    }
}


@keyframes mobileLostIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform:
            scale(1.08)
            rotate(-3deg);

        filter:
            drop-shadow(
                0 0 10px rgba(255, 101, 127, 0.5)
            );
    }
}


@keyframes mobileResponseLinePulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}


@keyframes mobileResponseSweep {
    0%,
    55% {
        transform: translateX(-120%);
    }

    80%,
    100% {
        transform: translateX(120%);
    }
}


@keyframes mobileResponseNumberPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 7px rgba(255, 101, 127, 0.035),
            0 0 16px rgba(255, 101, 127, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(255, 209, 102, 0.025),
            0 0 25px rgba(255, 209, 102, 0.16);
    }
}


@keyframes mobilePlatformScan {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}


@keyframes mobilePlatformRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   PART 3 RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1050px) {
    .permissions-content {
        grid-template-columns: 1fr;
    }

    .permissions-panel {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 760px) {
    .checklist-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .lost-device-header {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .response-step {
        grid-template-columns: 52px 1fr;
    }

    .response-timeline::before {
        left: 25px;
    }
}


@media (max-width: 500px) {
    .permissions-text,
    .permissions-panel,
    .checklist-card,
    .platform-card {
        padding: 23px;
    }

    .permission-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .response-step {
        grid-template-columns: 1fr;

        padding: 22px;

        text-align: center;
    }

    .response-timeline::before {
        display: none;
    }

    .response-step-number {
        margin: 0 auto;
    }

    .platform-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}







/* =========================================================
   MOBILE SECURITY PAGE
   PART 4 — FINAL SUMMARY, GLOBAL POLISH, RESPONSIVE FIXES
   ========================================================= */


/* =========================================================
   FINAL MOBILE SECURITY SUMMARY
   ========================================================= */

.mobile-security-summary {
    position: relative;
    z-index: 2;

    min-height: 560px;

    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    gap: 36px;

    width: min(1180px, calc(100% - 40px));
    margin: 20px auto 0;
    padding: 88px 70px;

    overflow: hidden;

    border:
        1px solid rgba(87, 232, 255, 0.2);

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 191, 255, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(72, 255, 173, 0.1),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(7, 27, 47, 0.94),
            rgba(3, 13, 25, 0.98)
        );

    box-shadow:
        0 0 44px rgba(0, 191, 255, 0.14),
        0 28px 65px rgba(0, 0, 0, 0.42);

    backdrop-filter: blur(12px);
}


/* Animated grid inside final summary */

.mobile-security-summary::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(87, 232, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87, 232, 255, 0.04) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    animation:
        mobileSummaryGrid 12s linear infinite;
}


/* Moving light sweep */

.mobile-security-summary::after {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 26%,
            rgba(255, 255, 255, 0.04),
            transparent 72%
        );

    transform: translateX(-120%);

    animation:
        mobileSummarySweep 7s ease-in-out infinite;
}


/* =========================================================
   SUMMARY GLOW
   ========================================================= */

.summary-glow {
    position: absolute;

    left: 8%;
    top: 50%;

    width: 300px;
    height: 300px;

    transform: translateY(-50%);

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(0, 191, 255, 0.18),
            rgba(72, 255, 173, 0.07) 45%,
            transparent 72%
        );

    filter: blur(8px);

    animation:
        mobileSummaryGlow 5s ease-in-out infinite;
}


/* =========================================================
   SUMMARY ICON
   ========================================================= */

.summary-icon {
    position: relative;
    z-index: 3;

    width: 140px;
    height: 140px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(72, 255, 173, 0.38);

    border-radius: 35px;

    color: var(--mobile-green);

    background:
        linear-gradient(
            145deg,
            rgba(72, 255, 173, 0.12),
            rgba(0, 191, 255, 0.07)
        );

    box-shadow:
        0 0 38px rgba(72, 255, 173, 0.17),
        inset 0 0 30px rgba(0, 191, 255, 0.08);

    font-size: 3.4rem;

    animation:
        mobileSummaryIconFloat 4.5s ease-in-out infinite;
}


/* Rotating ring around icon */

.summary-icon::before {
    content: "";
    position: absolute;

    inset: -22px;

    border:
        1px solid rgba(87, 232, 255, 0.16);

    border-radius: 50%;

    animation:
        mobileSummaryRing 10s linear infinite;
}


/* Pulsing outer ring */

.summary-icon::after {
    content: "";
    position: absolute;

    inset: -45px;

    border:
        1px solid rgba(72, 255, 173, 0.08);

    border-radius: 50%;

    animation:
        mobileSummaryOuterRing 4s ease-out infinite;
}


/* =========================================================
   SUMMARY CONTENT
   ========================================================= */

.summary-content {
    position: relative;
    z-index: 3;
}


.summary-content h2 {
    max-width: 780px;
}


.summary-content p {
    max-width: 820px;

    margin: 22px 0 30px;

    color: var(--mobile-muted);

    font-size: 1.04rem;
    line-height: 1.82;
}


/* =========================================================
   ANIMATED SECTION REVEAL
   ========================================================= */

.content-section,
.mobile-security-summary {
    animation:
        mobileSectionReveal 0.8s ease both;
}


/* Different timing so sections do not all appear together */

.mobile-introduction {
    animation-delay: 0.05s;
}

.mobile-threats {
    animation-delay: 0.1s;
}

.mobile-layers {
    animation-delay: 0.15s;
}

.app-permissions-section {
    animation-delay: 0.2s;
}

.mobile-checklist {
    animation-delay: 0.25s;
}

.lost-device-section {
    animation-delay: 0.3s;
}

.mobile-platforms {
    animation-delay: 0.35s;
}

.mobile-security-summary {
    animation-delay: 0.4s;
}


/* =========================================================
   SHARED CARD GLOW EFFECT
   ========================================================= */

.introduction-text,
.mobile-data-card,
.mobile-threat-card,
.mobile-layer,
.permissions-text,
.permissions-panel,
.checklist-card,
.response-step,
.platform-card {
    position: relative;
}


.introduction-text::after,
.permissions-text::after {
    content: "";
    position: absolute;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(0, 191, 255, 0.05),
            transparent 35%
        );

    opacity: 0;

    transition:
        opacity 0.3s ease;
}


.introduction-text:hover::after,
.permissions-text:hover::after {
    opacity: 1;
}


/* =========================================================
   TEXT AND LINK POLISH
   ========================================================= */

.mobile-security-page a {
    text-decoration: none;
}


.mobile-security-page p,
.mobile-security-page li {
    text-wrap: pretty;
}


.mobile-security-page h1,
.mobile-security-page h2,
.mobile-security-page h3 {
    text-wrap: balance;
}


/* =========================================================
   FOCUS STYLES FOR ACCESSIBILITY
   ========================================================= */

.mobile-security-page a:focus-visible,
.mobile-security-page button:focus-visible {
    outline:
        3px solid var(--mobile-green);

    outline-offset: 4px;

    box-shadow:
        0 0 0 6px rgba(72, 255, 173, 0.12);
}


/* =========================================================
   CUSTOM SELECTION COLOR
   ========================================================= */

.mobile-security-page ::selection {
    color: #00120c;

    background:
        var(--mobile-green);
}


/* =========================================================
   SMOOTH SCROLL OFFSET
   ========================================================= */

#mobile-threats,
#mobile-checklist {
    scroll-margin-top: 110px;
}


/* =========================================================
   HERO TITLE CLIPPING FIX
   ========================================================= */

.mobile-hero-text {
    min-width: 0;
    overflow: visible;
}


.mobile-hero h1 {
    display: block;

    width: 100%;
    max-width: 100%;

    overflow: visible;

    padding:
        10px 34px 12px 2px;
}


.mobile-hero h1 span {
    padding-right: 20px;
}


/* =========================================================
   BUTTON ICON ANIMATIONS
   ========================================================= */

.primary-button i,
.secondary-button i {
    transition:
        transform 0.25s ease;
}


.primary-button:hover i {
    transform: translateX(5px);
}


.mobile-hero-buttons .primary-button:hover i,
.mobile-hero-buttons .secondary-button:hover i {
    transform: translateY(4px);
}


/* =========================================================
   CARD STAGGER ANIMATIONS
   ========================================================= */

.mobile-threat-card,
.checklist-card,
.mobile-layer,
.response-step {
    animation:
        mobileCardEntrance 0.75s ease both;
}


.mobile-threat-card:nth-child(2),
.checklist-card:nth-child(2),
.mobile-layer:nth-child(2),
.response-step:nth-child(2) {
    animation-delay: 0.08s;
}


.mobile-threat-card:nth-child(3),
.checklist-card:nth-child(3),
.mobile-layer:nth-child(3),
.response-step:nth-child(3) {
    animation-delay: 0.16s;
}


.mobile-threat-card:nth-child(4),
.checklist-card:nth-child(4),
.mobile-layer:nth-child(4),
.response-step:nth-child(4) {
    animation-delay: 0.24s;
}


.mobile-threat-card:nth-child(5),
.checklist-card:nth-child(5),
.mobile-layer:nth-child(5),
.response-step:nth-child(5) {
    animation-delay: 0.32s;
}


.mobile-threat-card:nth-child(6),
.checklist-card:nth-child(6) {
    animation-delay: 0.4s;
}


.checklist-card:nth-child(7) {
    animation-delay: 0.48s;
}


.checklist-card:nth-child(8) {
    animation-delay: 0.56s;
}


/* =========================================================
   SCROLLBAR DESIGN
   ========================================================= */

.mobile-security-page {
    scrollbar-width: thin;
    scrollbar-color:
        var(--mobile-cyan)
        #020711;
}


.mobile-security-page::-webkit-scrollbar {
    width: 11px;
}


.mobile-security-page::-webkit-scrollbar-track {
    background:
        #020711;
}


.mobile-security-page::-webkit-scrollbar-thumb {
    border:
        2px solid #020711;

    border-radius: 999px;

    background:
        linear-gradient(
            var(--mobile-cyan),
            var(--mobile-green)
        );
}


/* =========================================================
   FINAL KEYFRAME ANIMATIONS
   ========================================================= */

@keyframes mobileSummaryGrid {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            0 38px,
            38px 0;
    }
}


@keyframes mobileSummarySweep {
    0%,
    50% {
        transform: translateX(-120%);
    }

    75%,
    100% {
        transform: translateX(120%);
    }
}


@keyframes mobileSummaryGlow {
    0%,
    100% {
        transform:
            translateY(-50%)
            scale(0.92);

        opacity: 0.55;
    }

    50% {
        transform:
            translateY(-50%)
            scale(1.1);

        opacity: 1;
    }
}


@keyframes mobileSummaryIconFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-1deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(1deg);
    }
}


@keyframes mobileSummaryRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes mobileSummaryOuterRing {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    35% {
        opacity: 0.55;
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}


@keyframes mobileSectionReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes mobileCardEntrance {
    from {
        opacity: 0;
        transform:
            translateY(24px)
            scale(0.98);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   TABLET RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1050px) {
    .mobile-security-summary {
        grid-template-columns: 1fr;

        text-align: center;

        padding:
            82px 48px;
    }

    .summary-icon {
        margin: 0 auto;
    }

    .summary-content h2,
    .summary-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .summary-content .primary-button {
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 760px) {
    .mobile-security-summary {
        width: min(100% - 28px, 1180px);

        min-height: auto;

        padding:
            74px 28px;

        border-radius: 20px;
    }

    .summary-icon {
        width: 115px;
        height: 115px;

        font-size: 2.8rem;
    }

    .summary-icon::before {
        inset: -17px;
    }

    .summary-icon::after {
        inset: -34px;
    }

    .mobile-security-summary h2 {
        font-size:
            clamp(2rem, 9vw, 3rem);
    }

    .mobile-security-summary p {
        font-size: 1rem;
    }

    .mobile-security-summary .primary-button {
        width: 100%;
    }

    .mobile-hero h1 {
        padding-right: 18px;
    }
}


/* =========================================================
   SMALL MOBILE RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 500px) {
    .mobile-security-summary {
        padding:
            66px 22px;
    }

    .summary-icon {
        width: 96px;
        height: 96px;

        border-radius: 27px;

        font-size: 2.3rem;
    }

    .summary-icon::before {
        inset: -13px;
    }

    .summary-icon::after {
        inset: -26px;
    }

    .summary-content p {
        line-height: 1.72;
    }

    .content-section::before {
        width: 310px;
        height: 310px;
    }
}


/* =========================================================
   VERY SMALL SCREEN FIXES
   ========================================================= */

@media (max-width: 380px) {
    .mobile-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-hero h1 {
        font-size:
            clamp(2.35rem, 13vw, 3.25rem);

        letter-spacing: -0.035em;
        padding-right: 10px;
    }

    .content-section,
    .mobile-security-summary {
        width:
            calc(100% - 20px);
    }

    .section-heading h2,
    .permissions-text h2,
    .lost-device-header h2,
    .mobile-security-summary h2 {
        font-size:
            clamp(1.9rem, 10vw, 2.65rem);
    }

    .phone-frame {
        transform: scale(0.92);
    }
}


/* =========================================================
   PRINT STYLES
   ========================================================= */

@media print {
    .mobile-security-page,
    .mobile-security-summary,
    .mobile-threat-card,
    .checklist-card,
    .platform-card,
    .response-step,
    .mobile-layer,
    .permissions-panel,
    .permissions-text,
    .introduction-text,
    .mobile-data-card {
        color: #000;
        background: #fff;
        box-shadow: none;
    }

    .mobile-security-page::before,
    .mobile-security-page::after,
    .mobile-hero::before,
    .mobile-hero::after,
    .mobile-hero-overlay,
    .security-signal,
    .summary-glow {
        display: none;
    }

    .primary-button,
    .secondary-button {
        color: #000;
        border: 1px solid #000;
        background: #fff;
    }
}
