/*==================================================
    BLINK LAB — STYLE.CSS
    STABLE v2.0
    PART 1 / 6
==================================================*/

/*==========================
RESET
==========================*/

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

:root{

    --bg:#09090B;
    --bg-light:#111111;
    --surface:rgba(255,255,255,.05);

    --border:rgba(255,255,255,.08);

    --primary:#5B5FFF;
    --accent:#00D9FF;

    --text:#FFFFFF;
    --muted:#A1A1AA;

    --radius:18px;

    --shadow:
    0 20px 60px rgba(0,0,0,.35);

    --transition:.35s ease;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.6;

    overflow-x:hidden;

    cursor:default;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/*==========================
GLOBAL
==========================*/

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

button,
input,
textarea{

    font:inherit;

}

.container{

    width:min(1700px,96%);

    margin-inline:auto;

}

section{


    padding:120px 0;

}

/*==========================
LOADER
==========================*/


#loader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#09090B;

    z-index:99999;

    transition:.7s;

}

.loader-logo img{
    width:min(400px,80vw);
    height:auto;
}

/*==========================
AURORA
==========================*/

.background-gradient{

    position:fixed;

    inset:0;

    z-index:-5;

    background:

    radial-gradient(circle at 15% 25%,rgba(91,95,255,.18),transparent 32%),

    radial-gradient(circle at 85% 35%,rgba(0,217,255,.15),transparent 28%),

    radial-gradient(circle at 55% 90%,rgba(91,95,255,.12),transparent 35%);

    filter:blur(55px);

    animation:auroraMove 18s ease-in-out infinite alternate;

}

@keyframes auroraMove{

    from{

        transform:translateY(-25px);

    }

    to{

        transform:translateY(20px);

    }

}

/*==========================
HEADER
==========================*/

header{

    position:fixed;

    top:24px;

    left:0;

    width:100%;

    z-index:1000;

    display:flex;

    justify-content:center;

}

/*==========================
NAVBAR
==========================*/

.navbar{

    width:min(1180px,92%);

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:16px 26px;

    background:rgba(17,17,17,.55);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    box-shadow:

    0 20px 60px rgba(0,0,0,.30);

}

.logo{

    display:flex;

    align-items:center;

}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.hero-logo{

    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;

}

.hero-logo img{

    width:100%;
    max-width:420px;
    height:auto;

}
.nav-links{

    display:flex;

    gap:34px;

    list-style:none;

}

.nav-links a{

    color:#d6d6d6;

    font-size:15px;

    transition:var(--transition);

}

.nav-links a:hover{

    color:#fff;

}

.nav-links a.active{
    color: var(--accent);
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0,217,255,.35);
}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:14px 26px;

    border-radius:999px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    color:#fff;

    background:

    linear-gradient(135deg,

    var(--primary),

    var(--accent));

    box-shadow:

    0 0 35px rgba(91,95,255,.30);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

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

    background:rgba(255,255,255,.04);

}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);

}


/*==================================================
    BLINK LAB — STYLE.CSS
    STABLE v2.0
    PART 2 / 6
==================================================*/

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



.hero-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#d6d6d6;

    font-size:.95rem;

    backdrop-filter:blur(18px);

}

.hero h1{

    font-size:clamp(3.2rem,7vw,5.7rem);

    line-height:1.05;

    margin-bottom:28px;

    font-weight:800;

    letter-spacing:-2px;

}

.hero p{

    max-width:560px;

    color:var(--muted);

    font-size:1.12rem;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-logo-img{

    width:min(420px,90%);

    animation:floating 8s ease-in-out infinite;

    filter:

    drop-shadow(0 0 30px rgba(91,95,255,.35));

}

/*==========================
HEADINGS
==========================*/

h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:18px;

    font-weight:700;

}

.section-badge{

    display:inline-flex;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:20px;

    color:#d6d6d6;

    font-size:.9rem;

}

.portfolio-header{

    text-align:center;

    margin-bottom:70px;

}

.portfolio-header p{

    color:var(--muted);

    max-width:700px;

    margin:18px auto 0;

}

/*==========================
TECHNOLOGIE
==========================*/

.tech-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:24px;

}

.tech-card{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:120px;

    background:var(--surface);

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

    border-radius:18px;

    backdrop-filter:blur(18px);

    transition:var(--transition);

    font-weight:600;

}

.tech-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,217,255,.35);

    box-shadow:

    0 20px 50px rgba(0,0,0,.35);

}

/*==========================
ABOUT
==========================*/

.cards{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));

    gap:28px;

}

.card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:34px;

    backdrop-filter:blur(18px);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,217,255,.30);

}

