/* ============================================================
   DAY GAME / MASIR SABZ LANDING CSS
   Path:
   /wp-content/themes/amoozeshyar/landings/day-game/css/day-game.css
============================================================ */

:root{
    --dg-bg:#06110b;
    --dg-bg-2:#0a1710;
    --dg-surface:#101914;
    --dg-surface-2:#15231b;

    --dg-text:#ffffff;
    --dg-soft:rgba(255,255,255,.84);
    --dg-muted:rgba(255,255,255,.64);
    --dg-muted-2:rgba(255,255,255,.44);

    --dg-green:#17c85a;
    --dg-green-2:#28ef75;
    --dg-green-3:#79ffac;

    --dg-sky:#b8d7df;
    --dg-sky-deep:#79a8b7;

    --dg-yellow:#ffc84d;
    --dg-red:#e23333;

    --dg-border:rgba(255,255,255,.11);
    --dg-border-green:rgba(40,239,117,.34);

    --dg-shadow:0 42px 130px rgba(0,0,0,.50);
    --dg-shadow-soft:0 24px 72px rgba(0,0,0,.32);
    --dg-shadow-green:0 24px 70px rgba(23,200,90,.24);

    --dg-radius-sm:18px;
    --dg-radius-md:28px;
    --dg-radius-lg:42px;
    --dg-radius-xl:56px;

    --dg-container:1180px;
    --dg-ease:cubic-bezier(.2,.8,.2,1);
}

/* RESET */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    margin:0;
    padding:0;
    scroll-behavior:smooth;
    background:var(--dg-bg);
    overflow-x:hidden;
}

body.day-game-body{
    margin:0 !important;
    padding:0 !important;
    min-height:100svh;
    direction:rtl;
    overflow-x:hidden;
    background:var(--dg-bg) !important;
    color:var(--dg-text) !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body.day-game-body a{
    color:inherit;
    text-decoration:none;
}

body.day-game-body img{
    max-width:100%;
}

body.day-game-body button,
body.day-game-body input{
    font-family:inherit !important;
}

/* PAGE */

.dg-page{
    position:relative;
    min-height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 50% -5%, rgba(184,215,223,.22), transparent 34%),
        radial-gradient(circle at 12% 28%, rgba(40,239,117,.10), transparent 26%),
        radial-gradient(circle at 88% 72%, rgba(23,200,90,.10), transparent 30%),
        linear-gradient(180deg,#07110c 0%,#0b1711 42%,#06110b 100%);
}

.dg-sky-glow{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.34;
    background:
        radial-gradient(circle at 50% 0%, rgba(184,215,223,.42), transparent 32%),
        radial-gradient(circle at 50% 15%, rgba(121,168,183,.20), transparent 42%);
}

.dg-road-lines{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.10;
    background-image:
        linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px);
    background-size:54px 54px;
    mask-image:radial-gradient(circle at center, black 0 38%, transparent 80%);
    -webkit-mask-image:radial-gradient(circle at center, black 0 38%, transparent 80%);
}

.dg-container{
    width:min(var(--dg-container), calc(100% - 42px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* BUTTONS */

.dg-main-btn,
.dg-ghost-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:58px;
    padding:0 32px;
    border-radius:999px;
    font-size:15px;
    line-height:1.4;
    font-weight:950;
    cursor:pointer;
    transition:
        transform .25s var(--dg-ease),
        box-shadow .25s var(--dg-ease),
        background .25s var(--dg-ease),
        border-color .25s var(--dg-ease);
}

.dg-main-btn{
    color:#031006 !important;
    background:
        linear-gradient(180deg,var(--dg-green-3),var(--dg-green));
    border:1px solid rgba(255,255,255,.24);
    box-shadow:
        0 22px 56px rgba(23,200,90,.30),
        inset 0 1px 0 rgba(255,255,255,.44);
}

.dg-main-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 32px 78px rgba(23,200,90,.42),
        inset 0 1px 0 rgba(255,255,255,.52);
}

.dg-ghost-btn{
    color:#fff !important;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 18px 44px rgba(0,0,0,.22);
}

.dg-ghost-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.09);
    border-color:rgba(40,239,117,.34);
}

.dg-main-btn-big{
    width:100%;
    min-height:68px;
    font-size:16px;
}

/* PAYMENT */

