/*==================================================
SAFETY & SECURITY PAGE
PART 1
ROOT • COMMON • HERO • INTRO
==================================================*/

/*=========================
ROOT VARIABLES
=========================*/

:root{

    --primary:#0B1F3A;
    --secondary:#D62828;
    --white:#ffffff;
    --black:#111111;
    --text:#5f6673;
    --light:#f7f8fb;
    --border:#e7eaf0;

    --radius:24px;
    --transition:.4s ease;

}

/*=========================
COMMON
=========================*/

.safety-hero,
.safety-intro{

    position:relative;
    overflow:hidden;

}

.section-tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:8px 18px;

    background:rgba(214,40,40,.08);

    border-radius:50px;

    color:var(--secondary);

    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:18px;

}

.section-heading{

    max-width:1100px;
    margin:0 auto 55px;

    text-align:center;

}

.section-heading h2{

    color:var(--primary);

    font-size:48px;
    line-height:1.2;

    margin-bottom:20px;

}

.section-heading h2 span{

    color:var(--secondary);

}

.section-heading p{

    color:var(--text);

    font-size:18px;
    line-height:1.9;

}

/*======================================
PREMIUM HONEYCOMB HERO
======================================*/

.hero{

    position:relative;
    min-height:850px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#09192f;

}

.hero-bg{

    position:absolute;
    inset:0;
    overflow:hidden;

}

.hero-bg img{

    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:blur(14px);
    transform:scale(1.15);

}

.hero-overlay{

    position:absolute;
    inset:0;
    background:rgba(7,20,40,.45);
    backdrop-filter:blur(2px);

}

.hero-honeycomb{

    position:relative;
    width:1320px;
    height:620px;
    z-index:5;

}

/*=========================
HEXAGON
=========================*/

.hex{

    position:absolute;

    width:250px;
    height:285px;

    overflow:hidden;

    background:#fff;

    border:5px solid #fff;

    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    transition:.45s ease;

}

.hex img{

    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;

    transition:.5s;

}

.hex:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.hex:hover img{

    transform:scale(1.08);

}

/*=========================
POSITIONS
=========================*/

.hex1{

    left:20px;
    top:160px;

}

.hex2{

    left:230px;
    top:20px;

}

.hex3{

    left:440px;
    top:160px;

}

.hex4{

    left:650px;
    top:20px;

}

.hex5{

    left:650px;
    top:300px;

}

.hex6{

    left:860px;
    top:160px;

}

.hex7{

    left:1070px;
    top:20px;

}

/*======================================
TABLET
======================================*/

@media (max-width:991px){

.hero{

    min-height:auto;
    padding:90px 20px;

}

.hero-honeycomb{

    position:relative;

    width:100%;
    height:auto;

    display:grid;

    grid-template-columns:repeat(2,220px);

    justify-content:center;

    gap:25px;

}

.hex{

    position:relative;

    left:auto!important;
    top:auto!important;

    width:220px;
    height:250px;

}

}

/*======================================
MOBILE
======================================*/

@media (max-width:576px){

.hero{

    padding:70px 15px;

}

.hero-bg img{

    filter:blur(8px);

}

.hero-honeycomb{

    grid-template-columns:repeat(2,150px);

    gap:15px;

}

.hex{

    width:150px;
    height:170px;

    border-width:4px;

}

}

@media (max-width:380px){

.hero-honeycomb{

    grid-template-columns:repeat(2,130px);

}

.hex{

    width:130px;
    height:150px;

}

}
/*======================================
BOTTOM QUOTE
======================================*/

.hero-quote{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    width:90%;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    z-index:20;

}

.hero-quote h2{

    margin:0;

    color:#fff;

    font-size:36px;

    font-weight:700;

    line-height:1.3;

    text-align:center;

    white-space:nowrap;

    letter-spacing:.5px;

}

.hero-quote h2 span{

    color:#D62828;

}

.quote-line{

    flex:1;

    max-width:150px;

    height:2px;

    background:rgba(255,255,255,.8);

    position:relative;

}

.quote-line::before{

    content:"";

    position:absolute;

    width:8px;

    height:8px;

    border-radius:50%;

    background:#D62828;

    top:50%;

    left:-12px;

    transform:translateY(-50%);

}

.quote-line:last-child::before{

    left:auto;

    right:-12px;

}

/*======================================
TABLET
======================================*/

@media (max-width:991px){

.hero-quote{

    width:95%;

    gap:15px;

    bottom:30px;

}

.hero-quote h2{

    font-size:28px;

}

.quote-line{

    max-width:90px;

}

}

/*======================================
MOBILE
======================================*/

@media (max-width:576px){

.hero-quote{

    bottom:20px;

    gap:10px;

}

.hero-quote h2{

    font-size:18px;

    white-space:normal;

}

.quote-line{

    display:none;

}

}
/*=========================
INTRO
=========================*/

.safety-intro{

    position:relative;

    padding:110px 0;

    background:#fff;

}

.section-title{

    width:100%;
    max-width:1400px;

    margin:0 auto;

    text-align:center;

}