.card h3{

    margin-bottom:18px;

    font-size:1.25rem;

}

.card p{

    color:var(--muted);

}

/*==================================================
    BLINK LAB — STYLE.CSS
    STABLE v2.0
    PART 3 / 6
==================================================*/

/*==========================
PORTFOLIO
==========================*/

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    align-items:start;

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    backdrop-filter:blur(18px);

    transition:all .4s ease;

    cursor:pointer;
	
	width:100%;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,217,255,.35);

    box-shadow:

    0 25px 70px rgba(0,0,0,.35);

}

.portfolio-image{

    position:relative;

    aspect-ratio:16/9;

    overflow:hidden;

    background:#0d0d12;

}

.portfolio-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    display:block;

    background:#0d0d12;

    transition:transform .45s ease;

}

.portfolio-card:hover .portfolio-image img{

    transform:scale(1.05);

}

.portfolio-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to top,

        rgba(9,9,11,.55),

        transparent 55%

    );

    pointer-events:none;

}

.portfolio-content{

    padding:26px;

}

.portfolio-content h3{

    font-size:1.35rem;

    margin-bottom:8px;

}

.portfolio-content span{

    color:var(--muted);

    font-size:.95rem;

}

/*==========================
PRICING
==========================*/

.pricing{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.price-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px;

    transition:all .35s ease;

    backdrop-filter:blur(18px);

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,217,255,.35);

}

.price-card h3{

    font-size:1.5rem;

    margin-bottom:18px;

}

.price-card span{

    display:block;

    margin-bottom:28px;

    font-size:2rem;

    font-weight:700;

    color:#fff;

}

.price-card ul{

    list-style:none;

}