.dg-payment-message{
    position:relative;
    z-index:30;
    width:min(760px, calc(100% - 32px));
    margin:28px auto 0;
    padding:32px 26px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.13);
    box-shadow:var(--dg-shadow-soft);
    text-align:center;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.dg-payment-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031006 !important;
    background:var(--dg-green-2);
    font-size:30px;
    font-weight:950;
}

.dg-payment-message h2{
    margin:0 0 10px;
    color:#fff !important;
    font-size:25px;
    line-height:1.6;
    font-weight:950;
}

.dg-payment-message p{
    margin:0;
    color:var(--dg-muted) !important;
    font-size:15px;
    line-height:2;
    font-weight:600;
}

.dg-payment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    margin-top:22px;
    padding:0 26px;
    border-radius:999px;
    color:#031006 !important;
    background:var(--dg-green-2);
    font-size:15px;
    font-weight:950;
}

/* HERO */

.dg-hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:90px 0 105px;
    overflow:hidden;
}

.dg-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}

.dg-hero-bg-image{
    position:absolute;
    inset:-34px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(18px) brightness(.58) saturate(1.05);
    transform:scale(1.08);
    opacity:.78;
}

.dg-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(circle at 52% 20%, rgba(40,239,117,.22), transparent 24%),
        linear-gradient(90deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.62) 56%, rgba(0,0,0,.86) 100%),
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.72) 100%);
}

.dg-hero-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.03fr .97fr;
    gap:54px;
    align-items:center;
}

.dg-hero-copy{
    position:relative;
    overflow:hidden;
    padding:48px 44px;
    border-radius:var(--dg-radius-xl);
    background:
        radial-gradient(circle at 22% 0%, rgba(40,239,117,.16), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.030));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--dg-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.dg-hero-copy::before{
    content:"";
    position:absolute;
    top:0;
    right:42px;
    left:42px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--dg-green-2), transparent);
    box-shadow:0 0 24px rgba(40,239,117,.72);
}

.dg-green-signal{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#d9ffe7 !important;
    background:rgba(23,200,90,.16);
    border:1px solid rgba(40,239,117,.34);
    font-size:12px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.2px;
}

.dg-green-signal span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--dg-green-2);
    box-shadow:0 0 18px rgba(40,239,117,.95);
    animation:dgPulse 1.7s ease-in-out infinite;
}

@keyframes dgPulse{
    0%,100%{opacity:1; transform:scale(1);}
    50%{opacity:.38; transform:scale(.72);}
}

.dg-hero h1{
    margin:0 0 24px;
    color:#fff !important;
    font-size:clamp(58px,8vw,112px);
    line-height:.95;
    letter-spacing:-4px;
    font-weight:950;
    text-shadow:
        0 0 42px rgba(23,200,90,.28),
        0 16px 44px rgba(0,0,0,.48);
}

.dg-hero h1::first-letter{
    color:var(--dg-green-2);
}

.dg-hero-lead{
    max-width:720px;
    margin:0;
    color:var(--dg-soft) !important;
    font-size:17px;
    line-height:2.18;
    font-weight:650;
}

.dg-hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.dg-hero-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:36px;
}

.dg-step-card{
    min-height:108px;
    padding:18px 14px;
    border-radius:24px;
    background:rgba(255,255,255,.052);
    border:1px solid rgba(255,255,255,.11);
    text-align:center;
}

.dg-step-card span{
    display:block;
    margin-bottom:8px;
    color:var(--dg-green-3) !important;
    font-size:24px;
    line-height:1;
    font-weight:950;
}

.dg-step-card strong{
    display:block;
    color:#fff !important;
    font-size:13.5px;
    line-height:1.8;
    font-weight:900;
}

.dg-hero-visual{
    position:relative;
}

.dg-traffic-card{
    position:relative;
    overflow:hidden;
    border-radius:46px;
    background:#07110c;
    border:1px solid rgba(255,255,255,.13);
    box-shadow:var(--dg-shadow);
}

.dg-traffic-card::before{
    content:"";
    position:absolute;
    inset:14px;
    z-index:2;
    pointer-events:none;
    border-radius:34px;
    border:1px solid rgba(40,239,117,.22);
}

.dg-traffic-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 61%, rgba(40,239,117,.22), transparent 17%),
        linear-gradient(180deg, transparent 48%, rgba(0,0,0,.38) 100%);
}

