/* =========================================================
   LBS SOFTWARE
   AI CHILD SAFETY
   PRODUCT PAGE
   ========================================================= */

:root {
    --child-navy: #071b33;
    --child-navy-2: #102b4d;

    --child-blue: #087cff;
    --child-cyan: #20c7e8;
    --child-purple: #7b61ff;
    --child-pink: #ec4899;
    --child-orange: #ff9f43;
    --child-yellow: #ffd43b;
    --child-green: #20b86b;

    --child-blue-light: #eaf5ff;
    --child-purple-light: #f1edff;
    --child-orange-light: #fff3e5;
    --child-green-light: #eafaf2;
    --child-pink-light: #fff0f7;
    --child-cyan-light: #e9fbff;

    --child-text: #18283c;
    --child-muted: #66778b;
    --child-border: #e1e9f2;
    --child-light: #f7faff;
    --child-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.child-safety-page {
    width: 100%;
    overflow: hidden;

    color: var(--child-text);
    background: #ffffff;
}


.child-safety-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


.child-safety-page .section {
    padding: 90px 0;
}


.child-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--child-blue);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.child-section-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.child-section-heading h2 {
    margin: 0 0 15px;

    color: var(--child-navy);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -.04em;
}


.child-section-heading h2 span {
    display: block;
    color: var(--child-purple);
}


.child-section-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: var(--child-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.child-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 12px 22px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.child-btn:hover {
    transform: translateY(-2px);
}


.child-btn-primary {
    border: 1px solid var(--child-blue);

    background:
        linear-gradient(
            135deg,
            #087cff,
            #5d5cff
        );

    color: #ffffff;

    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}


.child-btn-primary:hover {
    box-shadow:
        0 15px 34px rgba(8,124,255,.30);
}


.child-btn-partner {
    border: 1px solid #d5cafa;

    background: #ffffff;

    color: var(--child-purple);
}


.child-btn-partner:hover {
    border-color: var(--child-purple);

    background: var(--child-purple-light);
}


.child-btn-white {
    border: 1px solid #ffffff;

    background: #ffffff;

    color: var(--child-purple);
}


.child-btn-transparent {
    border: 1px solid rgba(255,255,255,.55);

    background: rgba(255,255,255,.08);

    color: #ffffff;
}


.child-btn-transparent:hover {
    background: rgba(255,255,255,.15);
}


.child-btn-outline {
    border: 1px solid #bfd1e4;

    background: #ffffff;

    color: var(--child-navy);
}


.child-btn-outline:hover {
    border-color: var(--child-blue);

    color: var(--child-blue);
}


/* =========================================================
   HERO
   ========================================================= */

.child-hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(32,199,232,.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 75% 25%,
            rgba(123,97,255,.16),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(255,159,67,.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f7fcff 0%,
            #ffffff 52%,
            #f8f5ff 100%
        );

    border-bottom: 1px solid var(--child-border);
}


.child-hero-inner {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;
}


.child-hero-content {
    max-width: 650px;
}


.child-hero-content h1 {
    margin: 0 0 24px;

    color: var(--child-navy);

    font-size: clamp(45px, 5.4vw, 70px);

    font-weight: 850;

    line-height: 1;

    letter-spacing: -.055em;
}


.child-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--child-blue),
            var(--child-purple),
            var(--child-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.child-hero-content > p {
    max-width: 600px;

    margin: 0 0 30px;

    color: var(--child-muted);

    font-size: 16px;

    line-height: 1.8;
}


.child-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}


.child-hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}


.child-hero-trust div {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--child-navy);

    font-size: 10px;

    font-weight: 750;
}


.child-hero-trust strong {
    color: var(--child-green);
}


/* =========================================================
   HERO SHAPES
   ========================================================= */

.child-hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.shape-one {
    width: 180px;
    height: 180px;

    top: -80px;
    left: 18%;

    background:
        linear-gradient(
            135deg,
            rgba(32,199,232,.16),
            rgba(8,124,255,.05)
        );
}


.shape-two {
    width: 120px;
    height: 120px;

    right: 40%;
    bottom: -45px;

    background:
        linear-gradient(
            135deg,
            rgba(255,159,67,.15),
            rgba(255,212,59,.08)
        );
}


