/* ── VARIABLES ── */
:root {
    --bg: #050d18;
    --bg2: #071120;
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.08);
    --text: #ffffff;
    --text2: rgba(255,255,255,0.72);
    --text3: rgba(255,255,255,0.50);
    --green: #4ADE80;
    --green2: #00e87a;
    --blue: #1e90ff;
    --blue2: #4aaeff;
    --yellow: #FDB022;
    --red: #ff4444;
    --cyan: #00d4ff;
    --nav-h: 68px;
    --radius: 14px;
    --t: 0.3s ease;
}

body.light-mode {
    --bg: #eef4ff;
    --bg2: #e4edf8;
    --card-bg: rgba(255,255,255,0.88);
    --card-border: rgba(0,0,0,0.09);
    --text: #09192e;
    --text2: rgba(9,25,46,0.72);
    --text3: rgba(9,25,46,0.50);
}

/**, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter',sans-serif;
    padding-top: var(--nav-h);
    overflow-x: hidden;
    transition: background var(--t),color var(--t);
}
*/
/* ══════════════ NAVBAR ══════════════ */
/*.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 9999;
    background: rgba(5,13,24,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: background var(--t),border-color var(--t);
}

body.light-mode .nav {
    background: rgba(238,244,255,0.95);
    border-bottom-color: rgba(0,0,0,0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg,#FDB022,#e8900a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .nav-logo-icon svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: #fff;
        stroke-width: 2.5;
    }

.nav-brand {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
    letter-spacing: 0.04em;
}

    .nav-brand span {
        color: var(--yellow);
    }

.nav-sub {
    font-size: 9px;
    color: var(--text3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        color: var(--text2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color var(--t);
    }

        .nav-links a:hover {
            color: var(--text);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
*/
/* Theme toggle */
.theme-btn {
    width: 50px;
    height: 26px;
    border-radius: 13px;
    cursor: pointer;
    border: none;
    background: #1a2a3a;
    position: relative;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    padding: 2px;
}

body.light-mode .theme-btn {
    background: #bdd0e8;
}

.theme-knob {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

body.light-mode .theme-knob {
    transform: translateX(24px);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Sora',sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s,transform 0.2s;
}

    .btn-cta:hover {
        background: #1575d4;
        transform: translateY(-1px);
    }

.btn-outline-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s,background 0.2s;
}

body.light-mode .btn-outline-nav {
    border-color: rgba(0,0,0,0.2);
}

.btn-outline-nav:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
}

/* ══════════════ HERO (Image 3 layout) ══════════════ */
.safer-hero {
    position: relative;
    overflow: hidden;
    background-color: #00040e; /*linear-gradient( 135deg, #030b14 0%, #040e1c 40%, #051628 100% );*/
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
}

body.light-mode .safer-hero {
    background: linear-gradient(135deg,#ddeeff 0%,#e8f4ff 100%);
}

/* Background image fills right 65% */
.safer-hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background-image: url("../images/safernet/SaferNet-sec-01-Main.png");
    background-size: cover;
    background-position: left center;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.8) 50%, black 80%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.8) 50%, black 80%);
}

body.light-mode .safer-hero-bg {
    mask-image: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.9) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.9) 100%);
}

.safer-hero-left-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right,#030b14 0%,#030b14 55%,transparent 100%);
    pointer-events: none;
}

body.light-mode .safer-hero-left-overlay {
    background: linear-gradient(to right,#ddeeff 0%,#ddeeff 40%,transparent 100%);
}

.safer-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-top: 60px;
    padding-bottom: 30px;


/*
    position:relative;
    z-index:2;

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

    max-width:1400px;
    margin:auto;
    padding:100px 50px;*/
}

/* Badge pill */
.safer-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(74,222,128,0.4);
    border-radius: 20px;
    padding: 7px 16px;
    margin-bottom: 28px;
    width: fit-content;
}

    .safer-hero-badge i {
        color: var(--green);
        font-size: 13px;
    }

    .safer-hero-badge span {
        font-size: 13px;
        font-weight: 700;
        color: var(--green);
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

body.light-mode .safer-hero-badge {
    border-color: rgba(0,160,70,0.4);
}

    body.light-mode .safer-hero-badge i, body.light-mode .safer-hero-badge span {
        color: #009944;
    }

/* Hero title */
.safer-hero-title {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: clamp(44px,5.5vw,72px);
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
}

    .safer-hero-title .safer-line-green {
        color: var(--green);
        display: block;
    }

body.light-mode .safer-hero-title .safer-line-green {
    color: #009944;
}

.safer-hero-desc {
    font-size: clamp(15px,1.4vw,17px);
    color: var(--text2);
    line-height: 1.7;
    max-width: 450px;
    margin-bottom: 10px;
    animation: fadeUp 0.8s ease 0.3s both;
}

.safer-hero-sub-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--green);
    font-weight: 500;
    animation: fadeUp 0.8s ease 0.4s both;
}

body.light-mode .safer-hero-sub-line {
    color: #009944;
}

.safer-hero-sub-line i {
    font-size: 14px;
}

.safer-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeUp 0.8s ease 0.5s both;
}

/* Primary CTA */
.safer-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    font-family: 'Sora',sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s,transform 0.2s,box-shadow 0.2s;
}

    .safer-btn-primary:hover {
        background: #1575d4;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(30,144,255,0.4);
    }