.dg-traffic-card img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.dg-go-panel{
    position:absolute;
    right:-20px;
    bottom:38px;
    width:min(340px,82%);
    padding:20px 22px;
    border-radius:26px;
    background:rgba(5,16,10,.70);
    border:1px solid rgba(255,255,255,.13);
    box-shadow:0 24px 70px rgba(0,0,0,.42);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.dg-go-panel span{
    display:block;
    margin-bottom:7px;
    color:var(--dg-green-3) !important;
    font-size:11px;
    font-weight:950;
    letter-spacing:1.2px;
}

.dg-go-panel strong{
    display:block;
    color:#fff !important;
    font-size:22px;
    line-height:1.5;
    font-weight:950;
}

.dg-go-panel p{
    margin:4px 0 0;
    color:var(--dg-muted) !important;
    font-size:13px;
    line-height:1.8;
    font-weight:600;
}

/* GENERAL */

.dg-section{
    position:relative;
    z-index:2;
    padding:112px 0;
}

.dg-section-head{
    text-align:center;
    margin-bottom:48px;
}

.dg-section-head-right{
    text-align:right;
    margin-bottom:28px;
}

.dg-section-head span,
.dg-street-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    padding:9px 16px;
    border-radius:999px;
    color:#d9ffe7 !important;
    background:rgba(23,200,90,.14);
    border:1px solid rgba(40,239,117,.30);
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.dg-section-head h2,
.dg-street-title h2{
    margin:0;
    color:#fff !important;
    font-size:clamp(34px,5vw,64px);
    line-height:1.22;
    letter-spacing:-1.8px;
    font-weight:950;
}

.dg-text-block p{
    margin:0 0 20px;
    color:var(--dg-muted) !important;
    font-size:16px;
    line-height:2.22;
    font-weight:600;
}

.dg-text-block p:last-child{
    margin-bottom:0;
}

/* PROBLEM */

.dg-problem-section{
    background:
        radial-gradient(circle at 78% 20%, rgba(40,239,117,.08), transparent 30%);
}

.dg-street-panel{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:52px;
    align-items:start;
    padding:42px;
    border-radius:var(--dg-radius-xl);
    background:
        radial-gradient(circle at 16% 0%, rgba(40,239,117,.13), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--dg-shadow-soft);
}

.dg-street-text{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.dg-street-text p{
    margin:0;
    color:var(--dg-soft) !important;
    font-size:16px;
    line-height:2.25;
    font-weight:600;
}

/* FIELD STRIP */

.dg-field-strip{
    position:relative;
    z-index:2;
    padding:34px 0;
}

.dg-field-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.dg-field-card{
    min-height:132px;
    padding:24px 20px;
    border-radius:28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(40,239,117,.13), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.070), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:0 20px 62px rgba(0,0,0,.24);
    text-align:center;
}

.dg-field-card span{
    display:block;
    color:var(--dg-green-3) !important;
    font-size:14px;
    line-height:1.6;
    font-weight:950;
    margin-bottom:8px;
}

.dg-field-card strong{
    display:block;
    color:#fff !important;
    font-size:20px;
    line-height:1.5;
    font-weight:950;
}

/* ROADMAP */

.dg-map-section{
    background:
        radial-gradient(circle at 20% 18%, rgba(40,239,117,.08), transparent 28%);
}

.dg-roadmap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.dg-road-item{
    position:relative;
    overflow:hidden;
    min-height:305px;
    padding:28px 24px;
    border-radius:34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(40,239,117,.10), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.074), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--dg-shadow-soft);
}

.dg-road-item::before{
    content:"";
    position:absolute;
    top:24px;
    bottom:24px;
    right:0;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--dg-green-2),var(--dg-green));
}

.dg-road-item::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-115px;
    width:230px;
    height:230px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(23,200,90,.16), transparent 68%);
}

.dg-road-wide{
    grid-column:span 2;
}

.dg-road-fear{
    border-color:rgba(255,200,77,.30);
    background:
        radial-gradient(circle at 50% 0%, rgba(255,200,77,.16), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.082), rgba(255,255,255,.028));
}

.dg-road-final{
    grid-column:span 2;
    border-color:rgba(40,239,117,.32);
    background:
        radial-gradient(circle at 50% 0%, rgba(40,239,117,.20), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.086), rgba(255,255,255,.030));
}

.dg-road-number{
    position:relative;
    z-index:2;
    color:rgba(40,239,117,.26) !important;
    font-size:58px;
    line-height:1;
    font-weight:950;
    letter-spacing:-3px;
    margin-bottom:18px;
}