.shape-three {
    width: 220px;
    height: 220px;

    right: -100px;
    top: 45%;

    border: 35px solid rgba(123,97,255,.05);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.child-hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.child-gradient-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}


.orb-purple {
    width: 290px;
    height: 290px;

    background:
        radial-gradient(
            circle,
            rgba(123,97,255,.20),
            transparent 68%
        );
}


.orb-blue {
    width: 200px;
    height: 200px;

    left: 3%;
    top: 10%;

    background:
        radial-gradient(
            circle,
            rgba(8,124,255,.15),
            transparent 68%
        );
}


.orb-green {
    width: 170px;
    height: 170px;

    right: 4%;
    bottom: 7%;

    background:
        radial-gradient(
            circle,
            rgba(32,184,107,.13),
            transparent 68%
        );
}


/* =========================================================
   PHONE
   ========================================================= */

.child-phone {
    position: relative;

    z-index: 4;

    width: 270px;
    height: 530px;

    padding: 10px;

    border: 5px solid #172b45;

    border-radius: 38px;

    background: #172b45;

    box-shadow:
        0 35px 75px rgba(7,27,51,.23);

    transform: rotate(2deg);

    animation:
        childPhoneFloat 5.5s ease-in-out infinite;
}


@keyframes childPhoneFloat {

    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-9px);
    }
}


.child-phone-notch {
    position: absolute;

    z-index: 10;

    top: 11px;
    left: 50%;

    width: 88px;
    height: 22px;

    transform: translateX(-50%);

    border-radius: 0 0 14px 14px;

    background: #172b45;
}


.child-phone-screen {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 27px;

    background:
        linear-gradient(
            180deg,
            #f5faff 0%,
            #ffffff 100%
        );
}


/* =========================================================
   PHONE STATUS
   ========================================================= */

.phone-status {
    padding: 22px 17px 5px;

    display: flex;

    justify-content: space-between;

    color: #6d7f93;

    font-size: 8px;

    font-weight: 750;
}


/* =========================================================
   PHONE HEADER
   ========================================================= */

.phone-app-header {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 16px;
}


.phone-shield {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--child-blue),
            var(--child-purple)
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 850;
}


.phone-app-header small {
    display: block;

    margin-bottom: 3px;

    color: #8797a8;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .08em;
}


.phone-app-header strong {
    color: var(--child-navy);

    font-size: 15px;
}


/* =========================================================
   CHILD AVATAR
   ========================================================= */

.child-avatar {
    margin: 3px 15px 14px;

    padding: 16px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f5efff
        );

    text-align: center;
}


.avatar-circle {
    width: 50px;
    height: 50px;

    margin: 0 auto 8px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffd86b,
            #ff9f43
        );

    font-size: 24px;
}


.child-avatar strong {
    display: block;

    color: var(--child-navy);

    font-size: 13px;
}


.child-avatar span {
    display: block;

    margin-top: 3px;

    color: var(--child-muted);

    font-size: 8px;
}


/* =========================================================
   PHONE CONTROLS
   ========================================================= */

.phone-control-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 8px;

    padding: 0 15px;
}


.phone-control {
    padding: 11px 9px;

    border-radius: 10px;

    background: #ffffff;

    border: 1px solid #e4ebf2;
}


.phone-control > span {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
}


.phone-control strong {
    display: block;

    color: var(--child-navy);

    font-size: 8px;
}


.phone-control small {
    display: block;

    margin-top: 3px;

    color: #8493a5;

    font-size: 7px;
}


.phone-control.blue {
    border-left: 3px solid var(--child-blue);
}


.phone-control.purple {
    border-left: 3px solid var(--child-purple);
}


.phone-control.orange {
    border-left: 3px solid var(--child-orange);
}


.phone-control.green {
    border-left: 3px solid var(--child-green);
}


/* =========================================================
   PHONE STATUS
   ========================================================= */

.phone-safe-status {
    margin: 15px;

    padding: 9px;

    border-radius: 8px;

    background: #eafaf2;

    color: var(--child-green);

    text-align: center;

    font-size: 8px;

    font-weight: 800;
}