.safer-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--text);
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Sora',sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: border-color 0.2s,background 0.2s,transform 0.2s;
}

body.light-mode .safer-btn-outline {
    border-color: rgba(0,0,0,0.2);
}

.safer-btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}


/* Left content */
.safer-hero-content {
    flex: 1;
    max-width: 650px;
}

/* Right image */
.safer-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatHero 5s ease-in-out infinite;
}

    .safer-hero-image img {
        width: 100%;
        max-width: 550px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 0 25px rgba(0,229,255,.3)) drop-shadow(0 0 50px rgba(74,222,128,.2));
    }

/* Floating effect */
@keyframes floatHero {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media(max-width:992px) {

    .safer-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .safer-hero-content {
        max-width: 100%;
    }

    .safer-hero-btns {
        justify-content: center;
    }

    .safer-hero-image img {
        max-width: 400px;
        margin-top: 30px;
    }
}

/*@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ── STATS BAR (bottom of hero, Image 3) ── */
.safer-hero-stats {
    position: relative;
    background: linear-gradient(90deg,rgba(10,20,40,0.92),rgba(8,18,36,0.96));
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 0;
}

body.light-mode .safer-hero-stats {
    background: rgba(255,255,255,0.9);
    border-top-color: rgba(0,0,0,0.08);
}

.safer-hero-stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
}

.safer-hstat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

    .safer-hstat:last-child {
        border-right: none;
    }

body.light-mode .safer-hstat {
    border-right-color: rgba(0,0,0,0.06);
}

.safer-hstat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(30,144,255,0.12);
    border: 1px solid rgba(30,144,255,0.3);
    color: var(--blue2);
}

/*.safer-hstat:nth-child(3) .safer-hstat-icon,
.safer-hstat:nth-child(5) .safer-hstat-icon {
    background: rgba(74,222,128,0.1);
    border-color: rgba(74,222,128,0.28);
    color: var(--green);
}*/

.safer-hstat-num {
    font-family: 'Sora',sans-serif;
    font-size: 22px;
    font-weight: 800;
    /*color: var(--blue2);*/
    color: var(--green);
    line-height: 1;
    margin-bottom: 2px;
}

.safer-hstat:nth-child(3) .safer-hstat-num,
.safer-hstat:nth-child(5) .safer-hstat-num {
    color: var(--green);
}

.safer-hstat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.safer-hstat-sub {
    font-size: 11px;
    color: var(--text3);
    margin-top: 1px;
}

/* ══════════════ SECTION 2 : WHY SAFERNET (Image 1) ══════════════ */

.safer-why-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--nav-h));
    padding: 70px 40px 60px;
    background: linear-gradient(90deg, rgba(3,11,20,0.98) 0%, rgba(3,11,20,0.92) 36%, rgba(3,11,20,0.45) 62%, rgba(3,11,20,0.15) 100%), url("../images/safernet/SaferNet-sec-02-Main.png");
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

body.light-mode .safer-why-section {
    background: linear-gradient(90deg, rgba(235,244,255,0.96) 0%, rgba(235,244,255,0.9) 38%, rgba(235,244,255,0.45) 68%, rgba(235,244,255,0.18) 100%), url("../images/safernet/SaferNet-sec-02-Main.png");
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.safer-why-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 25%, rgba(0, 212, 255, 0.16), transparent 35%);
    pointer-events: none;
}

.safer-why-inner {
    position: relative;
    z-index: 2;
    max-width: 1480px;
    margin: 0 auto;
}

.safer-why-content {
    max-width: 610px;
    padding-top: 10px;
    margin-bottom: 42px;
}

.safer-why-logo img {
    max-width: 265px;
    margin-bottom: 28px;
}

.safer-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid rgba(0, 230, 160, 0.65);
    border-radius: 999px;
    color: #00e6a0;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 230, 160, 0.04);
    margin-bottom: 28px;
}

.safer-why-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 900;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

    .safer-why-title span {
        color: #19e69a;
        text-shadow: 0 0 30px rgba(25,230,154,0.45);
    }

.safer-why-desc {
    max-width: 570px;
    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

body.light-mode .safer-why-title {
    color: #071426;
}

body.light-mode .safer-why-desc {
    color: #24364c;
}

body.light-mode .safer-why-badge {
    color: #008f58;
    border-color: rgba(0,143,88,0.5);
    background: rgba(0,143,88,0.06);
}

/* Cards */
.safer-why-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.safer-why-card {
    min-height: 330px;
    padding: 34px 22px 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(6,18,32,0.92), rgba(3,11,20,0.96));
    border: 1px solid rgba(120,190,255,0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    text-align: center;
    transition: 0.35s ease;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

    .safer-why-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0,230,160,0.75);
        box-shadow: 0 25px 60px rgba(0,230,160,0.16);
    }

body.light-mode .safer-why-card {
    background: rgba(255,255,255,0.88);
    border-color: rgba(0,80,150,0.18);
    box-shadow: 0 18px 45px rgba(20,40,70,0.12);
}

.safer-why-card-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20a8ff;
    font-size: 34px;
    border: 1px solid rgba(32,168,255,0.6);
    background: rgba(32,168,255,0.1);
    box-shadow: 0 0 35px rgba(32,168,255,0.32);
}

