/* ============================================================
   HUNTING SEASON LANDING CSS
   Path:
   /wp-content/themes/amoozeshyar/landings/hunting-season/css/hunting-season.css
============================================================ */

:root{
    --hs-bg:#021a15;
    --hs-bg-2:#03221b;
    --hs-surface:#072a22;
    --hs-surface-2:#0b372c;

    --hs-text:#ffffff;
    --hs-soft:rgba(255,255,255,.84);
    --hs-muted:rgba(255,255,255,.62);
    --hs-muted-2:rgba(255,255,255,.42);

    --hs-green:#00c878;
    --hs-green-2:#20f49a;
    --hs-green-3:#86ffc9;

    --hs-cream:#f2dfae;
    --hs-cream-2:#fff1c9;
    --hs-chalk:#f4f4ea;

    --hs-border:rgba(255,255,255,.11);
    --hs-border-green:rgba(32,244,154,.34);
    --hs-border-cream:rgba(242,223,174,.30);

    --hs-shadow:0 42px 130px rgba(0,0,0,.52);
    --hs-shadow-soft:0 24px 72px rgba(0,0,0,.32);
    --hs-shadow-green:0 26px 90px rgba(0,200,120,.22);

    --hs-radius-sm:18px;
    --hs-radius-md:28px;
    --hs-radius-lg:42px;
    --hs-radius-xl:56px;

    --hs-container:1180px;
    --hs-ease:cubic-bezier(.2,.8,.2,1);
}

/* RESET */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    margin:0;
    padding:0;
    scroll-behavior:smooth;
    background:var(--hs-bg);
    overflow-x:hidden;
}

body.hunting-season-body{
    margin:0 !important;
    padding:0 !important;
    min-height:100svh;
    direction:rtl;
    overflow-x:hidden;
    background:var(--hs-bg) !important;
    color:var(--hs-text) !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body.hunting-season-body a{
    color:inherit;
    text-decoration:none;
}

body.hunting-season-body img{
    max-width:100%;
}

body.hunting-season-body button,
body.hunting-season-body input{
    font-family:inherit !important;
}

/* PAGE */

.hs-page{
    position:relative;
    min-height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 50% -5%, rgba(32,244,154,.18), transparent 34%),
        radial-gradient(circle at 15% 28%, rgba(242,223,174,.10), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(0,200,120,.13), transparent 30%),
        linear-gradient(180deg,#021a15 0%,#03221b 46%,#021a15 100%);
}

.hs-chalk-field{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.18;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.13) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,.10) 0 1px, transparent 1px);
    background-size:9px 9px, 15px 15px;
    mix-blend-mode:screen;
}

.hs-trail-lines{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.09;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size:56px 56px;
    mask-image:radial-gradient(circle at center, black 0 38%, transparent 82%);
    -webkit-mask-image:radial-gradient(circle at center, black 0 38%, transparent 82%);
}

.hs-container{
    width:min(var(--hs-container), calc(100% - 42px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* BUTTONS */

.hs-main-btn,
.hs-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(--hs-ease),
        box-shadow .25s var(--hs-ease),
        background .25s var(--hs-ease),
        border-color .25s var(--hs-ease);
}

.hs-main-btn{
    color:#031b13 !important;
    background:
        linear-gradient(180deg,var(--hs-green-3),var(--hs-green));
    border:1px solid rgba(255,255,255,.24);
    box-shadow:
        0 22px 56px rgba(0,200,120,.30),
        inset 0 1px 0 rgba(255,255,255,.44);
}

.hs-main-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 32px 82px rgba(0,200,120,.42),
        inset 0 1px 0 rgba(255,255,255,.52);
}

.hs-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);
}

.hs-ghost-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.09);
    border-color:rgba(32,244,154,.34);
}

.hs-main-btn-big{
    width:100%;
    min-height:68px;
    font-size:16px;
}

/* PAYMENT */

.hs-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(--hs-shadow-soft);
    text-align:center;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.hs-payment-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031b13 !important;
    background:var(--hs-green-2);
    font-size:30px;
    font-weight:950;
}

.hs-payment-message h2{
    margin:0 0 10px;
    color:#fff !important;
    font-size:25px;
    line-height:1.6;
    font-weight:950;
}

