
/* =========================================
   PREMIUM WHY SECTION
========================================= */

.why-premium-section{
    position:relative;
    overflow:hidden;

    padding:8rem 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

/* BACKGROUND GLOW */

.why-bg-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}

.blur-1{
    width:420px;
    height:420px;

    top:-120px;
    left:-100px;

    background:rgba(220,38,38,.12);
}

.blur-2{
    width:400px;
    height:400px;

    right:-120px;
    bottom:-100px;

    background:rgba(245,158,11,.10);
}

/* HEADING */

.why-heading-wrap{
    position:relative;
    z-index:2;

    max-width:980px;
    margin-inline:auto;

    text-align:center;

    margin-bottom:5rem;
}

.why-mini-title{
    display:inline-flex;
    align-items:center;
    gap:.6rem;

    padding:.8rem 1.2rem;

    border-radius:999px;

    background:rgba(220,38,38,.08);

    color:#dc2626;

    font-size:.78rem;
    font-weight:800;
    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:1.8rem;
}

.why-heading-wrap h2{
    line-height:.92;
    font-weight:700;
    letter-spacing:-0.08em;
    color:#0f172a;
    max-width:1240px;
    /* border: 1px solid red; */
    margin-inline:auto;
    margin-bottom:1.8rem;
}

.why-heading-wrap p{
    max-width:760px;
    margin-inline:auto;

    font-size:1.12rem;
    line-height:1.95;

    color:#64748b;

    font-weight:500;
}

/* GRID */

.why-modern-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:2rem;
}

/* CARD */

.why-modern-card{
    position:relative;

    min-height:620px;

    border-radius:34px;

    overflow:hidden;

    background:#0f172a;

    isolation:isolate;

    cursor:pointer;

    opacity:0;

    transform:
        translateY(90px)
        scale(.92);

    filter:blur(10px);

    transition:
        opacity .9s cubic-bezier(.19,1,.22,1),
        transform 1s cubic-bezier(.19,1,.22,1),
        filter .8s ease,
        box-shadow .8s ease;
}

/* ACTIVE ANIMATION */

.reveal-cascade.active .why-modern-card{
    opacity:1;

    transform:
        translateY(0)
        scale(1);

    filter:blur(0);
}

/* STAGGER */

.reveal-cascade.active .why-modern-card:nth-child(1){
    transition-delay:.1s;
}

.reveal-cascade.active .why-modern-card:nth-child(2){
    transition-delay:.28s;
}

.reveal-cascade.active .why-modern-card:nth-child(3){
    transition-delay:.46s;
}

/* IMAGE */

.why-card-image{
    position:absolute;
    inset:0;
}

.why-card-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1);

    transition:
        transform 1.4s cubic-bezier(.19,1,.22,1),
        filter .8s ease;

    filter:
        brightness(.78)
        contrast(1.08)
        saturate(1.15);
}

/* OVERLAY */

.why-image-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.08) 0%,
            rgba(15,23,42,.42) 35%,
            rgba(2,6,23,.96) 100%
        );
}

/* HOVER */

.why-modern-card:hover{
    transform:
        translateY(-20px)
        rotateX(5deg)
        rotateY(-5deg)
        scale(1.02);

    box-shadow:
        0 50px 100px rgba(15,23,42,.25),
        0 0 40px rgba(220,38,38,.18);
}
.why-modern-card:hover .why-card-image img{
    transform:scale(1.1);

    filter:
        brightness(.9)
        contrast(1.12)
        saturate(1.25);
}

/* TOP */

.why-card-top{
    position:relative;
    z-index:3;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:2rem 2rem 0;
}

/* ICON */

.why-icon-box{
    width:74px;
    height:74px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.04)
        );

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.10);

    transition:
        transform .7s cubic-bezier(.19,1,.22,1),
        background .5s ease;
}

.why-modern-card:hover .why-icon-box{
    transform:
        translateY(-6px)
        rotate(-8deg);

    background:
        linear-gradient(
            135deg,
            rgba(220,38,38,.9),
            rgba(153,27,27,.9)
        );
}

/* TAG */

.why-card-tag{
    padding:.7rem 1rem;

    border-radius:999px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:.75rem;
    font-weight:700;
    letter-spacing:.12em;

    text-transform:uppercase;
}

/* CONTENT */