.phone-safe-status span {
    margin-right: 4px;
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.child-floating-card {
    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 14px;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 12px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 15px 35px rgba(7,27,51,.13);

    backdrop-filter: blur(10px);
}


.floating-icon {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    font-size: 15px;
}


.purple-icon {
    background: var(--child-purple-light);
}


.green-icon {
    background: var(--child-green-light);
}


.child-floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #8b9aab;

    font-size: 7px;

    font-weight: 850;

    letter-spacing: .08em;
}


.child-floating-card strong {
    color: var(--child-navy);

    font-size: 9px;
}


.floating-check {
    width: 20px;
    height: 20px;

    display: grid;

    place-items: center;

    margin-left: 5px;

    border-radius: 50%;

    background: var(--child-green);

    color: #ffffff;

    font-size: 8px;

    font-weight: 850;
}


.parent-card {
    left: -10px;

    top: 70px;

    animation:
        childFloatingOne 5s ease-in-out infinite;
}


.safety-card {
    right: -5px;

    bottom: 65px;

    animation:
        childFloatingTwo 5.5s ease-in-out infinite;
}


@keyframes childFloatingOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


@keyframes childFloatingTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }

}


/* =========================================================
   STARS
   ========================================================= */

.child-star {
    position: absolute;

    z-index: 2;

    color: var(--child-purple);

    font-size: 25px;

    animation:
        childStarPulse 3s ease-in-out infinite;
}


.star-one {
    top: 70px;
    right: 20%;
}


.star-two {
    left: 7%;
    bottom: 110px;

    color: var(--child-orange);

    animation-delay: .8s;
}


.star-three {
    right: 9%;
    top: 35%;

    color: var(--child-cyan);

    animation-delay: 1.4s;
}


@keyframes childStarPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* =========================================================
   CHALLENGE
   ========================================================= */

.child-challenge {
    background: #ffffff;
}


.challenge-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.challenge-card {
    min-height: 250px;

    padding: 26px;

    border: 1px solid var(--child-border);

    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.challenge-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(7,27,51,.08);
}


.challenge-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    font-size: 23px;
}


.challenge-card > span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .12em;
}


.challenge-card h3 {
    margin: 0 0 10px;

    color: var(--child-navy);

    font-size: 18px;
}


.challenge-card p {
    margin: 0;

    color: var(--child-muted);

    font-size: 12px;

    line-height: 1.7;
}


.challenge-blue .challenge-icon {
    background: var(--child-blue-light);
}


.challenge-blue > span {
    color: var(--child-blue);
}


.challenge-purple .challenge-icon {
    background: var(--child-purple-light);
}


.challenge-purple > span {
    color: var(--child-purple);
}


.challenge-orange .challenge-icon {
    background: var(--child-orange-light);
}


.challenge-orange > span {
    color: var(--child-orange);
}


.challenge-green .challenge-icon {
    background: var(--child-green-light);
}


.challenge-green > span {
    color: var(--child-green);
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.child-how {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );

    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}


.child-workflow {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.workflow-line {
    position: absolute;

    top: 49px;

    left: 12%;

    right: 12%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--child-blue),
            var(--child-purple),
            var(--child-orange),
            var(--child-green)
        );

    opacity: .22;
}


.workflow-card {
    position: relative;

    z-index: 2;

    padding: 10px;

    text-align: center;
}


.workflow-number {
    width: 45px;
    height: 45px;

    margin: 0 auto 18px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 10px;

    font-weight: 850;

    box-shadow:
        0 7px 18px rgba(7,27,51,.10);
}


.blue-bg {
    background: var(--child-blue);
}


.purple-bg {
    background: var(--child-purple);
}


.orange-bg {
    background: var(--child-orange);
}


.green-bg {
    background: var(--child-green);
}


.workflow-icon {
    margin-bottom: 12px;

    font-size: 27px;
}


.workflow-card h3 {
    margin: 0 0 8px;

    color: var(--child-navy);

    font-size: 17px;
}


.workflow-card p {
    margin: 0 auto;

    max-width: 220px;

    color: var(--child-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   FEATURES
   ========================================================= */

.child-features {
    background: #ffffff;
}


.child-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.child-feature-card {
    position: relative;

    min-height: 255px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--child-border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.child-feature-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    opacity: .5;
}


.child-feature-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(7,27,51,.09);
}


.feature-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #aab7c6;

    font-size: 9px;

    font-weight: 850;
}