.hs-payment-message p{
    margin:0;
    color:var(--hs-muted) !important;
    font-size:15px;
    line-height:2;
    font-weight:600;
}

.hs-payment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    margin-top:22px;
    padding:0 26px;
    border-radius:999px;
    color:#031b13 !important;
    background:var(--hs-green-2);
    font-size:15px;
    font-weight:950;
}

/* HERO */

.hs-hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:90px 0 105px;
    overflow:hidden;
}

.hs-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}

.hs-hero-bg-image{
    position:absolute;
    inset:-34px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(17px) brightness(.44) saturate(1.05);
    transform:scale(1.08);
    opacity:.84;
}

.hs-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 26%, rgba(32,244,154,.18), transparent 25%),
        linear-gradient(90deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.64) 58%, rgba(0,0,0,.86) 100%),
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.78) 100%);
}

.hs-hero-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.03fr .97fr;
    gap:54px;
    align-items:center;
}

.hs-hero-copy{
    position:relative;
    overflow:hidden;
    padding:50px 44px;
    border-radius:var(--hs-radius-xl);
    background:
        radial-gradient(circle at 18% 0%, rgba(32,244,154,.15), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.080), rgba(255,255,255,.028));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--hs-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.hs-hero-copy::before{
    content:"";
    position:absolute;
    top:0;
    right:42px;
    left:42px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--hs-green-2), transparent);
    box-shadow:0 0 24px rgba(32,244,154,.70);
}

.hs-hunt-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#caffea !important;
    background:rgba(0,200,120,.16);
    border:1px solid rgba(32,244,154,.32);
    font-size:12px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.2px;
}

.hs-hunt-pill span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--hs-green-2);
    box-shadow:0 0 16px rgba(32,244,154,.9);
    animation:hsPulse 1.7s ease-in-out infinite;
}

@keyframes hsPulse{
    0%,100%{opacity:1; transform:scale(1);}
    50%{opacity:.38; transform:scale(.72);}
}

.hs-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(0,200,120,.26),
        0 16px 44px rgba(0,0,0,.48);
}

.hs-hero h1::first-letter{
    color:var(--hs-green-2);
}

.hs-hero-lead{
    max-width:720px;
    margin:0;
    color:var(--hs-soft) !important;
    font-size:17px;
    line-height:2.18;
    font-weight:650;
}

.hs-hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.hs-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:36px;
}

.hs-stat-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;
}

.hs-stat-card span{
    display:block;
    margin-bottom:8px;
    color:var(--hs-green-3) !important;
    font-size:28px;
    line-height:1;
    font-weight:950;
}

.hs-stat-card strong{
    display:block;
    color:#fff !important;
    font-size:13.5px;
    line-height:1.8;
    font-weight:900;
}

/* HERO VISUAL */

.hs-hero-visual{
    position:relative;
}

.hs-poster-card{
    position:relative;
    overflow:hidden;
    border-radius:46px;
    background:#03221b;
    border:1px solid rgba(255,255,255,.13);
    box-shadow:var(--hs-shadow);
}

.hs-poster-card::before{
    content:"";
    position:absolute;
    inset:14px;
    z-index:2;
    pointer-events:none;
    border-radius:34px;
    border:1px solid rgba(32,244,154,.22);
}

.hs-poster-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        radial-gradient(circle at 55% 66%, rgba(32,244,154,.18), transparent 18%),
        linear-gradient(180deg, transparent 54%, rgba(0,0,0,.40) 100%);
}

.hs-poster-card img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.hs-tracker-panel{
    position:absolute;
    right:-20px;
    bottom:38px;
    width:min(350px,84%);
    padding:20px 22px;
    border-radius:26px;
    background:rgba(2,22,17,.72);
    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);
}

.hs-tracker-panel span{
    display:block;
    margin-bottom:7px;
    color:var(--hs-green-3) !important;
    font-size:11px;
    font-weight:950;
    letter-spacing:1.2px;
}

.hs-tracker-panel strong{
    display:block;
    color:#fff !important;
    font-size:22px;
    line-height:1.5;
    font-weight:950;
}