.dg-road-item div:not(.dg-road-number){
    position:relative;
    z-index:2;
}

.dg-road-item span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--dg-green-3) !important;
    font-size:11px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.1px;
}

.dg-road-item h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.65;
    font-weight:950;
}

.dg-road-item p{
    margin:0;
    color:var(--dg-muted) !important;
    font-size:14px;
    line-height:2.02;
    font-weight:600;
}

/* ACTION */

.dg-action-panel{
    display:grid;
    grid-template-columns:1.04fr .96fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--dg-radius-xl);
    background:
        radial-gradient(circle at 22% 0%, rgba(40,239,117,.13), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--dg-shadow-soft);
}

.dg-action-signs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.dg-sign-card{
    min-height:150px;
    padding:24px 20px;
    border-radius:30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.068), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    text-align:center;
    box-shadow:0 18px 56px rgba(0,0,0,.22);
}

.dg-sign-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    padding:0 14px;
    margin-bottom:14px;
    border-radius:999px;
    color:#fff !important;
    background:rgba(226,51,51,.20);
    border:1px solid rgba(226,51,51,.32);
    font-size:12px;
    font-weight:950;
}

.dg-sign-card strong{
    display:block;
    color:#fff !important;
    font-size:19px;
    line-height:1.6;
    font-weight:950;
}

.dg-sign-green span{
    color:#031006 !important;
    background:var(--dg-green-2);
    border-color:rgba(255,255,255,.24);
}

/* GIFTS */

.dg-gift-panel{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--dg-radius-xl);
    background:
        radial-gradient(circle at 18% 0%, rgba(40,239,117,.13), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--dg-shadow-soft);
}

.dg-gift-visual{
    position:relative;
    overflow:hidden;
    border-radius:38px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--dg-shadow-soft);
}

.dg-gift-visual::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 61%, rgba(40,239,117,.24), transparent 18%),
        linear-gradient(180deg, transparent 56%, rgba(0,0,0,.42) 100%);
}

.dg-gift-visual img{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.dg-gift-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.dg-gift-item{
    display:grid;
    grid-template-columns:50px 1fr;
    gap:14px;
    align-items:center;
    min-height:76px;
    padding:14px 16px;
    border-radius:24px;
    background:rgba(255,255,255,.052);
    border:1px solid rgba(255,255,255,.11);
}

.dg-gift-item span{
    width:50px;
    height:50px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031006 !important;
    background:var(--dg-green-2);
    font-size:13px;
    font-weight:950;
}

.dg-gift-item p{
    margin:0;
    color:var(--dg-soft) !important;
    font-size:14.5px;
    line-height:1.95;
    font-weight:700;
}

/* FAQ */

.dg-faq-list{
    width:min(920px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.dg-faq-item{
    padding:28px 30px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.070), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:0 18px 54px rgba(0,0,0,.22);
}

.dg-faq-item h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.7;
    font-weight:950;
}

.dg-faq-item p{
    margin:0;
    color:var(--dg-muted) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:600;
}

/* PRICING */

.dg-pricing-section{
    padding-bottom:150px;
    background:
        radial-gradient(circle at 50% 20%, rgba(40,239,117,.16), transparent 32%);
}

.dg-pricing-card{
    position:relative;
    overflow:hidden;
    width:min(900px,100%);
    margin:0 auto;
    padding:56px 48px 50px;
    border-radius:var(--dg-radius-xl);
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%, rgba(40,239,117,.22), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.090), rgba(255,255,255,.032));
    border:1px solid rgba(40,239,117,.30);
    box-shadow:var(--dg-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.dg-pricing-card::before{
    content:"";
    position:absolute;
    inset:auto -20% -42% -20%;
    height:360px;
    pointer-events:none;
    background:radial-gradient(circle, rgba(23,200,90,.30), transparent 72%);
}

.dg-pricing-card > *{
    position:relative;
    z-index:2;
}

.dg-pricing-kicker{
    display:inline-flex;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#d9ffe7 !important;
    background:rgba(23,200,90,.16);
    border:1px solid rgba(40,239,117,.34);
    font-size:13px;
    font-weight:950;
}

.dg-pricing-card h2{
    margin:0 0 18px;
    color:#fff !important;
    font-size:clamp(40px,6vw,76px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:950;
}

.dg-pricing-text{
    max-width:680px;
    margin:0 auto;
    color:var(--dg-soft) !important;
    font-size:16px;
    line-height:2.1;
    font-weight:650;
}

.dg-price-wrap{
    margin:40px 0 30px;
}

.dg-old-price{
    display:inline-block;
    margin-bottom:12px;
    color:rgba(255,255,255,.44) !important;
    font-size:34px;
    line-height:1.2;
    font-weight:950;
    text-decoration:line-through;
    text-decoration-thickness:3px;
    text-decoration-color:rgba(40,239,117,.72);
}

.dg-new-price{
    display:block;
    color:#fff !important;
    font-size:clamp(50px,7vw,84px);
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
    text-shadow:
        0 0 42px rgba(23,200,90,.34),
        0 14px 34px rgba(0,0,0,.34);
}

.dg-price-empty{
    font-size:30px;
    line-height:1.6;
}

.dg-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:34px 0;
}

.dg-benefit{
    display:flex;
    align-items:flex-start;
    gap:12px;
    min-height:78px;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,.052);
    border:1px solid rgba(255,255,255,.11);
    text-align:right;
}