.price-card li{

    padding:12px 0;

    color:var(--muted);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.price-card li:last-child{

    border-bottom:none;

}

.featured{

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

    transform:scale(1.03);

    box-shadow:

    0 0 45px rgba(0,217,255,.15);

}


/*==================================================
    BLINK LAB — STYLE.CSS
    STABLE v2.0
    PART 4 / 6
==================================================*/

/*==========================
CONTACT
==========================*/

form{

    width:100%;
    max-width:720px;

    margin:50px auto 0;

    display:flex;
    flex-direction:column;

    gap:20px;

}

input,
textarea{

    width:100%;

    padding:18px 22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    color:#fff;

    outline:none;

    transition:.3s;

    backdrop-filter:blur(18px);

}

input::placeholder,
textarea::placeholder{

    color:#8d8d96;

}

input:focus,
textarea:focus{

    border-color:#5B5FFF;

    box-shadow:

    0 0 0 4px rgba(91,95,255,.12);

}

textarea{

    min-height:180px;

    resize:vertical;

}

form button{

    padding:18px;

    border:none;

    border-radius:999px;

    background:

    linear-gradient(135deg,#5B5FFF,#00D9FF);

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

form button:hover{

    transform:translateY(-3px);

}

/*==========================
FOOTER
==========================*/

footer{

    padding:80px 0;

    margin-top:120px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

footer h2{

    margin-bottom:18px;

}

footer p{

    color:#A1A1AA;

    max-width:620px;

    margin:0 auto 24px;

}

footer span{

    color:#777;

}

/*==========================
CASE MODAL
==========================*/

.case-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.case-modal.active{

    opacity:1;

    visibility:visible;

}

.case-modal-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(18px);

}

.case-modal-content{

    position:relative;

    width:min(1200px,92%);

    max-height:92vh;

    overflow:hidden;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    box-shadow:

    0 40px 120px rgba(0,0,0,.5);

}

.case-header{

    padding:28px 34px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.case-header p{

    color:#9ca3af;

    margin-top:6px;

}

.case-close{

    position:absolute;

    right:20px;

    top:20px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#202020;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.case-close:hover{

    background:#5B5FFF;

}

.browser-top{

    height:46px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

    background:#18181B;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.browser-left{

    display:flex;

    gap:8px;

}

.browser-left span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#555;

}

.browser-address{

    color:#9CA3AF;

    font-size:.85rem;

}

#portfolioFrame{

    width:100%;

    height:75vh;

    border:none;

    background:#09090B;

}

.case-swipe-hint{

    text-align:center;

    padding:18px;

    color:#777;

    font-size:.85rem;

}

/*==================================================
    BLINK LAB — STYLE.CSS
    STABLE v2.0
    PART 5 / 6
==================================================*/

/*==========================
GLASSMORPHISM
==========================*/

.glass{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

}

/*==========================
GLOW EFFECTS
==========================*/

.glow{

    box-shadow:
    0 0 30px rgba(91,95,255,.20);

}

.glow:hover{

    box-shadow:
    0 0 50px rgba(0,217,255,.30);

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#09090B;

}

::-webkit-scrollbar-thumb{

    background:#30303a;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#5B5FFF;

}

/*==========================
SELECTION
==========================*/

::selection{

    background:#5B5FFF;

    color:#fff;

}

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

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

.float{

    animation:floating 6s ease-in-out infinite;

}

@keyframes glowPulse{

    0%{

        box-shadow:0 0 18px rgba(91,95,255,.18);

    }

    50%{

        box-shadow:0 0 45px rgba(91,95,255,.35);

    }

    100%{

        box-shadow:0 0 18px rgba(91,95,255,.18);

    }

}

.hero-logo-img{

    animation:

    floating 7s ease-in-out infinite,

    glowPulse 4s infinite;

}

/*==========================
SCROLL REVEAL
==========================*/

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.fade-up.active{

    opacity:1;

    transform:none;

}

.fade-left{

    opacity:0;

    transform:translateX(-60px);

    transition:1s;

}

.fade-left.active{

    opacity:1;

    transform:none;

}

.fade-right{

    opacity:0;

    transform:translateX(60px);

    transition:1s;

}

.fade-right.active{

    opacity:1;

    transform:none;

}

.zoom{

    opacity:0;

    transform:scale(.92);

    transition:1s;

}

.zoom.active{

    opacity:1;

    transform:scale(1);

}

/*==========================
HOVER EFFECTS
==========================*/

.tech-card,
.card,
.price-card,
.portfolio-card{

    will-change:transform;

}

.tech-card:hover,
.card:hover,
.price-card:hover,
.portfolio-card:hover{

    transform:

    translateY(-8px);

}

/*==========================
PERFORMANCE
==========================*/

img{

    image-rendering:auto;

}

.portfolio-image img{

    backface-visibility:hidden;

    will-change:transform;

}

.hero-logo-img{

    will-change:transform;

}

.background-gradient{

    will-change:transform;

}

/*==================================================
    BLINK LAB — STYLE.CSS
    STABLE v2.0
    PART 6 / 6
==================================================*/

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

@media (max-width:1200px){

    .container{

        width:92%;

    }

    .hero{

        gap:50px;

    }

}

@media (max-width:992px){

    .navbar{

        padding:16px 20px;

    }

    .nav-links{

        display:none;

    }

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

        padding-top:170px;

    }

    .hero-content{

        align-items:center;

    }

    .hero-buttons{

        justify-content:center;

    }

   .portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(380px,1fr));

    gap:34px;

}

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

    .pricing{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    section{

        padding:90px 0;

    }

    .hero{

        padding-top:150px;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

    .portfolio-grid{

        grid-template-columns:1fr;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .tech-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .featured{

        transform:none;

    }

}

@media (max-width:576px){

    .logo img{

        height:34px;

    }

    .hero h1{

        font-size:34px;

    }

    .hero-logo-img{

        width:250px;

    }

    h2{

        font-size:32px;

    }

    .portfolio-image{

        height:220px;

    }

    .portfolio-content{

        padding:22px;

    }

    .price-card{

        padding:28px;

    }

    .case-modal-content{

        width:96%;

    }

    #portfolioFrame{

        height:65vh;

    }

}

@media (max-width:420px){

    .hero{

        padding-top:135px;

    }

    .hero h1{

        font-size:30px;

    }

    .hero-logo-img{

        width:190px;

    }

    .tech-grid{

        grid-template-columns:1fr;

    }

}

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

@media (prefers-reduced-motion:reduce){

*,
*::before,
*::after{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}

/*==========================
OPTIMIZATIONS
==========================*/

.hero,
.portfolio-card,
.card,
.price-card,
.tech-card{

contain:layout paint;

}

iframe{

display:block;

}

button{

appearance:none;

-webkit-appearance:none;

}

input,
textarea{

appearance:none;

-webkit-appearance:none;

}

html{

scroll-padding-top:120px;

}

/*==========================
END
==========================*/


/* Wyśrodkowanie nagłówków sekcji */
.tech h2,
#about h2,
#portfolio h2,
#pricing h2,
#contact h2 {
    text-align: center;
}

.portfolio-header,
.tech,
#about,
#pricing,
#contact {
    text-align: center;
}

.portfolio-header p,
#contact p {
    text-align: center;
}

#form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

#form-status.show {
    opacity: 1;
    transform: translateY(0);
}

#form-status.success {
    color: #2ecc71;
}

#form-status.error {
    color: #ff5b5b;
}