.feature-icon {
    width: 49px;
    height: 49px;

    margin-bottom: 20px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    font-size: 20px;
}


.child-feature-card h3 {
    margin: 0 0 10px;

    color: var(--child-navy);

    font-size: 18px;
}


.child-feature-card p {
    margin: 0 0 17px;

    color: var(--child-muted);

    font-size: 12px;

    line-height: 1.7;
}


.child-feature-card a {
    color: var(--child-blue);

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


/* Feature Colors */

.feature-blue {
    border-top: 3px solid var(--child-blue);
}


.feature-blue .feature-icon {
    background: var(--child-blue-light);
}


.feature-blue::after {
    background: rgba(8,124,255,.08);
}


.feature-purple {
    border-top: 3px solid var(--child-purple);
}


.feature-purple .feature-icon {
    background: var(--child-purple-light);
}


.feature-purple::after {
    background: rgba(123,97,255,.08);
}


.feature-orange {
    border-top: 3px solid var(--child-orange);
}


.feature-orange .feature-icon {
    background: var(--child-orange-light);
}


.feature-orange::after {
    background: rgba(255,159,67,.10);
}


.feature-green {
    border-top: 3px solid var(--child-green);
}


.feature-green .feature-icon {
    background: var(--child-green-light);
}


.feature-green::after {
    background: rgba(32,184,107,.08);
}


.feature-pink {
    border-top: 3px solid var(--child-pink);
}


.feature-pink .feature-icon {
    background: var(--child-pink-light);
}


.feature-pink::after {
    background: rgba(236,72,153,.08);
}


.feature-cyan {
    border-top: 3px solid var(--child-cyan);
}


.feature-cyan .feature-icon {
    background: var(--child-cyan-light);
}


.feature-cyan::after {
    background: rgba(32,199,232,.08);
}


/* =========================================================
   FAMILY SECTION
   ========================================================= */

.child-family {
    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #fffaff
        );

    border-top: 1px solid #edf2f7;
}


.family-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}


.family-visual {
    position: relative;

    min-height: 440px;

    display: grid;

    place-items: center;
}


.family-circle {
    position: absolute;

    border-radius: 50%;
}


.circle-blue {
    width: 350px;
    height: 350px;

    background:
        radial-gradient(
            circle,
            rgba(8,124,255,.12),
            transparent 68%
        );
}


.circle-purple {
    width: 250px;
    height: 250px;

    background:
        radial-gradient(
            circle,
            rgba(123,97,255,.12),
            transparent 68%
        );
}


.circle-green {
    width: 145px;
    height: 145px;

    background:
        radial-gradient(
            circle,
            rgba(32,184,107,.12),
            transparent 68%
        );
}


.family-illustration {
    position: relative;

    z-index: 4;

    width: 330px;
    height: 270px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    gap: 17px;
}


.family-person {
    position: relative;

    width: 85px;
    height: 110px;

    display: grid;

    place-items: center;

    border-radius: 45px 45px 20px 20px;

    background: #ffffff;

    font-size: 55px;

    box-shadow:
        0 15px 35px rgba(7,27,51,.10);
}


.parent-one {
    transform: rotate(-5deg);
}


.parent-two {
    transform: rotate(5deg);
}


.child-person {
    width: 72px;
    height: 95px;

    margin-bottom: 8px;

    background:
        linear-gradient(
            145deg,
            #fff4cf,
            #ffffff
        );

    font-size: 48px;
}


.family-shield {
    position: absolute;

    top: 5px;
    left: 50%;

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    transform: translateX(-50%);

    border-radius: 21px;

    background:
        linear-gradient(
            135deg,
            var(--child-blue),
            var(--child-purple)
        );

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 13px 28px rgba(8,124,255,.24);
}


.family-bubble {
    position: absolute;

    z-index: 8;

    padding: 9px 12px;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid #e0e8f1;

    color: var(--child-navy);

    font-size: 9px;

    font-weight: 750;

    box-shadow:
        0 9px 22px rgba(7,27,51,.08);
}


.bubble-one {
    left: 4%;
    top: 25%;
}


.bubble-two {
    right: 3%;
    top: 37%;

    color: var(--child-green);
}


.bubble-three {
    left: 22%;
    bottom: 5%;

    color: var(--child-blue);
}