.section-title h2{

    color:var(--primary);

    font-size:48px;
    line-height:1.2;

    margin:18px 0 22px;

}

.intro-content{

    position:relative;

    width:100%;
    max-width:1400px;

    margin:60px auto 0;

    padding:55px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:28px;

    box-shadow:0 18px 60px rgba(0,0,0,.06);

}

.intro-content::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:6px;
    height:100%;

    background:var(--secondary);

    border-radius:20px;

}

.intro-content p{

    color:var(--text);

    font-size:18px;
    line-height:2;

    margin-bottom:25px;

}

.intro-content p:last-child{

    margin-bottom:0;

}

.intro-content strong{

    color:var(--primary);

}

/*==================================================
PART 2
SECURITY CARDS
==================================================*/

/*======================================
SECTION
======================================*/

.security-cards{

    position:relative;

    padding:70px 0 120px;

    background:#f8fafc;

    overflow:hidden;

}

.security-cards::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:450px;
    height:450px;

    background:rgba(214,40,40,.05);

    border-radius:50%;

    filter:blur(40px);

}

.security-cards::after{

    content:"";

    position:absolute;

    bottom:-120px;
    left:-120px;

    width:350px;
    height:350px;

    background:rgba(11,31,58,.05);

    border-radius:50%;

    filter:blur(35px);

}

/*======================================
SECTION HEADING
======================================*/

.security-cards .section-heading{

    position:relative;

    z-index:2;

    max-width:1200px;

    margin:0 auto 55px;

    text-align:center;

}

.security-cards .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    margin-bottom:12px;

    background:#FCECEC;

    color:#D62828;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.security-cards .section-heading h2{

    font-size:60px;

    line-height:1.15;

    color:#0B1F3A;

    margin-bottom:18px;

}

.security-cards .section-heading h2 span{

    color:#D62828;

}

.security-cards .section-heading p{

    max-width:850px;

    margin:0 auto;

    color:#666;

    font-size:18px;

    line-height:1.9;

}

/*======================================
GRID
======================================*/

.security-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

/*======================================
CARD
======================================*/

.security-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    overflow:hidden;

    background:#fff;

    border:1px solid #edf1f6;

    border-radius:26px;

    box-shadow:0 18px 55px rgba(0,0,0,.08);

    opacity:0;

    transform:translateY(60px);

    transition:
        transform .7s ease,
        opacity .7s ease,
        box-shadow .4s ease;

}

.security-card.show{

    opacity:1;

    transform:translateY(0);

}

.security-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.14);

}

.security-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:0;
    height:5px;

    background:#D62828;

    transition:.45s;

}

.security-card:hover::before{

    width:100%;

}

.security-card::after{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    border-radius:26px;

    pointer-events:none;

    transition:.35s;

}

.security-card:hover::after{

    border-color:rgba(214,40,40,.15);

}

/*======================================
CARD IMAGE
======================================*/

.card-image{

    position:relative;

    overflow:visible;

    height:340px;

    border-radius:26px 26px 0 0;

    background:#eef2f6;

}

.card-image img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;

    transition:.6s;

}

.security-card:hover .card-image img{

    transform:scale(1.08);

}

.card-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );

}

/*======================================
CARD ICON
======================================*/

.card-icon{

    position:absolute;

    left:35px;
    bottom:-30px;

    width:72px;
    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#D62828;

    color:#fff;

    font-size:28px;

    border:6px solid #fff;

    border-radius:50%;

    z-index:3;

    transition:.4s;

}

.security-card:hover .card-icon{

    transform:rotate(360deg) scale(1.05);

}

/*======================================
CARD CONTENT
======================================*/

.card-content{

    flex:1;

    padding:50px 28px 26px;

}

.card-content h3{

    color:#0B1F3A;

    font-size:30px;

    line-height:1.25;

    margin-bottom:18px;

    transition:.3s;

}

.security-card:hover h3{

    color:#D62828;

}

.card-content p{

    color:#666;

    font-size:16px;

    line-height:1.7;

    margin-bottom:14px;

}

.card-content ul{

    list-style:none;

    margin:0;

    padding:0;

}

.card-content ul li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:8px;

    color:#444;

    font-size:16px;

    line-height:1.6;

    font-weight:500;

    transition:.3s;

}

.card-content ul li:last-child{

    margin-bottom:0;

}

.card-content ul li i{

    color:#D62828;

    font-size:18px;

    margin-top:4px;

    flex-shrink:0;

    transition:.3s;

}

.card-content ul li:hover{

    transform:translateX(8px);

}

.card-content ul li:hover i{

    transform:scale(1.15);

}

/*======================================
LIST STAGGER ANIMATION
======================================*/

.security-card:hover ul li:nth-child(1){

    transition-delay:.05s;

}

.security-card:hover ul li:nth-child(2){

    transition-delay:.10s;

}

.security-card:hover ul li:nth-child(3){

    transition-delay:.15s;

}
/*==================================================
PART 3
BUILT AROUND SAFETY
==================================================*/

/*======================================
SECTION
======================================*/

.built-safety{

    position:relative;

    padding:120px 0;

    background:#fff;

    overflow:hidden;

}