.why-card-content{
    position:absolute;
    left:0;
    bottom:0;

    z-index:3;

    padding:2.5rem;
}

/* TITLE */

.why-card-content h3{
    font-size:1.8rem;

    line-height:1.02;

    font-weight:700;

    letter-spacing:-0.05em;

    color:#fff;

    margin-bottom:1.2rem;

    max-width:90%;
}

/* TEXT */

.why-card-content p{
    font-size:1rem;

    line-height:1.9;

    color:rgba(255,255,255,.76);

    font-weight:500;

    max-width:92%;
}

/* MOBILE */

@media (max-width:1100px){

    .why-modern-grid{
        grid-template-columns:1fr;
    }

    .why-modern-card{
        min-height:520px;
    }

}

@media (max-width:768px){

    .why-premium-section{
        padding:5rem 0;
    }

    .why-heading-wrap h2{
        font-size:3rem;
    }

    .why-card-content{
        padding:2rem;
    }

    .why-card-content h3{
        font-size:1.7rem;
    }

}


/* =========================
   FLEET SOLUTIONS
========================= */

.fleet-solutions-section{
    padding:120px 0;
    background:
    radial-gradient(circle at top right,
    rgba(220,38,38,.06),
    transparent 40%),
    linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%);
    overflow:hidden;
}

.fleet-header{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.fleet-header .section-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(220,38,38,.08);
    color:var(--primary);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:20px;
}

.fleet-header h2{
    font-size:clamp(2.8rem,4vw,4.8rem);
    line-height:1.05;
    color:var(--ink);
    margin-bottom:18px;
    font-weight: 650;
}

.fleet-header h2 span{
    background:linear-gradient(
        135deg,
        #dc2626 0%,
        #ef4444 35%,
        #f59e0b 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    display:inline-block;
}

.fleet-header p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    line-height:1.9;
}

/* =========================
   GRID
========================= */

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* =========================
   CARD
========================= */

.fleet-card{
    position:relative;
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(12px);

    border:1px solid rgba(15,23,42,.08);
    border-radius:28px;

    padding:36px;

    box-shadow:
    0 10px 40px rgba(15,23,42,.06);

    transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

    opacity:0;
    transform:translateY(80px);
    animation:fleetReveal .9s ease forwards;
}

.fleet-card:nth-child(1){
    animation-delay:.15s;
}

.fleet-card:nth-child(2){
    animation-delay:.45s;
}

.fleet-card:nth-child(3){
    animation-delay:.75s;
}

@keyframes fleetReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.fleet-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(
    90deg,
    var(--primary),
    #f59e0b);
}

.fleet-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:
    radial-gradient(circle at top right,
    rgba(220,38,38,.08),
    transparent 45%);
    opacity:0;
    transition:.45s;
}

.fleet-card:hover{
    transform:translateY(-12px);
    border-color:rgba(220,38,38,.18);

    box-shadow:
    0 25px 60px rgba(15,23,42,.12);
}

.fleet-card:hover::after{
    opacity:1;
}

/* Featured */

.fleet-card.featured{
    border:2px solid rgba(220,38,38,.15);
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff7f7);
}

.fleet-card.featured::before{
    height:5px;
}

/* =========================
   TOP
========================= */

.fleet-top{
    margin-bottom:22px;
}

.fleet-label{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;

    background:rgba(220,38,38,.08);
    color:var(--primary);

    font-size:.72rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/* =========================
   CONTENT
========================= */

.fleet-card h3{
    font-size:1.55rem;
    color:var(--ink);
    margin-bottom:14px;
    font-weight: 650;
}

.fleet-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:24px;
}

/* =========================
   FEATURES
========================= */

.fleet-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.fleet-card ul li{
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 0;

    border-bottom:
    1px dashed rgba(15,23,42,.08);

    color:var(--text);
    font-weight:500;
}

.fleet-card ul li:last-child{
    border-bottom:none;
}

.fleet-card ul li::before{
    content:"✓";

    width:24px;
    height:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:rgba(220,38,38,.08);
    color:var(--primary);

    font-size:.75rem;
    font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .fleet-solutions-section{
        padding:90px 0;
    }

    .fleet-grid{
        grid-template-columns:1fr;
    }

    .fleet-card{
        animation:none;
        opacity:1;
        transform:none;
    }
}


/* ========= PREMIUM SHOWCASE ========= */