.safer-why-card:nth-child(2) .safer-why-card-icon,
.safer-why-card:nth-child(4) .safer-why-card-icon {
    color: #19e69a;
    border-color: rgba(25,230,154,0.65);
    background: rgba(25,230,154,0.1);
    box-shadow: 0 0 35px rgba(25,230,154,0.32);
}

.safer-why-card h3 {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.22;
    margin-bottom: 16px;
}

.safer-why-card p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.55;
}

.safer-why-card-img {
    width: 100%;
    height: 160px; /* adjust 140–180 if needed */
    object-fit: cover;
    object-position: center;
    display: block;
    margin-top: auto;
    margin-bottom: -2px;
    border-radius: 14px 14px 18px 18px;
    transition: transform .45s ease, filter .35s ease, opacity .35s ease;
    filter: brightness(.95);
}

/* Hover effect */
.safer-why-card:hover .safer-why-card-img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* Light mode */
body.light-mode .safer-why-card-img {
    filter: brightness(.98);
}

/* Mobile */
@media(max-width:768px) {

    .safer-why-card-img {
        height: 130px;
    }
}

body.light-mode .safer-why-card h3 {
    color: #071426;
}

body.light-mode .safer-why-card p {
    color: #43546a;
}

/* Animation */
.safer-reveal,
.safer-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    animation: saferFadeUp 0.8s ease forwards;
}

    .safer-stagger > *:nth-child(1) {
        animation-delay: 0.12s;
    }

    .safer-stagger > *:nth-child(2) {
        animation-delay: 0.22s;
    }

    .safer-stagger > *:nth-child(3) {
        animation-delay: 0.32s;
    }

    .safer-stagger > *:nth-child(4) {
        animation-delay: 0.42s;
    }

    .safer-stagger > *:nth-child(5) {
        animation-delay: 0.52s;
    }

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

/* Responsive */
@media (max-width: 1200px) {
    .safer-why-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .safer-why-section {
        padding: 60px 24px;
        background-position: top right;
    }

    .safer-why-content {
        max-width: 100%;
    }

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

@media (max-width: 600px) {
    .safer-why-section {
        padding: 50px 18px;
        background: linear-gradient(180deg, rgba(3,11,20,0.96), rgba(3,11,20,0.98)), url("../images/safernet/SaferNet-sec-02-Main.png");
        background-size: cover;
        background-position: center top;
    }

    body.light-mode .safer-why-section {
        background: linear-gradient(180deg, rgba(235,244,255,0.94), rgba(235,244,255,0.98)), url("../images/safernet/SaferNet-sec-02-Main.png");
        background-size: cover;
        background-position: center top;
    }

    .safer-why-logo img {
        max-width: 220px;
    }

    .safer-why-badge {
        font-size: 11px;
        padding: 10px 16px;
    }

    .safer-why-cards {
        grid-template-columns: 1fr;
    }

    .safer-why-card {
        min-height: auto;
    }
}

/* ══════════════ SECTION 3: HOW IT WORKS (Image 2) ══════════════ */
.safer-how-section {
    background: linear-gradient(180deg,#030b14 0%,#040e1c 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

body.light-mode .safer-how-section {
    background: linear-gradient(180deg,#ddeeff 0%,#e4edf8 100%);
}

/* Full image for How It Works section — split into top steps + bottom panels */
.safer-how-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0;
}

.safer-how-img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* 3 step boxes */



.safer-how-step-connect {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient( 180deg, rgba(3,10,25,.92), rgba(2,8,20,.98) );
    border: 1px solid rgba(0,180,255,.25);
}

/* Keep text above image */
.safer-how-step-head,
.safer-how-step-desc,
.safer-how-step-num {
    position: relative;
    z-index: 2;
}

@media(max-width:768px) {

    .safer-how-step-desc {
        width: auto;
        margin-left: 0;
        font-size: 16px;
    }
}
.safer-how-connect-img {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 420px;
    height: auto;
    z-index: 1;
    object-fit: contain;
    /* match glow from original image */
    filter: drop-shadow(0 0 15px rgba(0,180,255,.45)) drop-shadow(0 0 30px rgba(0,255,180,.15));
    pointer-events: none;
}

.safer-how-connect-img-03 {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 350px;
    height: auto;
    z-index: 1;
    object-fit: contain;
    /* match glow from original image */
    filter: drop-shadow(0 0 15px rgba(0,180,255,.45)) drop-shadow(0 0 30px rgba(0,255,180,.15));
    pointer-events: none;
}

/* mobile */
@media(max-width:768px) {

    .safer-how-step-connect {
        min-height: 400px;
    }

    .safer-how-connect-img {
        width: 85%;
        bottom: 0;
    }
}

.safer-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 54px;
    position: relative;
    z-index: 3;
}

.safer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(74,222,128,.38);
    background: rgba(74,222,128,.08);
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.safer-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 18px;
}

.safer-hl-green {
    color: var(--green);
    text-shadow: 0 0 28px rgba(74,222,128,.32);
}

.safer-section-header p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text2);
    font-size: 18px;
    line-height: 1.75;
}

/* Light mode */
body.light-mode .safer-badge-pill {
    background: rgba(0,160,70,.08);
    border-color: rgba(0,160,70,.28);
    color: #009944;
}

body.light-mode .safer-hl-green {
    color: #009944;
    text-shadow: none;
}