.hs-tracker-panel p{
    margin:4px 0 0;
    color:var(--hs-muted) !important;
    font-size:13px;
    line-height:1.8;
    font-weight:600;
}

/* GENERAL */

.hs-section{
    position:relative;
    z-index:2;
    padding:112px 0;
}

.hs-section-head{
    text-align:center;
    margin-bottom:48px;
}

.hs-section-head-right{
    text-align:right;
    margin-bottom:28px;
}

.hs-section-head span,
.hs-hunter-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    padding:9px 16px;
    border-radius:999px;
    color:#caffea !important;
    background:rgba(0,200,120,.14);
    border:1px solid rgba(32,244,154,.30);
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.hs-section-head h2,
.hs-hunter-title h2{
    margin:0;
    color:#fff !important;
    font-size:clamp(34px,5vw,64px);
    line-height:1.22;
    letter-spacing:-1.8px;
    font-weight:950;
}

.hs-text-block p{
    margin:0 0 20px;
    color:var(--hs-muted) !important;
    font-size:16px;
    line-height:2.22;
    font-weight:600;
}

.hs-text-block p:last-child{
    margin-bottom:0;
}

/* INTRO */

.hs-hunter-panel{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:52px;
    align-items:start;
    padding:42px;
    border-radius:var(--hs-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(32,244,154,.12), 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(--hs-shadow-soft);
}

.hs-hunter-text{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.hs-hunter-text p{
    margin:0;
    color:var(--hs-soft) !important;
    font-size:16px;
    line-height:2.25;
    font-weight:600;
}

/* CHAPTERS */

.hs-chapter-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.hs-chapter-card{
    position:relative;
    overflow:hidden;
    min-height:360px;
    padding:30px 26px;
    border-radius:36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(32,244,154,.11), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.076), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--hs-shadow-soft);
}

.hs-chapter-card::before{
    content:"";
    position:absolute;
    right:0;
    top:24px;
    bottom:24px;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--hs-green-2),var(--hs-green));
}

.hs-chapter-card::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-115px;
    width:230px;
    height:230px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(0,200,120,.16), transparent 68%);
}

.hs-chapter-women{
    border-color:rgba(242,223,174,.20);
}

.hs-chapter-crisis{
    border-color:rgba(32,244,154,.26);
}

.hs-chapter-men{
    border-color:rgba(255,255,255,.13);
}

.hs-chapter-index{
    position:relative;
    z-index:2;
    color:rgba(32,244,154,.24) !important;
    font-size:60px;
    line-height:1;
    font-weight:950;
    letter-spacing:-3px;
    margin-bottom:18px;
}

.hs-chapter-card span{
    position:relative;
    z-index:2;
    display:inline-flex;
    margin-bottom:12px;
    color:var(--hs-green-3) !important;
    font-size:11px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.1px;
}

.hs-chapter-card h3{
    position:relative;
    z-index:2;
    margin:0 0 12px;
    color:#fff !important;
    font-size:23px;
    line-height:1.6;
    font-weight:950;
}

.hs-chapter-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:var(--hs-muted) !important;
    font-size:14.5px;
    line-height:2.05;
    font-weight:600;
}

/* CRISIS */

.hs-crisis-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:24px;
}

.hs-crisis-card{
    min-height:230px;
    padding:28px 24px;
    border-radius:32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(242,223,174,.10), 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:var(--hs-shadow-soft);
}

.hs-crisis-card span{
    display:block;
    color:rgba(242,223,174,.46) !important;
    font-size:42px;
    line-height:1;
    font-weight:950;
    margin-bottom:16px;
}

.hs-crisis-card h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:22px;
    line-height:1.6;
    font-weight:950;
}

.hs-crisis-card p{
    margin:0;
    color:var(--hs-muted) !important;
    font-size:14px;
    line-height:2;
    font-weight:600;
}

.hs-type-strip{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    padding:22px;
    border-radius:28px;
    background:rgba(255,255,255,.052);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 58px rgba(0,0,0,.22);
}

.hs-type-strip span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 18px;
    border-radius:999px;
    color:#031b13 !important;
    background:var(--hs-cream);
    font-size:13px;
    font-weight:950;
}

/* MEN */