.section-full-bleed{
    padding:8rem clamp(1.5rem,4vw,5rem);
    background:linear-gradient(180deg,#fff,#f8fafc 45%,#eef2f7);
}

.showcase-modern{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:4.5rem;
    max-width:1450px;
    margin:0 auto 4rem;
    padding:4rem;
    border-radius:36px;
    overflow:hidden;

    background:rgba(255,255,255,.82);
    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
    0 20px 60px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.9);

    transition:.6s cubic-bezier(.19,1,.22,1);
}

/* right tilt shape */

.showcase-modern::before{
    content:"";
    position:absolute;
    top:-5%;
    right:-140px;
    width:320px;
    height:110%;

    background:
    linear-gradient(
        180deg,
        rgba(220,38,38,.14),
        rgba(252,211,77,.08)
    );

    transform:skewX(-22deg);
}

.showcase-modern:hover{
    transform:translateY(-10px);
    box-shadow:
    0 35px 90px rgba(15,23,42,.13);
}

/* reverse */

.showcase-modern.reverse .showcase-content{order:2;}
.showcase-modern.reverse .showcase-image{order:1;}

/* content */

.showcase-content{
    max-width:620px;
    position:relative;
    z-index:2;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:.7rem;

    padding:.8rem 1.3rem;
    margin-bottom:1.5rem;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        rgba(220,38,38,.08),
        rgba(252,211,77,.10)
    );

    border:1px solid rgba(220,38,38,.10);

    font-size:.78rem;
    font-weight:800;
    letter-spacing:.22em;
    text-transform:uppercase;

    color:var(--primary);
}

.badge::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:999px;
    background:var(--gold);
    box-shadow:0 0 18px rgba(252,211,77,.8);
}

.showcase-content h2{
    font-size:clamp(2.5rem,4vw,4rem);
    line-height:.94;
    letter-spacing:-.065em;
    margin-bottom:1.3rem;
    font-weight: 650;
}

.showcase-content p{
    max-width:54ch;
    font-size:1.03rem;
    line-height:1.9;
    color:var(--text-muted);
    margin-bottom:2rem;
}

/* list */

.check-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.9rem;

    margin:0 0 2.3rem;
    padding:0;

    list-style:none;
}

.check-list li{
    min-height:74px;

    display:flex;
    align-items:center;

    padding:1.1rem 1.2rem;

    border-radius:20px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.9),
        rgba(248,250,252,.96)
    );

    border:1px solid rgba(15,23,42,.06);

    font-size:.95rem;
    font-weight:700;
    line-height:1.45;

    transition:.35s ease;
}

.check-list li:hover{
    transform:translateY(-5px);
    border-color:rgba(220,38,38,.14);
    box-shadow:0 20px 40px rgba(15,23,42,.07);
}

/* tilt button */

.showcase-modern .btn-primary{
    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:250px;
    min-height:60px;

    padding:0 2.2rem;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:.92rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;

    border:none;

    /* clip-path:polygon(
        12px 0,
        100% 0,
        calc(100% - 12px) 100%,
        0 100%
    ); */

    box-shadow:
    0 20px 40px rgba(185,28,28,.28);

    overflow:hidden;

    transition:.4s ease;
}

.showcase-modern .btn-primary::before{
    content:"";

    position:absolute;

    top:0;
    left:-70px;

    width:55px;
    height:100%;

    background:rgba(255,255,255,.15);

    transform:skewX(-25deg);

    transition:.7s ease;
}

.btn-text{
    position:relative;
    z-index:2;
}

/* image */

.showcase-image{
    display:flex;
    align-items:center;
    justify-content:center;
}

.showcase-image img{
    width:100%;
    max-width:650px;

    border-radius:32px;

    border:1px solid rgba(255,255,255,.7);

    box-shadow:
    0 30px 70px rgba(15,23,42,.18);

    transition:.7s cubic-bezier(.19,1,.22,1);
}

.showcase-modern:hover .showcase-image img{
    transform:
    perspective(1200px)
    rotateY(-4deg)
    scale(1.03);
}

/* responsive */