/* Mobile */
@media (max-width: 768px) {
    .safer-how-section {
        padding: 60px 18px;
    }

    .safer-section-header {
        margin-bottom: 34px;
    }

        .safer-section-header p {
            font-size: 15.5px;
            line-height: 1.65;
        }
}

.safer-how-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.safer-how-step {
    background: #061220;
    border: 1px solid rgba(30,144,255,0.25);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s,border-color 0.3s,box-shadow 0.3s;
}

body.light-mode .safer-how-step {
    background: rgba(255,255,255,0.9);
    border-color: rgba(30,144,255,0.2);
}

.safer-how-step:hover {
    transform: translateY(-5px);
    border-color: rgba(30,144,255,0.55);
    box-shadow: 0 14px 40px rgba(30,144,255,0.12);
}

.safer-how-step-num {
    font-family: 'Sora',sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    user-select: none;
}

body.light-mode .safer-how-step-num {
    color: rgba(0,0,0,0.05);
}

.safer-how-step-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.safer-how-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(30,144,255,0.15);
    border: 1.5px solid rgba(30,144,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora',sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue2);
}

.safer-how-step-titles h3 {
    font-family: 'Sora',sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 4px;
}

.safer-how-step-titles .safer-hl {
    color: var(--green);
    display: block;
}

body.light-mode .safer-how-step-titles .safer-hl {
    color: #009944;
}

.safer-how-step-desc {
    position: relative;
    z-index: 2;
    max-width: 240px;
    margin-top: 5px;
    margin: 22px 0 0 58px;
    color: #d8e3ef;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: .2px;
}

body.light-mode .safer-how-step-desc {
    color: var(--text);
}

.safer-how-step-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 18px;
    display: block;
}

.safer-how-arrow {
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #061220;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text2);
    z-index: 5;
}

body.light-mode .safer-how-arrow {
    background: rgba(255,255,255,0.9);
}

/* Bottom 3 panels (image2 bottom half) */
.safer-how-panels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.safer-how-panel {
    background: #061220;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.3s,border-color 0.3s;
}

body.light-mode .safer-how-panel {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.08);
}

.safer-how-panel:hover {
    transform: translateY(-4px);
}

.safer-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.light-mode .safer-panel-badge {
    color: #009944;
    border-color: rgba(0,160,70,0.3);
}

.safer-how-panel h3 {
    font-family: 'Sora',sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 8px;
}

.safer-how-panel .safer-panel-accent {
    color: var(--green);
}

body.light-mode .safer-how-panel .safer-panel-accent {
    color: #009944;
}

.safer-how-panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

    .safer-how-panel-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--text2);
    }

        .safer-how-panel-list li i {
            font-size: 13px;
            width: 16px;
            flex-shrink: 0;
        }



.safer-blunt-panel {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: 30px 34px;
}

.safer-panel-content {
    position: relative;
    z-index: 3;
    max-width: 52%;
}

.safer-panel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 22px;
    border: 1px solid rgba(0,255,150,.55);
    border-radius: 999px;
    color: #16ff96;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 22px;
}

.safer-blunt-title {
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 22px;
}

.safer-panel-not-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .safer-panel-not-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #f2f6fb;
        font-size: 19px;
        line-height: 1.8;
    }

.safer-x-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1.5px solid #ff392f;
    color: #ff392f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 25px;
}

.safer-control-layer-badge {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(80,170,220,.35);
    color: #14f28d;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 900;
}

.safer-layer-img {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-47%);
    width: 42%;
    max-width: 300px;
    height: auto;
    z-index: 2;
    object-fit: contain;
    pointer-events: none;
}

.safer-threat-panel {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.safer-threat-list {
    width: 40%;
}

    .safer-threat-list li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 22px;
        color: #fff;
    }