.built-safety::before{

    content:"";

    position:absolute;

    top:-180px;
    left:-180px;

    width:420px;
    height:420px;

    background:rgba(214,40,40,.05);

    border-radius:50%;

    filter:blur(35px);

}

.built-safety::after{

    content:"";

    position:absolute;

    right:-120px;
    bottom:-120px;

    width:320px;
    height:320px;

    background:rgba(11,31,58,.05);

    border-radius:50%;

    filter:blur(35px);

}

/*======================================
GRID
======================================*/

.built-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:80px;

    align-items:center;

}

/*======================================
IMAGE
======================================*/

.built-image{

    position:relative;

    opacity:0;

    transform:translateY(60px);

    transition:
        transform .8s ease,
        opacity .8s ease;

}

.built-image.show{

    opacity:1;

    transform:translateY(0);

}

.built-image img{

    display:block;

    width:100%;

    border-radius:28px;

    object-fit:cover;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

    transition:.6s ease;

}

.built-image:hover img{

    transform:scale(1.03);

}

.built-image::before{

    content:"";

    position:absolute;

    top:-25px;
    left:-25px;

    width:180px;
    height:180px;

    background:#D62828;

    border-radius:24px;

    opacity:.08;

    z-index:-1;

}

.built-image::after{

    content:"";

    position:absolute;

    right:-25px;
    bottom:-25px;

    width:200px;
    height:200px;

    border:2px dashed rgba(214,40,40,.18);

    border-radius:30px;

    z-index:-1;

}

/*======================================
CONTENT
======================================*/

.built-content{

    opacity:0;

    transform:translateY(60px);

    transition:
        transform .8s ease,
        opacity .8s ease;

}

.built-content.show{

    opacity:1;

    transform:translateY(0);

}

.built-content .section-tag{

    margin-bottom:20px;

}

.built-content h2{

    color:#0B1F3A;

    font-size:48px;

    line-height:1.2;

    margin-bottom:24px;

}

.built-content h2 span{

    color:#D62828;

}

.built-content p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:22px;

}

.built-content p:last-of-type{

    margin-bottom:40px;

}

/*======================================
FEATURE GRID
======================================*/

.safety-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

/*======================================
FEATURE CARD
======================================*/

.feature-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:24px;

    background:#fff;

    border:1px solid #edf0f4;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}

.feature-box:hover{

    transform:translateY(-8px);

    border-color:#D62828;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*======================================
FEATURE ICON
======================================*/

.feature-box i{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    width:60px;
    height:60px;

    background:#D62828;

    color:#fff;

    font-size:24px;

    border-radius:50%;

    transition:.4s ease;

}

.feature-box:hover i{

    transform:rotate(360deg);

}

/*======================================
FEATURE TITLE
======================================*/

.feature-box h4{

    margin:0;

    color:#0B1F3A;

    font-size:18px;

    line-height:1.4;

    font-weight:700;

}
/*==================================================
PART 4
SECURITY PROCESS TIMELINE
==================================================*/

/*======================================
SECTION
======================================*/

.security-process{

    position:relative;

    padding:120px 0;

    background:#f8fafc;

    overflow:hidden;

}

.security-process::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:rgba(214,40,40,.05);

    border-radius:50%;

    filter:blur(45px);

}

.security-process::after{

    content:"";

    position:absolute;

    bottom:-120px;
    left:-120px;

    width:320px;
    height:320px;

    background:rgba(11,31,58,.05);

    border-radius:50%;

    filter:blur(35px);

}

/*======================================
SECTION HEADING
======================================*/

.security-process .section-heading{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.security-process .section-heading h2{

    color:#0B1F3A;

    font-size:48px;

    line-height:1.2;

    margin-bottom:18px;

}

.security-process .section-heading h2 span{

    color:#D62828;

}

.security-process .section-heading p{

    color:#666;

    font-size:18px;

    line-height:1.9;

}

/*======================================
TIMELINE WRAPPER
======================================*/

.process-wrapper{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-top:80px;

}

/*======================================
TIMELINE LINE
======================================*/

.process-wrapper::before{

    content:"";

    position:absolute;

    top:40px;
    left:6%;

    width:88%;
    height:4px;

    background:#d9dee7;

    border-radius:50px;

}

.process-wrapper::after{

    content:"";

    position:absolute;

    top:40px;
    left:6%;

    width:0;
    height:4px;

    background:#D62828;

    border-radius:50px;

    transition:width 2s ease;

}

.process-wrapper.active::after{

    width:88%;

}

/*======================================
STEP
======================================*/

.process-step{

    position:relative;

    z-index:2;

    flex:1;

    text-align:center;

    opacity:0;

    transform:translateY(50px);

    transition:
        transform .7s ease,
        opacity .7s ease;

}

.process-step.show{

    opacity:1;

    transform:translateY(0);

}

/*======================================
STEP ICON
======================================*/

.step-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:80px;
    height:80px;

    margin:0 auto 25px;

    background:#fff;

    color:#D62828;

    font-size:30px;

    border:4px solid #D62828;

    border-radius:50%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        box-shadow .4s ease;

}