@media(max-width:1100px){

    .showcase-modern,
    .showcase-modern.reverse{
        grid-template-columns:1fr;
        gap:3rem;
        padding:2.2rem;
    }

    .showcase-modern.reverse .showcase-content,
    .showcase-modern.reverse .showcase-image{
        order:unset;
    }

    .showcase-content,
    .showcase-content h2{
        max-width:100%;
    }

    .check-list{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .section-full-bleed{
        padding:5rem 1rem;
    }

    .showcase-modern{
        padding:1.5rem;
        border-radius:28px;
    }

    .showcase-content h2{
        font-size:2.5rem;
    }

    .showcase-modern .btn-primary{
        width:100%;
        min-width:100%;
    }
}

/* =====================================================
   PREMIUM STATS SECTION
===================================================== */
.bg-dark{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    linear-gradient(
        135deg,
        #071018 0%,
        #0b1c2b 45%,
        #102f4f 100%
    );
}

/* glow effects */

.bg-dark::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    top:-250px;
    left:-150px;

    border-radius:50%;

    background:rgba(205,1,34,.18);

    filter:blur(120px);
}

.bg-dark::after{
    content:"";
    position:absolute;

    width:450px;
    height:450px;

    bottom:-200px;
    right:-100px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    filter:blur(120px);
}

.bg-dark .container{
    position:relative;
    z-index:2;
}

/* GRID */

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CARD */

.stat-item{
    position:relative;

    padding:50px 25px;

    border-radius:24px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    transition:.4s ease;

    overflow:hidden;
}

.stat-item::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #cd0122,
        #ff4b67
    );
}

.stat-item:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.25),
    0 0 35px rgba(205,1,34,.15);
}

/* NUMBER */

.stat-number{
    font-size:4.5rem;
    font-weight:800;
    line-height:1;

    margin-bottom:18px;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #ffb3bf 40%,
        #cd0122 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    text-shadow:none;
}

/* LABEL */

.stat-label{
    font-size:.9rem;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:2px;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.95),
        rgba(255,255,255,.65)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* TABLET */

@media(max-width:992px){

    .grid-4{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:640px){

    .grid-4{
        grid-template-columns:1fr;
    }

    .stat-number{
        font-size:3.5rem;
    }
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-modern{
    position:relative;
    overflow:hidden;

    padding:6.5rem 1rem;

    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #f2f6fb 45%,
        #edf3fa 100%
    );
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.cta-modern::before,
.cta-modern::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
    z-index:0;
}

.cta-modern::before{
    width:420px;
    height:420px;

    top:-180px;
    left:-120px;

    background:rgba(205,1,34,.10);

    animation:floatGlow 10s ease-in-out infinite;
}

.cta-modern::after{
    width:380px;
    height:380px;

    right:-120px;
    bottom:-160px;

    background:rgba(1,37,73,.10);

    animation:floatGlow 12s ease-in-out infinite reverse;
}

@keyframes floatGlow{

    0%,100%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(25px,-15px);
    }
}

/* =====================================================
   GRID TEXTURE
===================================================== */

.cta-modern .bg-grid{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(15,23,42,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.03) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.4;

    z-index:0;
}

/* =====================================================
   MAIN CARD
===================================================== */

.cta-modern .container{
    position:relative;
    z-index:2;

    max-width:1180px;

    padding:4rem;

    border-radius:38px;

    overflow:hidden;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.90),
        rgba(255,255,255,.72)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.75);

    box-shadow:
    0 30px 80px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* animated border */

.cta-modern .container::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:3px;

    background:
    linear-gradient(
        90deg,
        #cd0122,
        #012549,
        #cd0122
    );

    background-size:200% 100%;

    animation:borderMove 7s linear infinite;
}

@keyframes borderMove{
    100%{
        background-position:200% 50%;
    }
}

/* =====================================================
   INNER LAYOUT
===================================================== */

.cta-modern-inner{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;

    gap:3rem;
}

/* =====================================================
   CONTENT
===================================================== */

.cta-content{
    max-width:720px;
}

.cta-badge{
    display:inline-flex;
    align-items:center;
    gap:.55rem;

    padding:.7rem 1rem;

    border-radius:999px;

    background:rgba(205,1,34,.06);

    border:1px solid rgba(205,1,34,.12);

    color:#cd0122;

    font-size:.72rem;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    margin-bottom:1.5rem;
}

.cta-badge::before{
    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:#cd0122;

    box-shadow:
    0 0 0 5px rgba(205,1,34,.10);
}

.cta-modern h2{
    margin:0 0 1.2rem;

    font-size:clamp(2rem,3vw,4rem);
    font-weight:650;

    line-height:.95;
    letter-spacing:-.06em;

    color:#012549;
}