.family-content h2 {
    margin: 0 0 20px;

    color: var(--child-navy);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -.04em;
}


.family-content h2 span {
    display: block;

    color: var(--child-purple);
}


.family-content > p {
    margin: 0 0 17px;

    color: var(--child-muted);

    font-size: 14px;

    line-height: 1.8;
}


.family-benefits {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;

    margin-top: 25px;
}


.family-benefits div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--child-navy);

    font-size: 11px;

    font-weight: 700;
}


.family-benefits strong {
    color: var(--child-green);
}


/* =========================================================
   PARTNER NETWORK
   ========================================================= */

.child-partner {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(32,199,232,.22),
            transparent 25%
        ),
        radial-gradient(
            circle at 82% 25%,
            rgba(236,72,153,.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(255,159,67,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #081d36,
            #17275b 48%,
            #33206b
        );

    color: #ffffff;
}


.partner-bg-circle {
    position: absolute;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 50%;
}


.partner-circle-one {
    width: 450px;
    height: 450px;

    top: -220px;
    right: -100px;
}


.partner-circle-two {
    width: 330px;
    height: 330px;

    bottom: -180px;
    left: -90px;
}


.partner-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}


.partner-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #63d7ff;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .16em;
}


.partner-content h2 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -.045em;
}


.partner-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #62dfff,
            #b89cff,
            #ff91c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.partner-content > p {
    max-width: 700px;

    margin: 0 auto 28px;

    color: #c6d5e8;

    font-size: 14px;

    line-height: 1.8;
}


.partner-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   PARTNER FLOW
   ========================================================= */

.partner-flow {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 35px
        1fr 35px
        1fr 35px
        1fr;

    align-items: center;

    gap: 8px;

    margin-top: 65px;

    padding: 28px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 18px;

    background: rgba(255,255,255,.055);

    backdrop-filter: blur(10px);
}


.partner-flow-item {
    text-align: center;
}


.partner-flow-icon {
    width: 53px;
    height: 53px;

    margin: 0 auto 10px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: rgba(255,255,255,.12);

    font-size: 22px;
}


.partner-flow-item strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 10px;

    letter-spacing: .08em;
}


.partner-flow-item span {
    color: #aebed3;

    font-size: 9px;
}


.partner-flow-arrow {
    color: #63d7ff;

    font-size: 22px;

    text-align: center;
}


/* =========================================================
   PARTNER BENEFITS
   ========================================================= */

.partner-benefits {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 17px;
}


.partner-benefits > div {
    padding: 18px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 11px;

    background: rgba(255,255,255,.045);

    text-align: center;
}


.partner-benefits strong {
    display: block;

    margin-bottom: 6px;

    color: #63d7ff;

    font-size: 10px;
}


.partner-benefits span {
    color: #c8d5e5;

    font-size: 9px;

    font-weight: 700;
}


/* =========================================================
   WHY PARTNER
   ========================================================= */

.child-partner-why {
    background: #ffffff;
}


.partner-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.partner-benefit-grid article {
    padding: 27px;

    border: 1px solid var(--child-border);

    border-radius: 15px;

    background: #ffffff;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.partner-benefit-grid article:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 35px rgba(7,27,51,.08);
}


.partner-benefit-grid article > div {
    width: 54px;
    height: 54px;

    margin: 0 auto 17px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--child-blue-light),
            var(--child-purple-light)
        );

    font-size: 22px;
}


.partner-benefit-grid h3 {
    margin: 0 0 9px;

    color: var(--child-navy);

    font-size: 17px;
}


.partner-benefit-grid p {
    margin: 0;

    color: var(--child-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   PRIVACY
   ========================================================= */

.child-privacy {
    padding: 28px 0;

    background: var(--child-light);

    border-top: 1px solid #edf2f7;

    border-bottom: 1px solid #edf2f7;
}


.privacy-box {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px 25px;

    border: 1px solid #dfe8f1;

    border-radius: 14px;

    background: #ffffff;
}


.privacy-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--child-purple-light);

    font-size: 21px;
}


.privacy-box > div:last-child > span {
    display: block;

    margin-bottom: 5px;

    color: var(--child-purple);

    font-size: 8px;

    font-weight: 850;

    letter-spacing: .12em;
}