.dg-benefit span{
    width:30px;
    height:30px;
    min-width:30px;
    margin-top:4px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031006 !important;
    background:var(--dg-green-2);
    font-size:15px;
    font-weight:950;
}

.dg-benefit p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

/* FORM */

.dg-signup-form{
    margin-top:28px;
}

.dg-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}

.dg-form-field{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.dg-form-field span{
    color:var(--dg-soft) !important;
    font-size:14px;
    font-weight:800;
}

.dg-form-field input{
    width:100%;
    height:62px;
    padding:0 18px;
    border-radius:18px;
    outline:none;
    color:#fff !important;
    background:rgba(0,0,0,.24);
    border:1px solid rgba(255,255,255,.11);
    font-size:15px;
    font-weight:700;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

.dg-form-field input::placeholder{
    color:rgba(255,255,255,.34);
}

.dg-form-field input:focus{
    border-color:rgba(40,239,117,.48);
    box-shadow:
        0 0 0 4px rgba(23,200,90,.14),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.dg-form-field input[name="phone"]{
    direction:rtl;
    text-align:right;
}

/* HOVER */

.dg-step-card,
.dg-field-card,
.dg-road-item,
.dg-sign-card,
.dg-gift-item,
.dg-faq-item,
.dg-benefit{
    transition:
        transform .24s var(--dg-ease),
        box-shadow .24s var(--dg-ease),
        border-color .24s var(--dg-ease),
        background .24s var(--dg-ease);
}

@media (hover:hover){
    .dg-step-card:hover,
    .dg-field-card:hover,
    .dg-road-item:hover,
    .dg-sign-card:hover,
    .dg-gift-item:hover,
    .dg-faq-item:hover,
    .dg-benefit:hover{
        transform:translateY(-5px);
        border-color:rgba(40,239,117,.30);
        box-shadow:0 28px 82px rgba(0,0,0,.34);
        background:linear-gradient(180deg, rgba(255,255,255,.088), rgba(255,255,255,.034));
    }
}

/* RESPONSIVE */

@media (max-width:1180px){
    .dg-roadmap{
        grid-template-columns:repeat(2,1fr);
    }

    .dg-field-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:980px){
    .dg-hero-layout,
    .dg-street-panel,
    .dg-action-panel,
    .dg-gift-panel{
        grid-template-columns:1fr;
    }

    .dg-section-head-right{
        text-align:center;
    }

    .dg-hero-copy,
    .dg-street-title{
        text-align:center;
    }

    .dg-hero-actions{
        justify-content:center;
    }

    .dg-hero-visual,
    .dg-gift-visual{
        max-width:620px;
        margin:0 auto;
    }
}

@media (max-width:768px){

    .dg-container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .dg-hero{
        min-height:auto;
        padding:62px 0 76px;
    }

    .dg-hero-bg-image{
        filter:blur(14px) brightness(.46) saturate(1.05);
        opacity:.74;
    }

    .dg-hero::before{
        background:
            linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.82) 100%),
            radial-gradient(circle at 50% 14%, rgba(40,239,117,.24), transparent 32%);
    }

    .dg-hero-layout{
        gap:28px;
    }

    .dg-hero-copy{
        padding:32px 20px 28px;
        border-radius:34px;
    }

    .dg-green-signal{
        font-size:11px;
    }

    .dg-hero h1{
        font-size:clamp(50px,16vw,74px);
        line-height:1.02;
        letter-spacing:-2px;
    }

    .dg-hero-lead{
        font-size:14.5px;
        line-height:2.05;
    }

    .dg-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .dg-main-btn,
    .dg-ghost-btn{
        width:100%;
        min-height:56px;
    }

    .dg-hero-steps{
        grid-template-columns:1fr;
        gap:10px;
    }

    .dg-step-card{
        min-height:auto;
        padding:14px 16px;
    }

    .dg-traffic-card{
        border-radius:34px;
    }

    .dg-go-panel{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
    }

    .dg-section{
        padding:76px 0;
    }

    .dg-section-head{
        margin-bottom:32px;
    }

    .dg-section-head h2,
    .dg-street-title h2{
        font-size:31px;
        line-height:1.34;
        letter-spacing:-.8px;
    }

    .dg-street-panel,
    .dg-action-panel,
    .dg-gift-panel,
    .dg-pricing-card{
        padding:20px;
        border-radius:32px;
    }

    .dg-street-text p,
    .dg-text-block p{
        font-size:14px;
        line-height:2.05;
        text-align:center;
    }

    .dg-field-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .dg-field-card{
        min-height:auto;
        padding:20px 18px;
        border-radius:24px;
    }

    .dg-roadmap{
        grid-template-columns:1fr;
        gap:14px;
    }

    .dg-road-wide,
    .dg-road-final{
        grid-column:auto;
    }

    .dg-road-item{
        min-height:auto;
        padding:24px 20px;
        border-radius:28px;
    }

    .dg-road-number{
        font-size:44px;
        margin-bottom:12px;
    }

    .dg-road-item h3{
        font-size:19px;
    }

    .dg-road-item p{
        font-size:13.5px;
        line-height:1.95;
    }

    .dg-action-signs{
        grid-template-columns:1fr;
    }

    .dg-sign-card{
        min-height:auto;
        padding:20px 18px;
        border-radius:24px;
    }

    .dg-gift-visual{
        border-radius:28px;
    }

    .dg-gift-list{
        gap:12px;
    }

    .dg-gift-item{
        grid-template-columns:46px 1fr;
        padding:13px;
        border-radius:22px;
    }

    .dg-gift-item span{
        width:46px;
        height:46px;
        border-radius:16px;
    }

    .dg-gift-item p{
        font-size:13.5px;
    }

    .dg-faq-item{
        padding:22px 20px;
        border-radius:24px;
    }

    .dg-faq-item h3{
        font-size:18px;
    }

    .dg-faq-item p{
        font-size:14px;
    }

    .dg-pricing-section{
        padding-bottom:92px;
    }

    .dg-pricing-card h2{
        font-size:36px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .dg-pricing-text{
        font-size:14px;
        line-height:2;
    }

    .dg-old-price{
        font-size:26px;
    }

    .dg-new-price{
        font-size:44px;
        letter-spacing:-1px;
    }

    .dg-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }

    .dg-form-grid{
        grid-template-columns:1fr;
    }

    .dg-form-field input{
        height:58px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .dg-container{
        padding-left:12px;
        padding-right:12px;
    }

    .dg-hero-copy{
        padding:28px 16px 24px;
        border-radius:28px;
    }

    .dg-hero h1{
        font-size:48px;
    }

    .dg-section-head h2,
    .dg-street-title h2{
        font-size:29px;
    }

    .dg-street-panel,
    .dg-action-panel,
    .dg-gift-panel,
    .dg-pricing-card{
        padding-left:16px;
        padding-right:16px;
    }
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
}





/* =========================
   FOOTER
   ========================= */

.pb-footer {
  position: relative;
  z-index: 2;

  padding: 38px 20px;

  border-top: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.03)
    );
}

.pb-footer-inner {
  max-width: 1180px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}

.pb-footer p {
  margin: 0;

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.9;
}

.pb-footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pb-footer-links a {
  color: #dbe5ee;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}

.pb-footer-links a:hover {
  color: var(--accent);
}

/* MOBILE */

@media (max-width: 768px) {

  .pb-footer-inner {
    flex-direction: column;

    text-align: center;
  }

  .pb-footer-links {
    gap: 18px;
  }

}