.hs-men-panel{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--hs-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(32,244,154,.12), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--hs-shadow-soft);
}

.hs-men-board{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.hs-men-card{
    min-height:150px;
    padding:24px 20px;
    border-radius:30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), 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;
}

.hs-men-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(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    font-size:12px;
    font-weight:950;
}

.hs-men-card strong{
    display:block;
    color:#fff !important;
    font-size:19px;
    line-height:1.6;
    font-weight:950;
}

.hs-men-green span{
    color:#031b13 !important;
    background:var(--hs-green-2);
    border-color:rgba(255,255,255,.20);
}

/* USE CASE */

.hs-use-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.hs-use-card{
    min-height:230px;
    padding:26px 22px;
    border-radius:32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(32,244,154,.10), 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:var(--hs-shadow-soft);
}

.hs-use-card span{
    width:38px;
    height:38px;
    margin-bottom:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031b13 !important;
    background:var(--hs-green-2);
    font-size:16px;
    font-weight:950;
}

.hs-use-card p{
    margin:0;
    color:#fff !important;
    font-size:15px;
    line-height:2.05;
    font-weight:700;
}

/* FILTER */

.hs-filter-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.hs-filter-card{
    min-height:470px;
    padding:38px 34px;
    border-radius:var(--hs-radius-xl);
    background:
        linear-gradient(180deg, rgba(255,255,255,.076), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--hs-shadow-soft);
}

.hs-filter-for{
    border-color:rgba(32,244,154,.26);
    background:
        radial-gradient(circle at 50% 0%, rgba(32,244,154,.16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.080), rgba(255,255,255,.028));
}

.hs-filter-not{
    border-color:rgba(242,223,174,.22);
    background:
        radial-gradient(circle at 50% 0%, rgba(242,223,174,.12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.076), rgba(255,255,255,.026));
}

.hs-filter-card span{
    display:inline-flex;
    margin-bottom:16px;
    padding:9px 16px;
    border-radius:999px;
    color:#caffea !important;
    background:rgba(0,200,120,.14);
    border:1px solid rgba(32,244,154,.28);
    font-size:12px;
    font-weight:950;
}

.hs-filter-not span{
    color:#fff1c9 !important;
    background:rgba(242,223,174,.10);
    border-color:rgba(242,223,174,.24);
}

.hs-filter-card h2{
    margin:0 0 24px;
    color:#fff !important;
    font-size:34px;
    line-height:1.35;
    font-weight:950;
}

.hs-filter-card ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hs-filter-card li{
    position:relative;
    padding-right:28px;
    color:var(--hs-soft) !important;
    font-size:15px;
    line-height:2;
    font-weight:650;
}

.hs-filter-card li::before{
    content:"";
    position:absolute;
    right:0;
    top:14px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--hs-green-2);
    box-shadow:0 0 16px rgba(32,244,154,.45);
}

.hs-filter-not li::before{
    background:var(--hs-cream);
    box-shadow:0 0 16px rgba(242,223,174,.35);
}

/* BENEFITS */

.hs-benefit-panel{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--hs-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(32,244,154,.12), 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(--hs-shadow-soft);
}

.hs-benefit-visual{
    position:relative;
    overflow:hidden;
    border-radius:38px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--hs-shadow-soft);
}

.hs-benefit-visual::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 65%, rgba(32,244,154,.22), transparent 18%),
        linear-gradient(180deg, transparent 56%, rgba(0,0,0,.42) 100%);
}

.hs-benefit-visual img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.hs-benefit-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hs-benefit-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);
}

.hs-benefit-item span{
    width:50px;
    height:50px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031b13 !important;
    background:var(--hs-green-2);
    font-size:13px;
    font-weight:950;
}

.hs-benefit-item p{
    margin:0;
    color:var(--hs-soft) !important;
    font-size:14.5px;
    line-height:1.95;
    font-weight:700;
}

/* FAQ */

.hs-faq-list{
    width:min(920px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.hs-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);
}

.hs-faq-item h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.7;
    font-weight:950;
}

.hs-faq-item p{
    margin:0;
    color:var(--hs-muted) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:600;
}

/* PRICING */