#form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

#form-status.show {
    opacity: 1;
    transform: translateY(0);
}

#form-status.success {
    color: #2ecc71;
}

#form-status.error {
    color: #ff5b5b;
}

/* ==========================================
   MOBILE FIX v3.0
   Wklej na sam koniec style.css
========================================== */

@media (max-width: 768px){

    html,
    body{
        overflow-x:hidden;
    }

    .container{
        width:92%;
    }

    section{
        padding:70px 0;
    }

    /* HERO */

    .hero{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:40px;
        padding-top:130px;
        min-height:auto;
        text-align:center;
    }

    .hero-content{
        width:100%;
        align-items:center;
    }

    .hero h1{
        font-size:2.3rem;
        line-height:1.1;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:1rem;
        max-width:100%;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
        gap:14px;
    }

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

    .hero-image{
        width:100%;
    }

    .hero-logo-img{
        width:min(260px,80%);
    }

    .hero-logo img{
        width:100%;
        max-width:300px;
    }

    /* NAVBAR */

    header{
        top:10px;
    }

    .navbar{
        width:94%;
        padding:14px 18px;
    }

    .logo img{
        height:36px;
    }

    /* TECHNOLOGIE */

    .tech-grid{
        grid-template-columns:1fr;
    }

    /* ABOUT */

    .cards{
        grid-template-columns:1fr;
        gap:20px;
    }

    .card{
        padding:24px;
    }

    /* PORTFOLIO */

    .portfolio-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:24px;
    }

    .portfolio-card{
        width:100%;
    }

    .portfolio-image{
        aspect-ratio:16/10;
        height:auto;
    }

    /* CENNIK */

    .pricing{
        grid-template-columns:1fr;
    }

    .price-card{
        padding:28px;
    }

    /* FORMULARZ */

    form{
        width:100%;
    }

    input,
    textarea{
        padding:16px;
    }

    /* MODAL */

    .case-modal-content{
        width:96%;
        max-height:95vh;
    }

    #portfolioFrame{
        height:65vh;
    }

}

/* MAŁE TELEFONY */

@media (max-width:480px){

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:2rem;
    }

    h2{
        font-size:2rem;
    }

    .badge{
        font-size:.8rem;
        padding:8px 14px;
    }

    .portfolio-content{
        padding:20px;
    }

    .portfolio-content h3{
        font-size:1.15rem;
    }

}

/* ZABEZPIECZENIE PRZED ROZSZERZANIEM */

img,
video,
iframe,
canvas{
    max-width:100%;
    height:auto;
}

*{
    min-width:0;
}

.hero{

    width:min(1180px,92%);
    margin:auto;

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    padding-top:140px;

}

.hero-content{

    flex:1;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

/* ==========================================
   UKRYCIE NAVBARU NA TELEFONIE
========================================== */
@media (max-width: 768px){

    header{
        display:none;
    }

    html{
        scroll-padding-top: 40px;
    }
}



/* ==========================================
   SOCIAL BAR
========================================== */

.social-bar{
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;

    display: flex;
    flex-direction: column;
    gap: 14px;

    padding: 14px 10px;

    background: rgba(17,17,17,.75);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.social-bar a{
    width: 42px;
    height: 42px;

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

    border-radius: 14px;

    color: #d6d6d6;

    transition: all .25s ease;
}

.social-bar a:hover{
    color: var(--accent);
    background: rgba(0,217,255,.08);
    transform: translateX(-4px) scale(1.05);
}

.social-bar svg{
    width: 22px;
    height: 22px;
}

/* Na telefonie mniejszy pasek */
@media (max-width: 768px){

    .social-bar{
        right: 10px;
        gap: 10px;
        padding: 10px 8px;
    }

    .social-bar a{
        width: 38px;
        height: 38px;
    }

    .social-bar svg{
        width: 20px;
        height: 20px;
    }
}


/* ==========================================
   SINGLE OFFER
========================================== */

.pricing-single{
    display:flex;
    justify-content:center;
}

.single-offer{
    max-width:560px;
    width:100%;
    text-align:center;
    position:relative;
}

.offer-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);

    padding:8px 16px;

    border-radius:999px;

    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    font-size:.85rem;
    font-weight:700;
}

.single-offer span{
    font-size:3rem;
    background:linear-gradient(135deg,#fff,var(--accent));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.offer-desc{
    color:var(--muted);
    margin-bottom:24px;
}

.single-offer ul{
    text-align:left;
    max-width:340px;
    margin:0 auto;
}

.single-offer li{
    position:relative;
    padding-left:26px;
}

.single-offer li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:700;
}