.process-step:hover .step-icon{

    background:#D62828;

    color:#fff;

    transform:translateY(-8px) rotate(360deg);

    box-shadow:0 20px 45px rgba(214,40,40,.25);

}

/*======================================
STEP TITLE
======================================*/

.process-step h4{

    margin:0;

    color:#0B1F3A;

    font-size:20px;

    line-height:1.4;

    font-weight:700;

    transition:color .3s ease;

}

.process-step:hover h4{

    color:#D62828;

}

/*======================================
STEP DESCRIPTION
======================================*/

.process-step p{

    max-width:180px;

    margin:14px auto 0;

    color:#666;

    font-size:15px;

    line-height:1.8;

}

/*======================================
CONNECTOR
======================================*/

.process-line{

    flex:0;

    width:35px;

}
/*==================================================
PART 4B
TIMELINE ANIMATIONS & HOVER
==================================================*/

/*======================================
TIMELINE COUNTER
======================================*/

.process-wrapper{

    counter-reset:timelineStep;

}

.process-step{

    counter-increment:timelineStep;

}

.process-step::after{

    content:counter(timelineStep);

    position:absolute;

    top:-18px;

    right:28%;

    display:flex;

    align-items:center;

    justify-content:center;

    width:28px;

    height:28px;

    background:#0B1F3A;

    color:#fff;

    font-size:13px;

    font-weight:700;

    border-radius:50%;

    box-shadow:0 8px 18px rgba(0,0,0,.18);

}

/*======================================
STEP HOVER
======================================*/

.process-step:hover h4{

    color:#D62828;

}

.process-step:hover p{

    color:#444;

}

/*======================================
ICON EFFECT
======================================*/

.step-icon{

    position:relative;

    overflow:visible;

}

.step-icon::before{

    content:"";

    position:absolute;

    inset:-10px;

    border:2px solid rgba(214,40,40,.20);

    border-radius:50%;

    opacity:0;

    transform:scale(.8);

}

.process-step:hover .step-icon::before{

    animation:timelinePulse 1.4s infinite;

}

.step-icon::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-22px;

    width:14px;

    height:14px;

    background:#D62828;

    border-radius:50%;

    transform:translateX(-50%);

    box-shadow:0 0 0 6px rgba(214,40,40,.12);

}

/*======================================
ACTIVE LINE GLOW
======================================*/

.process-wrapper.active::after{

    box-shadow:
        0 0 10px rgba(214,40,40,.35),
        0 0 20px rgba(214,40,40,.20);

}

/*======================================
FLOAT ANIMATION
======================================*/

.process-step:nth-child(1){

    animation:floatStep 5s ease-in-out infinite;

}

.process-step:nth-child(3){

    animation:floatStep 5.5s ease-in-out infinite;

}

.process-step:nth-child(5){

    animation:floatStep 6s ease-in-out infinite;

}

.process-step:nth-child(7){

    animation:floatStep 6.5s ease-in-out infinite;

}

.process-step:nth-child(9){

    animation:floatStep 7s ease-in-out infinite;

}

/*======================================
SCROLL DELAYS
======================================*/

.process-step:nth-child(1){

    transition-delay:.05s;

}

.process-step:nth-child(3){

    transition-delay:.15s;

}

.process-step:nth-child(5){

    transition-delay:.25s;

}

.process-step:nth-child(7){

    transition-delay:.35s;

}

.process-step:nth-child(9){

    transition-delay:.45s;

}

/*======================================
ACTIVE STEP
======================================*/

.process-step.active .step-icon{

    background:#D62828;

    color:#fff;

}

.process-step.active h4{

    color:#D62828;

}

/*======================================
KEYFRAMES
======================================*/

@keyframes timelinePulse{

    0%{

        opacity:1;

        transform:scale(.9);

    }

    70%{

        opacity:0;

        transform:scale(1.5);

    }

    100%{

        opacity:0;

        transform:scale(1.7);

    }

}

@keyframes floatStep{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
PART 5A
SAFETY STATISTICS
==================================================*/

/*======================================
SECTION
======================================*/

.safety-stats{

    position:relative;

    padding:120px 0;

    background:linear-gradient(135deg,#071a32,#0d2b52);

    overflow:hidden;

}

.safety-stats::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    filter:blur(45px);

}

.safety-stats::after{

    content:"";

    position:absolute;

    left:-150px;
    bottom:-150px;

    width:350px;
    height:350px;

    background:rgba(214,40,40,.15);

    border-radius:50%;

    filter:blur(50px);

}

/*======================================
HEADER
======================================*/

.stats-header{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.stats-header .section-tag{

    background:rgba(255,255,255,.08);

    color:#fff;

}

.stats-header h2{

    margin:20px 0;

    color:#fff;

    font-size:48px;

    line-height:1.2;

}

.stats-header h2 span{

    color:#ff5b5b;

}

.stats-header p{

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

}

/*======================================
GRID
======================================*/

.stats-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*======================================
STAT CARD
======================================*/

.stat-card{

    position:relative;

    overflow:hidden;

    padding:45px 25px;

    text-align:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(16px);

    border-radius:24px;

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;

}

.stat-card:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.12);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.stat-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#D62828;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .4s ease;

}