.hs-pricing-section{
    padding-bottom:150px;
    background:
        radial-gradient(circle at 50% 20%, rgba(32,244,154,.14), transparent 32%);
}

.hs-pricing-card{
    position:relative;
    overflow:hidden;
    width:min(900px,100%);
    margin:0 auto;
    padding:56px 48px 50px;
    border-radius:var(--hs-radius-xl);
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%, rgba(32,244,154,.20), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.090), rgba(255,255,255,.032));
    border:1px solid rgba(32,244,154,.30);
    box-shadow:var(--hs-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.hs-pricing-card::before{
    content:"";
    position:absolute;
    inset:auto -20% -42% -20%;
    height:360px;
    pointer-events:none;
    background:radial-gradient(circle, rgba(0,200,120,.30), transparent 72%);
}

.hs-pricing-card > *{
    position:relative;
    z-index:2;
}

.hs-pricing-kicker{
    display:inline-flex;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#caffea !important;
    background:rgba(0,200,120,.16);
    border:1px solid rgba(32,244,154,.34);
    font-size:13px;
    font-weight:950;
}

.hs-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;
}

.hs-pricing-text{
    max-width:680px;
    margin:0 auto;
    color:var(--hs-soft) !important;
    font-size:16px;
    line-height:2.1;
    font-weight:650;
}

.hs-price-wrap{
    margin:40px 0 30px;
}

.hs-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(32,244,154,.72);
}

.hs-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(0,200,120,.34),
        0 14px 34px rgba(0,0,0,.34);
}

.hs-price-empty{
    font-size:30px;
    line-height:1.6;
}

.hs-pricing-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:34px 0;
}

.hs-pricing-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;
}

.hs-pricing-benefit span{
    width:30px;
    height:30px;
    min-width:30px;
    margin-top:4px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#031b13 !important;
    background:var(--hs-green-2);
    font-size:15px;
    font-weight:950;
}

.hs-pricing-benefit p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

/* FORM */

.hs-signup-form{
    margin-top:28px;
}

.hs-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}

.hs-form-field{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.hs-form-field span{
    color:var(--hs-soft) !important;
    font-size:14px;
    font-weight:800;
}

.hs-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;
}

.hs-form-field input::placeholder{
    color:rgba(255,255,255,.34);
}