.cta-modern h2 span{
    color:#cd0122;
}

.cta-modern p{
    max-width:58ch;

    font-size:1rem;
    line-height:1.9;

    color:#64748b;

    font-weight:500;
}

/* =====================================================
   STATS
===================================================== */

.cta-side{
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.cta-stat{
    position:relative;

    padding:1.1rem 1.2rem;

    min-width:210px;

    border-radius:22px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.95),
        rgba(248,250,252,.92)
    );

    border:1px solid rgba(226,232,240,.8);

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(15,23,42,.05);
}

.cta-stat:hover{
    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

.cta-stat h4{
    margin:0 0 .3rem;

    font-size:1.5rem;
    font-weight:800;

    color:#012549;
}

.cta-stat p{
    margin:0;

    font-size:.85rem;
    line-height:1.6;

    color:#64748b;
}

/* =====================================================
   BUTTON GROUP
===================================================== */

.cta-modern .btn-group{
    display:flex;
    flex-wrap:wrap;

    gap:1rem;

    margin-top:2rem;
}

/* =====================================================
   COMMON BUTTON
===================================================== */

.cta-modern .btn{
    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:58px;

    padding:14px 62px 14px 24px;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    font-size:.86rem;
    font-weight:800;

    letter-spacing:.05em;
    text-transform:uppercase;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    white-space:nowrap;
}

/* button text */

.cta-modern .btn-text{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;

    line-height:1.2;
}

/* shine */

.cta-modern .btn::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:skewX(-25deg);

    transition:.8s ease;
}

.cta-modern .btn:hover::before{
    left:140%;
}

/* arrow */

.cta-modern .btn::after{
    content:"→";

    position:absolute;

    right:16px;
    top:50%;

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.16);

    border:1px solid rgba(255,255,255,.14);

    color:inherit;

    font-size:.95rem;
    font-weight:700;

    transform:translateY(-50%);

    flex-shrink:0;

    transition:.3s ease;
}

/* =====================================================
   PRIMARY BUTTON
===================================================== */

.cta-modern .btn-primary{
    background:
    linear-gradient(
        135deg,
        #cd0122,
        #b1001d
    );

    color:#fff;

    box-shadow:
    0 18px 40px rgba(205,1,34,.20);
}

.cta-modern .btn-primary:hover{
    transform:translateY(-4px);

    box-shadow:
    0 28px 50px rgba(205,1,34,.28);
}

.cta-modern .btn-primary:hover::after{
    transform:
    translateY(-50%)
    translateX(4px);
}

/* =====================================================
   OUTLINE BUTTON
===================================================== */

.cta-modern .btn-outline{
    background:
    linear-gradient(
        145deg,
        rgba(1,37,73,.06),
        rgba(1,37,73,.02)
    );

    border:1px solid rgba(1,37,73,.12);

    color:#012549;

    box-shadow:
    0 10px 28px rgba(15,23,42,.05);

    backdrop-filter:blur(10px);
}

/* visible without hover */

.cta-modern .btn-outline .btn-text{
    color:#012549;
}

.cta-modern .btn-outline:hover{
    background:
    linear-gradient(
        135deg,
        #012549,
        #00162c
    );

    border-color:#012549;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
    0 24px 50px rgba(1,37,73,.20);
}

.cta-modern .btn-outline:hover .btn-text{
    color:#fff;
}

.cta-modern .btn-outline:hover::after{
    transform:
    translateY(-50%)
    translateX(4px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .cta-modern .container{
        padding:3rem 2rem;
    }

    .cta-modern-inner{
        grid-template-columns:1fr;
    }

    .cta-side{
        flex-direction:row;
        flex-wrap:wrap;
    }

    .cta-stat{
        flex:1;
        min-width:180px;
    }
}

@media(max-width:768px){

    .cta-modern{
        padding:4rem 1rem;
    }

    .cta-modern .container{
        padding:2.2rem 1.4rem;
        border-radius:28px;
    }

    .cta-modern h2{
        font-size:2.5rem;
    }

    .cta-modern p{
        font-size:.95rem;
        line-height:1.8;
    }

    .cta-modern .btn-group{
        flex-direction:column;
    }

    .cta-modern .btn{
        width:100%;
    }

    .cta-side{
        flex-direction:column;
    }
}