.stat-card:hover::before{

    transform:scaleX(1);

}

.stat-card::after{

    content:"";

    position:absolute;

    right:-40px;
    bottom:-40px;

    width:120px;
    height:120px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

}

/*======================================
NUMBER
======================================*/

.stat-card h3{

    margin-bottom:10px;

    color:#fff;

    font-size:58px;

    font-weight:800;

    line-height:1;

}

.stat-card span{

    display:block;

    margin-bottom:18px;

    color:#ff5b5b;

    font-size:18px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.stat-card p{

    color:rgba(255,255,255,.85);

    font-size:16px;

    line-height:1.8;

}

/*======================================
COUNTER
======================================*/

.counter{

    display:inline-block;

    transition:transform .35s ease;

}

.stat-card:hover .counter{

    transform:scale(1.08);

}
/*==================================================
RESPONSIVE
SAFETY STATISTICS
==================================================*/

/*======================================
TABLET
======================================*/

@media (max-width:991px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

    .stats-header h2{

        font-size:40px;

    }

}

/*======================================
MOBILE
======================================*/

@media (max-width:767px){

    .safety-stats{

        padding:80px 0;

    }

    .stats-header{

        margin-bottom:45px;

    }

    .stats-header h2{

        font-size:30px;

    }

    .stats-header p{

        font-size:15px;

    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .stat-card{

        padding:35px 20px;

    }

    .stat-card h3{

        font-size:46px;

    }

    .stat-card span{

        font-size:16px;

    }

    .stat-card p{

        font-size:15px;

        line-height:1.7;

    }

}

/*======================================
SMALL MOBILE
======================================*/

@media (max-width:480px){

    .stat-card{

        padding:30px 18px;

    }

    .stat-card h3{

        font-size:40px;

    }

}
/*==================================================
PART 5B
STATISTICS & ADVANTAGES
ANIMATIONS
==================================================*/

/*======================================
SCROLL REVEAL
======================================*/

.stats-header,
.stat-card,
.advantages-content,
.advantages-images{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.stats-header.show,
.stat-card.show,
.advantages-content.show,
.advantages-images.show{

    opacity:1;

    transform:translateY(0);

}

/*======================================
STAGGER DELAY
======================================*/

.stat-card:nth-child(1){transition-delay:.05s;}
.stat-card:nth-child(2){transition-delay:.15s;}
.stat-card:nth-child(3){transition-delay:.25s;}
.stat-card:nth-child(4){transition-delay:.35s;}

.advantage-item:nth-child(1){transition-delay:.05s;}
.advantage-item:nth-child(2){transition-delay:.10s;}
.advantage-item:nth-child(3){transition-delay:.15s;}
.advantage-item:nth-child(4){transition-delay:.20s;}
.advantage-item:nth-child(5){transition-delay:.25s;}
.advantage-item:nth-child(6){transition-delay:.30s;}

/*======================================
IMAGE CARD
======================================*/

.image-card{

    animation:imageFloat 7s ease-in-out infinite;

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}

.image-card:nth-child(2){

    animation-duration:8s;

}

.image-card:nth-child(3){

    animation-duration:9s;

}

.image-card:nth-child(4){

    animation-duration:10s;

}

.image-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 65px rgba(0,0,0,.16);

}

.image-card:hover img{

    transform:scale(1.08);

}

/*======================================
ADVANTAGE ICON
======================================*/

.advantage-item i{

    transition:
        transform .45s ease,
        background .35s ease;

}

.advantage-item:hover i{

    background:#0B1F3A;

    transform:rotate(360deg) scale(1.08);

}

/*======================================
COUNTER EFFECT
======================================*/

.stat-card:hover h3{

    color:#ff6b6b;

    text-shadow:0 0 12px rgba(255,107,107,.25);

}

.stat-card:hover span{

    color:#fff;

}

/*======================================
SHINE EFFECT
======================================*/

.stat-card:hover::after{

    animation:shine 1.2s linear;

}

/*======================================
KEYFRAMES
======================================*/

@keyframes imageFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes shine{

    0%{

        transform:translateX(-120%) rotate(25deg);

        opacity:0;

    }

    30%{

        opacity:.25;

    }

    100%{

        transform:translateX(220%) rotate(25deg);

        opacity:0;

    }

}
/*==================================================
PART 6
CTA + FAQ
==================================================*/

/*======================================
CTA SECTION
======================================*/

.security-cta{

    position:relative;

    padding:120px 0;

    background:linear-gradient(135deg,#071B34,#0F2E55);

    overflow:hidden;

}

.security-cta::before{

    content:"";

    position:absolute;

    top:-200px;
    left:-180px;

    width:450px;
    height:450px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

}

.security-cta::after{

    content:"";

    position:absolute;

    right:-120px;
    bottom:-120px;

    width:320px;
    height:320px;

    background:rgba(214,40,40,.15);

    border-radius:50%;

    filter:blur(40px);

}

/*======================================
CTA BOX
======================================*/
.cta-box{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:50px;

    padding:60px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

}

/*======================================
CTA CONTENT
======================================*/

.cta-content h2{

    margin:20px 0;

    color:#fff;

    font-size:50px;

    line-height:1.2;

}

.cta-content p{

    margin-bottom:35px;

    color:rgba(255,255,255,.85);

    font-size:17px;

    line-height:1.9;

}

/*======================================
POINTS
======================================*/

.cta-points{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.cta-points div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

}

.cta-points i{

    color:#ff5a5a;

}

/*======================================
BUTTONS
======================================*/

.cta-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.btn-primary,
.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;

}

.btn-primary{

    background:#D62828;

    color:#fff;

}

.btn-primary:hover{

    background:#fff;

    color:#D62828;

    transform:translateY(-3px);

}

.btn-outline{

    color:#fff;

    border:2px solid rgba(255,255,255,.35);

}

.btn-outline:hover{

    background:#fff;

    color:#0B1F3A;

    transform:translateY(-3px);

}

/*======================================
CTA IMAGE
======================================*/

.cta-image{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

}

.cta-image img{

    display:block;

    width:100%;

    max-width:560px;

    height:auto;

    border-radius:20px;

    object-fit:cover;

}
/*======================================
FAQ SECTION
======================================*/

.security-faq{

    padding:120px 0;

    background:#f8fafc;

}

.faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

/*======================================
FAQ ITEM
======================================*/

.faq-wrapper details{

    overflow:hidden;

    margin-bottom:20px;

    background:#fff;

    border:1px solid #e8edf4;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.faq-wrapper details:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

/*======================================
FAQ TITLE
======================================*/

.faq-wrapper summary{

    position:relative;

    padding:24px 30px;

    cursor:pointer;

    list-style:none;

    color:#0B1F3A;

    font-size:18px;

    font-weight:700;

}

.faq-wrapper summary::-webkit-details-marker{

    display:none;

}

.faq-wrapper summary::after{

    content:"+";

    position:absolute;

    top:50%;
    right:30px;

    transform:translateY(-50%);

    color:#D62828;

    font-size:26px;

    font-weight:700;

    transition:transform .35s ease;

}

.faq-wrapper details[open] summary::after{

    content:"−";

}

/*======================================
FAQ CONTENT
======================================*/

.faq-wrapper details p{

    padding:0 30px 25px;

    color:#666;

    font-size:16px;

    line-height:1.9;

}
/*==================================================
RESPONSIVE
1400px
==================================================*/

@media (max-width:1400px){

    .section-heading,
    .section-title,
    .intro-content,
    .stats-header,
    .faq-wrapper{

        max-width:100%;

    }

    .section-heading h2{

        font-size:52px;

    }

    .section-title h2{

        font-size:44px;

    }

    .intro-content{

        padding:50px;

    }

    .security-grid{

        gap:30px;

    }

    .card-content{

        padding:50px 30px 30px;

    }

    .card-content h3{

        font-size:28px;

    }

    .built-grid{

        gap:65px;

    }

    .built-content h2{

        font-size:44px;

    }

    .process-wrapper{

        gap:18px;

    }

    .stats-grid{

        gap:25px;

    }

    .cta-box{

        gap:50px;

        padding:55px;

    }

    .cta-content h2{

        font-size:46px;

    }

}

/*==================================================
RESPONSIVE
1200px
==================================================*/

@media (max-width:1200px){

    /*==============================
    COMMON
    ==============================*/

    .section-heading h2,
    .section-title h2{

        font-size:42px;

    }

    .section-heading p,
    .intro-content p{

        font-size:17px;

    }

    .intro-content{

        padding:45px;

    }

    /*==============================
    SECURITY CARDS
    ==============================*/

    .security-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

    .card-image{

        height:240px;

    }

    .card-content{

        padding:48px 28px 28px;

    }

    .card-content h3{

        font-size:26px;

    }

    .card-content p{

        font-size:15px;

    }

    .card-icon{

        left:28px;

        width:65px;

        height:65px;

        font-size:24px;

    }

    /*==============================
    BUILT AROUND SAFETY
    ==============================*/

    .built-grid{

        gap:55px;

    }

    .built-content h2{

        font-size:40px;

    }

    /*==============================
    SECURITY PROCESS
    ==============================*/

    .security-process{

        padding:100px 0;

    }

    .process-wrapper{

        gap:15px;

        margin-top:70px;

    }

    .process-wrapper::before,
    .process-wrapper.active::after{

        left:5%;

        width:90%;

    }

    .step-icon{

        width:72px;

        height:72px;

        margin-bottom:20px;

        font-size:26px;

    }

    .process-step h4{

        font-size:18px;

    }

    .process-step p{

        max-width:150px;

        font-size:14px;

    }

    .process-step::after{

        right:25%;

        width:26px;

        height:26px;

        font-size:12px;

    }

    /*==============================
    STATISTICS
    ==============================*/

    .stats-header h2{

        font-size:42px;

    }

    .stat-card h3{

        font-size:52px;

    }

    /*==============================
    CTA
    ==============================*/

    .cta-box{

        gap:40px;

        padding:50px;

    }

    .cta-content h2{

        font-size:44px;

    }

    .cta-content p{

        font-size:16px;

    }

}
/*==================================================
RESPONSIVE
991px
==================================================*/

@media (max-width:991px){

    /*======================================
    GLOBAL
    ======================================*/

    section{

        overflow:hidden;

    }

    .safety-intro,
    .built-safety,
    .security-process,
    .safety-stats,
    .security-cta,
    .security-faq{

        padding:90px 0;

    }

    /*======================================
    COMMON
    ======================================*/

    .section-heading,
    .section-title{

        margin-bottom:45px;

    }

    .section-heading h2,
    .section-title h2,
    .built-content h2,
    .security-process .section-heading h2,
    .stats-header h2,
    .cta-content h2{

        font-size:36px;

        line-height:1.25;

    }

    .section-heading p,
    .section-title p,
    .intro-content p,
    .built-content p,
    .stats-header p,
    .cta-content p{

        font-size:16px;

        line-height:1.8;

    }

    .intro-content{

        padding:40px;

    }

    /*======================================
    SECURITY CARDS
    ======================================*/

    .security-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

    .card-image{

        height:300px;

    }

    .card-content{

        padding:45px 25px 25px;

    }

    .card-content h3{

        font-size:26px;

    }

    /*======================================
    BUILT SAFETY
    ======================================*/

    .built-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .built-image{

        order:1;

    }

    .built-content{

        order:2;

        text-align:center;

    }

    .safety-features{

        grid-template-columns:repeat(2,1fr);

    }

    /*======================================
    TIMELINE
    ======================================*/

    .process-wrapper{

        flex-direction:column;

        align-items:center;

        gap:45px;

        margin-top:60px;

    }

    .process-wrapper::before,
    .process-wrapper::after,
    .process-line{

        display:none;

    }

    .process-step{

        width:100%;

        max-width:500px;

    }

    .process-step p{

        max-width:100%;

    }

    .process-step::after{

        right:calc(50% - 60px);

    }

    /*======================================
    STATISTICS
    ======================================*/

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

    .stat-card{

        padding:40px 25px;

    }

    .stat-card h3{

        font-size:46px;

    }

    /*======================================
    CTA
    ======================================*/

    .cta-box{

        grid-template-columns:1fr;

        gap:40px;

        align-items:center;

        padding:40px;

    }

    .cta-content{

        text-align:center;

    }

    .cta-points{

        max-width:650px;

        margin:0 auto 35px;

    }

    .cta-buttons{

        justify-content:center;

    }

    .cta-image img{

        margin-top:0;

    }

    /*======================================
    FAQ
    ======================================*/

    .faq-wrapper{

        margin-top:45px;

    }

}
/*==================================================
RESPONSIVE
767px
==================================================*/

@media (max-width:767px){

    /*======================================
    GLOBAL
    ======================================*/

    .safety-intro,
    .security-cards,
    .built-safety,
    .security-process,
    .safety-stats,
    .security-cta,
    .security-faq{

        padding:80px 0;

    }

    /*======================================
    COMMON
    ======================================*/

    .section-tag{

        padding:7px 16px;

        font-size:12px;

        letter-spacing:.8px;

    }

    .section-heading,
    .section-title{

        margin-bottom:35px;

    }

    .section-heading h2,
    .section-title h2,
    .built-content h2,
    .security-process .section-heading h2,
    .stats-header h2,
    .cta-content h2{

        font-size:30px;

        line-height:1.3;

    }

    .section-heading p,
    .section-title p,
    .intro-content p,
    .built-content p,
    .stats-header p,
    .cta-content p{

        font-size:15px;

        line-height:1.8;

    }

    .intro-content{

        padding:30px 25px;

        border-radius:22px;

    }

    .intro-content::before{

        width:5px;

    }

    /*======================================
    SECURITY CARDS
    ======================================*/

    .security-grid{

        gap:25px;

        margin-top:45px;

    }

    .card-image{

        height:230px;

    }

    .card-icon{

        left:22px;

        bottom:-28px;

        width:60px;

        height:60px;

        font-size:22px;

    }

    .card-content{

        padding:42px 22px 22px;

    }

    .card-content h3{

        font-size:22px;

    }

    .card-content p,
    .card-content ul li{

        font-size:15px;

    }

    /*======================================
    BUILT SAFETY
    ======================================*/

    .built-grid{

        gap:40px;

    }

    .built-content{

        text-align:left;

    }

    .safety-features{

        grid-template-columns:1fr;

        gap:18px;

    }

    .feature-box{

        padding:20px;

    }

    .feature-box i{

        width:55px;

        height:55px;

        font-size:20px;

    }

    .feature-box h4{

        font-size:17px;

    }

    /*======================================
    TIMELINE
    ======================================*/

    .process-wrapper{

        margin-top:45px;

        gap:35px;

    }

    .process-step{

        max-width:100%;

    }

    .step-icon{

        width:65px;

        height:65px;

        margin-bottom:18px;

        font-size:22px;

    }

    .process-step h4{

        font-size:18px;

    }

    .process-step p{

        font-size:15px;

    }

    .process-step::after{

        display:none;

    }

    /*======================================
    STATISTICS
    ======================================*/

    .stats-header{

        margin-bottom:40px;

    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .stat-card{

        padding:35px 22px;

    }

    .stat-card h3{

        font-size:42px;

    }

    .stat-card span{

        font-size:16px;

    }

    .stat-card p{

        font-size:15px;

    }

    /*======================================
    CTA
    ======================================*/

    .cta-box{

        gap:30px;

        padding:30px;

    }

    .cta-content{

        text-align:left;

    }

    .cta-points{

        grid-template-columns:1fr;

        gap:14px;

        margin-bottom:30px;

    }

    .cta-buttons{

        justify-content:flex-start;

    }

    .btn-primary,
    .btn-outline{

        width:100%;

    }

    .cta-image img{

        margin-top:0;

        border-radius:18px;

    }

    /*======================================
    FAQ
    ======================================*/

    .faq-wrapper{

        margin-top:35px;

    }

    .faq-wrapper summary{

        padding:20px;

        font-size:16px;

    }

    .faq-wrapper summary::after{

        right:20px;

        font-size:22px;

    }

    .faq-wrapper details p{

        padding:0 20px 20px;

        font-size:15px;

    }

}
/*==================================================
RESPONSIVE
480px
==================================================*/

@media (max-width:480px){

    /*======================================
    GLOBAL
    ======================================*/

    .safety-intro,
    .security-cards,
    .built-safety,
    .security-process,
    .safety-stats,
    .security-cta,
    .security-faq{

        padding:65px 0;

    }

    /*======================================
    COMMON
    ======================================*/

    .section-heading,
    .section-title{

        margin-bottom:28px;

    }

    .section-heading h2,
    .section-title h2,
    .built-content h2,
    .security-process .section-heading h2,
    .stats-header h2,
    .cta-content h2{

        font-size:26px;

    }

    .section-heading p,
    .section-title p,
    .intro-content p,
    .built-content p,
    .stats-header p,
    .cta-content p{

        font-size:14px;

    }

    .intro-content{

        padding:22px 18px;

        border-radius:18px;

    }

    /*======================================
    SECURITY CARDS
    ======================================*/

    .security-grid{

        gap:20px;

        margin-top:35px;

    }

    .card-image{

        height:200px;

    }

    .card-icon{

        left:18px;

        width:55px;

        height:55px;

        font-size:20px;

    }

    .card-content{

        padding:38px 18px 18px;

    }

    .card-content h3{

        font-size:20px;

    }

    .card-content p,
    .card-content ul li{

        font-size:14px;

    }

    /*======================================
    BUILT SAFETY
    ======================================*/

    .feature-box{

        gap:14px;

        padding:18px;

    }

    .feature-box i{

        width:50px;

        height:50px;

        font-size:18px;

    }

    .feature-box h4{

        font-size:16px;

    }

    /*======================================
    TIMELINE
    ======================================*/

    .step-icon{

        width:60px;

        height:60px;

        font-size:20px;

    }

    .process-step h4{

        font-size:17px;

    }

    .process-step p{

        font-size:14px;

    }

    /*======================================
    STATISTICS
    ======================================*/

    .stats-header{

        margin-bottom:30px;

    }

    .stat-card{

        padding:28px 18px;

    }

    .stat-card h3{

        font-size:38px;

    }

    .stat-card span{

        font-size:15px;

    }

    .stat-card p{

        font-size:14px;

    }

    /*======================================
    CTA
    ======================================*/

    .cta-box{

        padding:22px 18px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-outline{

        width:100%;

        text-align:center;

    }

    .cta-image img{

        border-radius:16px;

    }

    /*======================================
    FAQ
    ======================================*/

    .faq-wrapper summary{

        padding:18px;

        font-size:15px;

    }

    .faq-wrapper summary::after{

        right:18px;

        font-size:20px;

    }

    .faq-wrapper details p{

        padding:0 18px 18px;

        font-size:14px;

    }

}

/*==================================================
RESPONSIVE
360px
==================================================*/

@media (max-width:360px){

    .section-tag{

        padding:6px 12px;

        font-size:11px;

    }

    .section-heading h2,
    .section-title h2,
    .built-content h2,
    .security-process .section-heading h2,
    .stats-header h2,
    .cta-content h2{

        font-size:23px;

    }

    .intro-content{

        padding:18px 15px;

    }

    .card-content{

        padding:35px 16px 16px;

    }

    .card-content h3{

        font-size:18px;

    }

    .feature-box{

        padding:16px;

    }

    .step-icon{

        width:54px;

        height:54px;

        font-size:18px;

    }

    .stat-card{

        padding:24px 15px;

    }

    .stat-card h3{

        font-size:34px;

    }

    .cta-box{

        padding:18px 15px;

    }

    .btn-primary,
    .btn-outline{

        padding:14px 18px;

        font-size:14px;

    }

    .faq-wrapper summary{

        padding:16px;

        font-size:14px;

    }

    .faq-wrapper details p{

        padding:0 16px 16px;

        font-size:13px;

    }

}