.privacy-box h3 {
    margin: 0 0 5px;

    color: var(--child-navy);

    font-size: 17px;
}


.privacy-box p {
    margin: 0;

    color: var(--child-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.child-final-cta {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(123,97,255,.13),
            transparent 36%
        ),
        #ffffff;

    text-align: center;
}


.child-final-inner {
    max-width: 800px;

    margin: auto;
}


.child-final-inner > span {
    color: var(--child-blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .15em;
}


.child-final-inner h2 {
    margin: 14px 0 17px;

    color: var(--child-navy);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -.045em;
}


.child-final-inner h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--child-blue),
            var(--child-purple),
            var(--child-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.child-final-inner p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: var(--child-muted);

    font-size: 14px;

    line-height: 1.8;
}


.child-final-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .child-hero-inner {
        gap: 35px;
    }


    .challenge-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .child-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .partner-benefit-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .partner-benefits {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .child-safety-page .container {
        width: min(100% - 30px, 620px);
    }


    .child-safety-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .child-hero {
        min-height: auto;

        padding: 65px 0;
    }


    .child-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .child-hero-content {
        max-width: 650px;

        margin: auto;

        text-align: center;
    }


    .child-hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);
    }


    .child-hero-content > p {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    .child-hero-actions {
        justify-content: center;
    }


    .child-hero-trust {
        justify-content: center;
    }


    /* Hero visual */

    .child-hero-visual {
        min-height: 470px;

        max-width: 550px;

        margin: auto;
    }


    .child-phone {
        width: 245px;
        height: 480px;
    }


    .parent-card {
        left: 0;

        top: 45px;
    }


    .safety-card {
        right: 0;

        bottom: 45px;
    }


    /* Workflow */

    .child-workflow {
        grid-template-columns:
            1fr 1fr;

        gap: 35px 15px;
    }


    .workflow-line {
        display: none;
    }


    /* Family */

    .family-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .family-content {
        text-align: center;
    }


    .family-benefits {
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    /* Partner */

    .partner-flow {
        grid-template-columns:
            1fr 25px
            1fr;

        gap: 20px 5px;
    }


    .partner-flow-arrow:nth-of-type(2) {
        display: none;
    }


    .partner-flow-item:nth-of-type(5) {
        grid-column: 2;
    }


    .partner-flow-item:nth-of-type(7) {
        grid-column: 1;
    }


    .partner-benefits {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .child-safety-page .container {
        width: calc(100% - 28px);
    }


    .child-safety-page .section {
        padding: 55px 0;
    }


    .child-hero {
        padding: 50px 0;
    }


    .child-hero-content h1 {
        font-size: 40px;
    }


    .child-hero-actions {
        flex-direction: column;
    }


    .child-btn {
        width: 100%;

        box-sizing: border-box;
    }


    .child-hero-trust {
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }


    /* Hero visual */

    .child-hero-visual {
        min-height: 420px;
    }


    .child-phone {
        width: 215px;
        height: 425px;

        border-radius: 31px;
    }


    .child-phone-screen {
        border-radius: 22px;
    }


    .phone-status {
        padding-top: 17px;
    }


    .phone-app-header {
        padding: 12px;
    }


    .child-avatar {
        margin: 3px 11px 10px;

        padding: 11px;
    }


    .phone-control-grid {
        padding: 0 11px;

        gap: 6px;
    }


    .phone-control {
        padding: 8px 7px;
    }


    .phone-safe-status {
        margin: 10px;
    }


    .child-floating-card {
        padding: 9px 10px;
    }


    .floating-icon {
        width: 29px;
        height: 29px;

        font-size: 12px;
    }


    .child-floating-card strong {
        font-size: 8px;
    }


    .parent-card {
        left: -3px;

        top: 35px;
    }


    .safety-card {
        right: -3px;

        bottom: 30px;
    }


    /* Challenge */

    .challenge-grid {
        grid-template-columns: 1fr;
    }


    .challenge-card {
        min-height: auto;
    }


    /* Workflow */

    .child-workflow {
        grid-template-columns: 1fr;
    }


    .workflow-card {
        padding: 5px 15px;
    }


    /* Features */

    .child-feature-grid {
        grid-template-columns: 1fr;
    }


    /* Family */

    .family-visual {
        min-height: 350px;
    }


    .family-illustration {
        width: 285px;
        height: 235px;

        gap: 10px;
    }


    .family-person {
        width: 72px;
        height: 95px;

        font-size: 45px;
    }


    .child-person {
        width: 62px;
        height: 83px;

        font-size: 39px;
    }


    .family-shield {
        width: 53px;
        height: 53px;

        font-size: 22px;
    }


    .circle-blue {
        width: 290px;
        height: 290px;
    }


    .circle-purple {
        width: 210px;
        height: 210px;
    }


    .family-bubble {
        font-size: 8px;

        padding: 7px 9px;
    }


    .bubble-one {
        left: 0;
    }


    .bubble-two {
        right: 0;
    }


    .bubble-three {
        left: 15%;
    }


    .family-benefits {
        grid-template-columns: 1fr;
    }


    /* Partner */

    .child-partner {
        padding: 70px 0;
    }


    .partner-content h2 {
        font-size: 38px;
    }


    .partner-actions {
        flex-direction: column;
    }


    .partner-flow {
        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;

        padding: 20px;
    }


    .partner-flow-arrow {
        display: none !important;
    }


    .partner-flow-item:nth-of-type(5),
    .partner-flow-item:nth-of-type(7) {
        grid-column: auto;
    }


    .partner-benefits {
        grid-template-columns: 1fr;
    }


    .partner-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Privacy */

    .privacy-box {
        align-items: flex-start;

        padding: 18px;
    }


    .privacy-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }


    /* Final CTA */

    .child-final-cta {
        padding: 70px 0;
    }


    .child-final-inner h2 {
        font-size: 35px;
    }


    .child-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.child-safety-page a:focus-visible,
.child-safety-page button:focus-visible {
    outline: 3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .child-phone,
    .child-floating-card,
    .child-star,
    .challenge-card,
    .child-feature-card,
    .partner-benefit-grid article,
    .child-btn {
        animation: none !important;

        transition: none !important;
    }

}
/* =========================================================
   PROFESSIONAL CSS ICONS
   Avoid Unicode / Emoji rendering problems
   ========================================================= */

.child-icon {
    position: relative;

    width: 24px;
    height: 24px;

    display: inline-block;

    flex: 0 0 24px;
}


/* Shield */

.icon-shield::before {
    content: "";

    position: absolute;

    left: 5px;
    top: 2px;

    width: 14px;
    height: 18px;

    border: 2px solid currentColor;

    border-radius: 4px 4px 8px 8px;

    transform: rotate(0deg);
}


.icon-shield::after {
    content: "";

    position: absolute;

    left: 10px;
    top: 7px;

    width: 5px;
    height: 8px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg);
}


/* Lock */

.icon-lock::before {
    content: "";

    position: absolute;

    left: 5px;
    top: 9px;

    width: 14px;
    height: 11px;

    border: 2px solid currentColor;

    border-radius: 3px;
}


.icon-lock::after {
    content: "";

    position: absolute;

    left: 8px;
    top: 3px;

    width: 8px;
    height: 9px;

    border: 2px solid currentColor;

    border-bottom: 0;

    border-radius: 8px 8px 0 0;
}


/* Phone */

.icon-phone::before {
    content: "";

    position: absolute;

    left: 6px;
    top: 2px;

    width: 12px;
    height: 20px;

    border: 2px solid currentColor;

    border-radius: 4px;
}


.icon-phone::after {
    content: "";

    position: absolute;

    left: 10px;
    bottom: 5px;

    width: 4px;
    height: 2px;

    border-radius: 2px;

    background: currentColor;
}


/* Check */

.icon-check::before {
    content: "";

    position: absolute;

    left: 5px;
    top: 4px;

    width: 10px;
    height: 16px;

    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;

    transform: rotate(45deg);
}


/* AI */

.icon-ai::before {
    content: "AI";

    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    border: 2px solid currentColor;

    border-radius: 7px;

    font-size: 7px;
    font-weight: 900;
}


/* Network */

.icon-network::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    left: 8px;
    top: 1px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        -7px 13px 0 currentColor,
        7px 13px 0 currentColor;
}


.icon-network::after {
    content: "";

    position: absolute;

    width: 15px;
    height: 10px;

    left: 5px;
    top: 7px;

    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    border-radius: 0 0 8px 8px;
}