.hs-form-field input:focus{
    border-color:rgba(32,244,154,.48);
    box-shadow:
        0 0 0 4px rgba(0,200,120,.14),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.hs-form-field input[name="phone"]{
    direction:rtl;
    text-align:right;
}

/* HOVER */

.hs-stat-card,
.hs-chapter-card,
.hs-crisis-card,
.hs-men-card,
.hs-use-card,
.hs-filter-card,
.hs-benefit-item,
.hs-faq-item,
.hs-pricing-benefit{
    transition:
        transform .24s var(--hs-ease),
        box-shadow .24s var(--hs-ease),
        border-color .24s var(--hs-ease),
        background .24s var(--hs-ease);
}

@media (hover:hover){
    .hs-stat-card:hover,
    .hs-chapter-card:hover,
    .hs-crisis-card:hover,
    .hs-men-card:hover,
    .hs-use-card:hover,
    .hs-filter-card:hover,
    .hs-benefit-item:hover,
    .hs-faq-item:hover,
    .hs-pricing-benefit:hover{
        transform:translateY(-5px);
        border-color:rgba(32,244,154,.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){
    .hs-use-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hs-chapter-grid,
    .hs-crisis-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:980px){
    .hs-hero-layout,
    .hs-hunter-panel,
    .hs-men-panel,
    .hs-benefit-panel{
        grid-template-columns:1fr;
    }

    .hs-section-head-right{
        text-align:center;
    }

    .hs-hero-copy,
    .hs-hunter-title{
        text-align:center;
    }

    .hs-hero-actions{
        justify-content:center;
    }

    .hs-hero-visual,
    .hs-benefit-visual{
        max-width:620px;
        margin:0 auto;
    }

    .hs-filter-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .hs-container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .hs-hero{
        min-height:auto;
        padding:62px 0 76px;
    }

    .hs-hero-bg-image{
        filter:blur(14px) brightness(.40) saturate(1.05);
        opacity:.76;
    }

    .hs-hero::before{
        background:
            linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.82) 100%),
            radial-gradient(circle at 50% 14%, rgba(32,244,154,.22), transparent 32%);
    }

    .hs-hero-layout{
        gap:28px;
    }

    .hs-hero-copy{
        padding:32px 20px 28px;
        border-radius:34px;
    }

    .hs-hunt-pill{
        font-size:11px;
    }

    .hs-hero h1{
        font-size:clamp(50px,15vw,74px);
        line-height:1.02;
        letter-spacing:-2px;
    }

    .hs-hero-lead{
        font-size:14.5px;
        line-height:2.05;
    }

    .hs-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .hs-main-btn,
    .hs-ghost-btn{
        width:100%;
        min-height:56px;
    }

    .hs-hero-stats{
        grid-template-columns:1fr;
        gap:10px;
    }

    .hs-stat-card{
        min-height:auto;
        padding:14px 16px;
    }

    .hs-poster-card{
        border-radius:34px;
    }

    .hs-tracker-panel{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
    }

    .hs-section{
        padding:76px 0;
    }

    .hs-section-head{
        margin-bottom:32px;
    }

    .hs-section-head h2,
    .hs-hunter-title h2{
        font-size:31px;
        line-height:1.34;
        letter-spacing:-.8px;
    }

    .hs-hunter-panel,
    .hs-men-panel,
    .hs-benefit-panel,
    .hs-pricing-card{
        padding:20px;
        border-radius:32px;
    }

    .hs-hunter-text p,
    .hs-text-block p{
        font-size:14px;
        line-height:2.05;
        text-align:center;
    }

    .hs-chapter-card,
    .hs-crisis-card,
    .hs-use-card,
    .hs-filter-card{
        min-height:auto;
        padding:24px 20px;
        border-radius:28px;
    }

    .hs-chapter-index{
        font-size:44px;
        margin-bottom:12px;
    }

    .hs-chapter-card h3,
    .hs-crisis-card h3{
        font-size:19px;
    }

    .hs-chapter-card p,
    .hs-crisis-card p{
        font-size:13.5px;
        line-height:1.95;
    }

    .hs-type-strip{
        justify-content:flex-start;
        padding:16px;
    }

    .hs-type-strip span{
        font-size:12px;
        min-height:36px;
        padding:0 14px;
    }

    .hs-men-board{
        grid-template-columns:1fr;
    }

    .hs-men-card{
        min-height:auto;
        padding:20px 18px;
        border-radius:24px;
    }

    .hs-use-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .hs-filter-card h2{
        font-size:28px;
    }

    .hs-filter-card li{
        font-size:14px;
    }

    .hs-benefit-visual{
        border-radius:28px;
    }

    .hs-benefit-list{
        gap:12px;
    }

    .hs-benefit-item{
        grid-template-columns:46px 1fr;
        padding:13px;
        border-radius:22px;
    }

    .hs-benefit-item span{
        width:46px;
        height:46px;
        border-radius:16px;
    }

    .hs-benefit-item p{
        font-size:13.5px;
    }

    .hs-faq-item{
        padding:22px 20px;
        border-radius:24px;
    }

    .hs-faq-item h3{
        font-size:18px;
    }

    .hs-faq-item p{
        font-size:14px;
    }

    .hs-pricing-section{
        padding-bottom:92px;
    }

    .hs-pricing-card h2{
        font-size:36px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .hs-pricing-text{
        font-size:14px;
        line-height:2;
    }

    .hs-old-price{
        font-size:26px;
    }

    .hs-new-price{
        font-size:44px;
        letter-spacing:-1px;
    }

    .hs-pricing-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }

    .hs-form-grid{
        grid-template-columns:1fr;
    }

    .hs-form-field input{
        height:58px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .hs-container{
        padding-left:12px;
        padding-right:12px;
    }

    .hs-hero-copy{
        padding:28px 16px 24px;
        border-radius:28px;
    }

    .hs-hero h1{
        font-size:46px;
    }

    .hs-section-head h2,
    .hs-hunter-title h2{
        font-size:29px;
    }

    .hs-hunter-panel,
    .hs-men-panel,
    .hs-benefit-panel,
    .hs-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;
  }

}