body.light-mode .safer-threat-list li {
    color: var(--text);
}
    .safer-red-line {
        position: absolute;
        left: 140px;
        width: 160px;
        height: 2px;
        background: linear-gradient( 90deg, rgba(255,60,60,.9), rgba(255,60,60,.2) );
        box-shadow: 0 0 8px #ff3333, 0 0 16px #ff3333;
    }

        .safer-red-line::after {
            content: "";
            position: absolute;
            right: -8px;
            top: -3px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff3a3a;
            box-shadow: 0 0 10px #ff3333;
        }
    /* shield area */

    .safer-shield-wrap {
        position: absolute;
        right: 20px;
        bottom: 10px;
        width: 420px;
        height: 320px;
    }

    .safer-shield {
        position: absolute;
        top: 15px;
        right: -9px;
        width: 294px;
        height: 300px;
        clip-path: polygon( 50% 0%, 100% 20%, 100% 60%, 50% 100%, 0% 60%, 0% 20% );
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient( circle, rgba(0,255,200,.15), transparent );
        box-shadow: 0 0 25px #00e1ff, 0 0 60px rgba(0,255,255,.6), inset 0 0 25px rgba(0,255,255,.2);
    }

        .safer-shield i {
            font-size: 100px;
            color: #39ffc5;
            filter: drop-shadow(0 0 15px #00ffb3) drop-shadow(0 0 35px #00ffff);
        }
        /* green safe lines */

        .safer-shield::before {
            content: "";
            position: absolute;
            left: -100px;
            top: 70px;
            width: 100px;
            height: 2px;
            background: #00ff95;
            box-shadow: 0 0 12px #00ff95, 0 40px #00ff95, 0 -40px #00ff95;
        }
    /* business box */

    .safer-business-box {
        position: absolute;
        right: 20px;
        bottom: -15px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 14px;
        border: 1px solid rgba(0,255,170,.3);
        background: rgba(3,12,25,.95);
        box-shadow: 0 0 20px rgba(0,255,170,.2);
    }

        .safer-business-box i {
            color: #00ff95;
            font-size: 22px;
        }

        .safer-business-box div {
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .safer-business-box span {
            color: #00ff95;
            display: block;
        }
    /* responsive */
    @media(max-width:768px) {
        .safer-blunt-panel {
            min-height: 520px;
            padding: 28px 24px;
        }

        .safer-panel-content {
            max-width: 100%;
        }

        .safer-layer-img {
            width: 78%;
            right: 50%;
            top: auto;
            bottom: 18px;
            transform: translateX(50%);
            opacity: .95;
        }

        .safer-control-layer-badge {
            font-size: 30px;
        }
    }

    .safer-li-red {
        color: #ff4444;
    }

    .safer-li-green {
        color: var(--green);
    }

    .safer-panel-means-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
    }

    .safer-panel-means-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        flex-shrink: 0;
        background: rgba(74,222,128,0.08);
        border: 1px solid rgba(74,222,128,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--green);
    }

    body.light-mode .safer-panel-means-icon {
        background: rgba(0,160,70,0.08);
        border-color: rgba(0,160,70,0.2);
        color: #009944;
    }

    .safer-panel-means-title {
        font-family: 'Sora',sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: var(--green);
        margin-bottom: 4px;
    }

    body.light-mode .safer-panel-means-title {
        color: #009944;
    }

    .safer-panel-means-desc {
        font-size: 13px;
        color: var(--text2);
        line-height: 1.55;
    }

    .safer-panel-not-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 12px 0 20px;
    }

        .safer-panel-not-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text2);
        }

    .safer-x-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        flex-shrink: 0;
        background: rgba(255,68,68,0.15);
        border: 1px solid rgba(255,68,68,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #ff4444;
    }

    .safer-control-layer-badge {
        font-family: 'Sora',sans-serif;
        font-size: 28px;
        font-weight: 800;
        color: var(--green);
        margin-top: 48px;
    }

    body.light-mode .safer-control-layer-badge {
        color: #009944;
    }

    .safer-panel-blunt-img {
        width: 110px;
        margin: 14px auto 0;
        display: block;
    }
    /* =========================================================
   SAFERNET - REAL LIFE SECTION
========================================================= */

    .safer-reallife-section {
        position: relative;
        overflow: hidden;
        padding: 72px 28px 86px;
        background: radial-gradient(circle at 50% 0%, rgba(0, 132, 255, .18), transparent 34%), radial-gradient(circle at 88% 85%, rgba(0, 255, 170, .12), transparent 28%), linear-gradient(180deg, #020817 0%, #020611 100%);
    }

    body.light-mode .safer-reallife-section {
        background: radial-gradient(circle at 50% 0%, rgba(0, 132, 255, .16), transparent 34%), radial-gradient(circle at 88% 85%, rgba(0, 180, 120, .12), transparent 28%), linear-gradient(180deg, #eaf4ff 0%, #dfefff 100%);
    }

    .safer-reallife-section .safer-section-header {
        text-align: center;
        max-width: 950px;
        margin: 0 auto 32px;
    }

        .safer-reallife-section .safer-section-header h2 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(34px, 4.3vw, 62px);
            line-height: 1.05;
            font-weight: 800;
            color: #fff;
            letter-spacing: -1.8px;
            text-shadow: 0 14px 32px rgba(0,0,0,.55);
        }

    body.light-mode .safer-reallife-section .safer-section-header h2 {
        color: #071323;
        text-shadow: none;
    }

    .safer-reallife-section .safer-section-header p {
        margin-top: 14px;
        color: rgba(255,255,255,.82);
        font-size: clamp(15px, 1.35vw, 21px);
        line-height: 1.45;
    }

    body.light-mode .safer-reallife-section .safer-section-header p {
        color: #405267;
    }

    .safer-hl-green,
    .safer-hl-color {
        color: #22f2a6;
    }
    /* Cards */
    .safer-reallife-cards {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
        margin-top: 28px;
    }

    .safer-rl-card {
        position: relative;
        min-height: 570px;
        overflow: hidden;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(5,17,32,.96), rgba(2,8,18,.98));
        border: 1px solid rgba(0,132,255,.55);
        box-shadow: inset 0 0 34px rgba(0,132,255,.08), 0 18px 44px rgba(0,0,0,.38);
        display: flex;
        flex-direction: column;
        isolation: isolate;
        transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    body.light-mode .safer-rl-card {
        background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,247,255,.98));
        border-color: rgba(0,115,220,.35);
        box-shadow: 0 16px 36px rgba(0,70,140,.14);
    }

    .safer-rl-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.38)), radial-gradient(circle at 50% 36%, rgba(0,145,255,.16), transparent 38%);
        pointer-events: none;
        z-index: 1;
    }

    .safer-rl-card:hover {
        transform: translateY(-8px);
        border-color: rgba(34,242,166,.75);
        box-shadow: 0 24px 58px rgba(0,0,0,.52), 0 0 34px rgba(0,132,255,.18);
    }

    .safer-rl-img-wrap {
        position: relative;
        height: 315px;
        overflow: hidden;
        background: #03101e;
    }

    .safer-rl-card-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
        filter: saturate(1.08) contrast(1.05);
    }

    .safer-rl-img-wrap::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 120px;
        background: linear-gradient(180deg, transparent, rgba(3,10,20,.96));
        z-index: 1;
    }

    body.light-mode .safer-rl-img-wrap::after {
        background: linear-gradient(180deg, transparent, rgba(245,250,255,.96));
    }

    .safer-rl-card-num {
        position: absolute;
        top: 18px;
        left: 18px;
        z-index: 3;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-family: 'Sora', sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: #30f5a8;
        background: rgba(0,24,24,.72);
        border: 1.5px solid rgba(34,242,166,.9);
        box-shadow: 0 0 24px rgba(34,242,166,.18);
    }

    body.light-mode .safer-rl-card-num {
        background: rgba(255,255,255,.86);
        color: #009c5a;
    }
    /* Body */
    .safer-rl-card-body {
        position: relative;
        z-index: 2;
        padding: 18px 26px 26px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .safer-rl-trigger {
        font-family: 'Sora', sans-serif;
        font-size: clamp(16px, 1.65vw, 20px);
        line-height: 1.28;
        font-weight: 600;
        color: #fff;
        margin-bottom: 12px;
        text-shadow: 0 8px 20px rgba(0,0,0,.45);
    }

    body.light-mode .safer-rl-trigger {
        color: #071323;
        text-shadow: none;
    }

    .safer-rl-desc {
        font-size: clamp(13px, 1.05vw, 17px);
        line-height: 1.55;
        color: rgba(255,255,255,.84);
        margin-bottom: 20px;
        flex: 1;
    }

    body.light-mode .safer-rl-desc {
        color: #44566d;
    }
    /* Status Box */
    .safer-rl-status {
        min-height: 78px;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 16px;
        border-radius: 10px;
        background: rgba(6,22,30,.78);
        border: 1px solid rgba(34,242,166,.42);
        box-shadow: inset 0 0 22px rgba(34,242,166,.05);
    }

    body.light-mode .safer-rl-status {
        background: rgba(255,255,255,.72);
        border-color: rgba(0,165,95,.32);
    }

    .safer-rl-status-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        color: #00ff9d;
        font-size: 26px;
        background: transparent;
        border: none;
        filter: drop-shadow(0 0 10px rgba(0,255,157,.45));
    }

    .safer-rl-status-label {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #22f2a6;
        line-height: 1.2;
    }

    .safer-rl-status-sub {
        margin-top: 4px;
        font-size: 14px;
        color: rgba(255,255,255,.82);
    }

    body.light-mode .safer-rl-status-sub {
        color: #405267;
    }
    /* Bottom Banner */
    .safer-rl-bottom-banner {
        margin-top: 24px;
        position: relative;
        overflow: hidden;
        min-height: 138px;
        border-radius: 16px;
        padding: 28px 40px;
        display: flex;
        align-items: center;
        gap: 28px;
        background: linear-gradient(90deg, rgba(3,13,27,.96) 0%, rgba(5,17,32,.92) 58%, rgba(3,13,27,.65) 100%), url("../images/safernet/reallife-banner-bg.png") right center / auto 100% no-repeat;
        border: 1px solid rgba(0,132,255,.55);
        box-shadow: inset 0 0 40px rgba(0,132,255,.08);
    }

    body.light-mode .safer-rl-bottom-banner {
        background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(245,250,255,.90) 58%, rgba(255,255,255,.66) 100%), url("../images/safernet/reallife-banner-bg.png") right center / auto 100% no-repeat;
        border-color: rgba(0,115,220,.28);
    }

    .safer-rl-banner-icon {
        width: 96px;
        height: 96px;
        flex: 0 0 96px;
        display: grid;
        place-items: center;
        font-size: 50px;
        color: #20f5a5;
        background: transparent;
        border: none;
        filter: drop-shadow(0 0 12px rgba(0,255,157,.75)) drop-shadow(0 0 22px rgba(0,132,255,.65));
    }

    .safer-rl-banner-text p {
        font-size: clamp(17px, 1.55vw, 24px);
        color: rgba(255,255,255,.88);
        line-height: 1.45;
        margin: 0;
    }

    body.light-mode .safer-rl-banner-text p {
        color: #27384c;
    }

    .safer-rl-banner-text p strong {
        color: #fff;
        font-weight: 800;
    }

    body.light-mode .safer-rl-banner-text p strong {
        color: #071323;
    }

    .safer-rl-banner-accent {
        margin-top: 10px;
        font-family: 'Sora', sans-serif;
        font-size: clamp(18px, 1.75vw, 26px);
        line-height: 1.3;
        font-weight: 800;
        color: #22f2a6;
    }
    /* Animation */
    .safer-reveal,
    .safer-stagger > * {
        opacity: 0;
        transform: translateY(28px);
        animation: saferFadeUp .75s ease forwards;
    }

        .safer-stagger > *:nth-child(1) {
            animation-delay: .05s;
        }

        .safer-stagger > *:nth-child(2) {
            animation-delay: .13s;
        }

        .safer-stagger > *:nth-child(3) {
            animation-delay: .21s;
        }

        .safer-stagger > *:nth-child(4) {
            animation-delay: .29s;
        }

        .safer-stagger > *:nth-child(5) {
            animation-delay: .37s;
        }

    @keyframes saferFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Responsive */
    @media (max-width: 1200px) {
        .safer-reallife-cards {
            grid-template-columns: repeat(3, 1fr);
        }

        .safer-rl-card {
            min-height: 540px;
        }
    }

    @media (max-width: 900px) {
        .safer-reallife-section {
            padding: 60px 18px 70px;
        }

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

        .safer-rl-bottom-banner {
            align-items: flex-start;
            background-size: cover;
        }
    }

    @media (max-width: 600px) {
        .safer-reallife-cards {
            grid-template-columns: 1fr;
        }

        .safer-rl-card {
            min-height: auto;
        }

        .safer-rl-img-wrap {
            height: 300px;
        }

        .safer-rl-bottom-banner {
            flex-direction: column;
            padding: 26px 22px;
        }

        .safer-rl-banner-icon {
            width: 78px;
            height: 78px;
            flex-basis: 78px;
            font-size: 42px;
        }
    }
    /* ══════════════ SECTION: WHAT YOU GAIN (Image 4) ══════════════ */
    /* =========================================================
   SAFERNET - GAINS SECTION
========================================================= */

    .safer-gains-section {
        position: relative;
        overflow: hidden;
        padding: 72px 28px 86px;
        background: radial-gradient(circle at 50% 0%, rgba(0, 132, 255, .16), transparent 34%), linear-gradient(180deg, #020817 0%, #020611 100%);
    }

    body.light-mode .safer-gains-section {
        background: radial-gradient(circle at 50% 0%, rgba(0, 132, 255, .13), transparent 34%), linear-gradient(180deg, #eaf4ff 0%, #dfefff 100%);
    }

    .safer-gains-section .safer-section-header {
        text-align: center;
        max-width: 980px;
        margin: 0 auto 32px;
    }

        .safer-gains-section .safer-section-header h2 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(34px, 4.2vw, 64px);
            line-height: 1.05;
            font-weight: 800;
            color: #fff;
            letter-spacing: -1.7px;
            text-shadow: 0 14px 32px rgba(0,0,0,.55);
        }

    body.light-mode .safer-gains-section .safer-section-header h2 {
        color: #071323;
        text-shadow: none;
    }

    .safer-gains-section .safer-section-header p {
        margin-top: 18px;
        color: rgba(255,255,255,.86);
        font-size: clamp(16px, 1.45vw, 23px);
        line-height: 1.45;
    }

    body.light-mode .safer-gains-section .safer-section-header p {
        color: #405267;
    }

    .safer-hl-green {
        color: #22f2a6;
    }
    /* Cards Grid */
    .safer-gains-cards {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
        margin-top: 28px;
    }

    .safer-gain-card {
        position: relative;
        min-height: 690px;
        overflow: hidden;
        border-radius: 16px;
        background: radial-gradient(circle at 50% 15%, rgba(0,132,255,.12), transparent 38%), linear-gradient(180deg, rgba(5,17,32,.97), rgba(2,8,18,.98));
        border: 1px solid rgba(0,132,255,.55);
        box-shadow: inset 0 0 34px rgba(0,132,255,.08), 0 18px 44px rgba(0,0,0,.38);
        display: flex;
        flex-direction: column;
        transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    body.light-mode .safer-gain-card {
        background: radial-gradient(circle at 50% 15%, rgba(0,132,255,.10), transparent 38%), linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,247,255,.98));
        border-color: rgba(0,115,220,.35);
        box-shadow: 0 16px 36px rgba(0,70,140,.14);
    }

    .safer-gain-card:hover {
        transform: translateY(-8px);
        border-color: rgba(34,242,166,.75);
        box-shadow: 0 24px 58px rgba(0,0,0,.52), 0 0 34px rgba(0,132,255,.18);
    }
    /* Top and Bottom Images */
    .safer-gain-img {
        width: 100%;
        display: block;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
    }

    .safer-gain-img-top {
        height: 210px;
        padding: 28px 24px 0;
        object-position: center bottom;
        filter: drop-shadow(0 0 14px rgba(0,132,255,.45)) drop-shadow(0 0 20px rgba(34,242,166,.16));
    }

    .safer-gain-img-bottom {
        height: 245px;
        margin-top: auto;
        padding: 0 20px 24px;
        object-position: center bottom;
        filter: drop-shadow(0 0 14px rgba(0,132,255,.32)) drop-shadow(0 0 18px rgba(34,242,166,.16));
    }
    /* Text Body */
    .safer-gain-card-body {
        position: relative;
        z-index: 2;
        padding: 12px 28px 10px;
        text-align: center;
    }

    .safer-gain-title {
        font-family: 'Sora', sans-serif;
        font-size: clamp(22px, 1.75vw, 31px);
        line-height: 1.17;
        font-weight: 800;
        color: #22f2a6;
        margin-bottom: 22px;
    }

    body.light-mode .safer-gain-title {
        color: #009c5a;
    }

    .safer-gain-divider {
        width: 70px;
        height: 2px;
        margin: 0 auto 24px;
        border-radius: 10px;
        background: #22f2a6;
        box-shadow: 0 0 12px rgba(34,242,166,.65);
    }

    body.light-mode .safer-gain-divider {
        background: #009c5a;
        box-shadow: none;
    }

    .safer-gain-desc {
        font-size: clamp(15px, 1.15vw, 19px);
        line-height: 1.48;
        color: rgba(255,255,255,.88);
        margin: 0;
    }

    body.light-mode .safer-gain-desc {
        color: #405267;
    }
    /* Animation */
    .safer-reveal,
    .safer-stagger > * {
        opacity: 0;
        transform: translateY(28px);
        animation: saferGainFadeUp .75s ease forwards;
    }

        .safer-stagger > *:nth-child(1) {
            animation-delay: .05s;
        }

        .safer-stagger > *:nth-child(2) {
            animation-delay: .13s;
        }

        .safer-stagger > *:nth-child(3) {
            animation-delay: .21s;
        }

        .safer-stagger > *:nth-child(4) {
            animation-delay: .29s;
        }

        .safer-stagger > *:nth-child(5) {
            animation-delay: .37s;
        }

    @keyframes saferGainFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Responsive */
    @media (max-width: 1200px) {
        .safer-gains-cards {
            grid-template-columns: repeat(3, 1fr);
        }

        .safer-gain-card {
            min-height: 660px;
        }
    }

    @media (max-width: 900px) {
        .safer-gains-section {
            padding: 60px 18px 70px;
        }

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

    @media (max-width: 600px) {
        .safer-gains-cards {
            grid-template-columns: 1fr;
        }

        .safer-gain-card {
            min-height: auto;
        }

        .safer-gain-img-top {
            height: 210px;
        }

        .safer-gain-img-bottom {
            height: 235px;
        }

        .safer-gain-card-body {
            padding: 10px 24px 14px;
        }
    }
    /*.safer-gains-section {
    background: linear-gradient(180deg,#030b14 0%,#040e1c 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

body.light-mode .safer-gains-section {
    background: linear-gradient(180deg,#ddeeff 0%,#e4edf8 100%);
}*/
    /* 5 tall cards like image4 */
    /*.safer-gains-cards {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}

.safer-gain-card {
    background: #061220;
    border: 1px solid rgba(74,222,128,0.18);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.34,1.2,.64,1),border-color 0.35s,box-shadow 0.35s;
}

body.light-mode .safer-gain-card {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,160,70,0.15);
}

.safer-gain-card:hover {
    transform: translateY(-7px);
    border-color: rgba(74,222,128,0.55);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.safer-gain-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.safer-gain-card-body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}*/
    /* Green horizontal divider line under image */
    /*.safer-gain-divider {
    width: 40px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 16px;
}

body.light-mode .safer-gain-divider {
    background: #009944;
}

.safer-gain-title {
    font-family: 'Sora',sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.25;
    margin-bottom: 14px;
}

body.light-mode .safer-gain-title {
    color: #009944;
}

.safer-gain-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
    flex: 1;
}*/
    /* ══════════════ SCROLL REVEAL ══════════════ */
    /*.safer-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease,transform 0.7s ease;
}

    .safer-reveal.up {
        opacity: 1;
        transform: translateY(0);
    }

.safer-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease,transform 0.6s ease;
}
*/
    .safer-stagger.up > *:nth-child(1) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .05s;
    }

    .safer-stagger.up > *:nth-child(2) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .12s;
    }

    .safer-stagger.up > *:nth-child(3) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .19s;
    }

    .safer-stagger.up > *:nth-child(4) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .26s;
    }

    .safer-stagger.up > *:nth-child(5) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .33s;
    }
    /* ══════════════ FOOTER ══════════════ */
    .safer-footer {
        background: #020910;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 32px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        transition: background var(--t);
    }

    body.light-mode .safer-footer {
        background: #d8e6f5;
        border-top-color: rgba(0,0,0,0.08);
    }

    .safer-footer-copy {
        font-size: 13px;
        color: var(--text3);
    }

    .safer-footer-links {
        display: flex;
        gap: 24px;
    }

        .safer-footer-links a {
            font-size: 13px;
            color: var(--text3);
            text-decoration: none;
            transition: color var(--t);
        }

            .safer-footer-links a:hover {
                color: var(--text);
            }
    /* ══════════════ RESPONSIVE ══════════════ */
    @media(max-width:1100px) {
        .safer-why-cards, .safer-reallife-cards, .safer-gains-cards {
            grid-template-columns: repeat(3,1fr);
        }

        .safer-how-steps, .safer-how-panels {
            grid-template-columns: 1fr;
        }
    }

    @media(max-width:768px) {
        .safer-nav-links {
            display: none;
        }

        .safer-hero-inner {
            padding: 40px 20px 30px;
        }

        .safer-hero-title {
            font-size: clamp(36px,8vw,52px);
        }

        .safer-hero-stats-inner {
            flex-direction: column;
        }

        .safer-hstat {
            border-right: none;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        body.light-mode .safer-hstat {
            border-bottom-color: rgba(0,0,0,0.06);
        }

        .safer-why-section, .safer-how-section, .safer-reallife-section, .safer-gains-section {
            padding: 60px 20px;
        }

        .safer-why-cards, .safer-reallife-cards, .safer-gains-cards {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media(max-width:480px) {
        .safer-why-cards, .safer-reallife-cards, .safer-gains-cards {
            grid-template-columns: 1fr;
        }

        .safer-hero-btns {
            flex-direction: column;
        }
    }

    