/* ============================================================
   PANDORA DICTIONARY LANDING CSS - WARM POSTER TONE
============================================================ */

:root{
    --pd-bg:#080705;
    --pd-bg-2:#15110c;

    --pd-surface:#17120c;
    --pd-surface-2:#21180f;

    --pd-text:#ffffff;
    --pd-soft:rgba(255,255,255,.84);
    --pd-muted:rgba(255,255,255,.62);

    --pd-green:#a8792d;
    --pd-green-2:#d6aa62;
    --pd-green-3:#f2d7a4;

    --pd-gold:#b88435;
    --pd-gold-2:#ead0a1;

    --pd-border:rgba(255,255,255,.11);

    --pd-shadow:0 42px 130px rgba(0,0,0,.56);
    --pd-shadow-soft:0 24px 72px rgba(0,0,0,.34);

    --pd-radius-xl:56px;
    --pd-container:1180px;
    --pd-ease:cubic-bezier(.2,.8,.2,1);
}

/* RESET */

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

html{
    margin:0;
    padding:0;
    scroll-behavior:smooth;
    background:var(--pd-bg);
    overflow-x:hidden;
}

body.pandora-dictionary-body{
    margin:0 !important;
    padding:0 !important;
    min-height:100svh;
    direction:rtl;
    overflow-x:hidden;
    background:var(--pd-bg) !important;
    color:var(--pd-text) !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body.pandora-dictionary-body a{
    color:inherit;
    text-decoration:none;
}

body.pandora-dictionary-body img{
    max-width:100%;
}

body.pandora-dictionary-body button,
body.pandora-dictionary-body input{
    font-family:inherit !important;
}

/* PAGE */

.pd-page{
    position:relative;
    min-height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 50% -5%, rgba(214,170,98,.18), transparent 34%),
        radial-gradient(circle at 16% 24%, rgba(216,179,106,.12), transparent 28%),
        radial-gradient(circle at 86% 72%, rgba(168,121,45,.10), transparent 30%),
        linear-gradient(180deg,#080705 0%,#15110c 45%,#080705 100%);
}

.pd-chat-glow{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.32;
    background:
        radial-gradient(circle at 50% 0%, rgba(214,170,98,.20), transparent 28%),
        radial-gradient(circle at 72% 20%, rgba(216,179,106,.12), transparent 34%);
}

.pd-message-grid{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.08;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:54px 54px;
    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%);
}

.pd-container{
    width:min(var(--pd-container), calc(100% - 42px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* BUTTONS */

.pd-main-btn,
.pd-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(--pd-ease),
        box-shadow .25s var(--pd-ease),
        background .25s var(--pd-ease),
        border-color .25s var(--pd-ease);
}

.pd-main-btn{
    color:#1b1308 !important;
    background:
        linear-gradient(180deg,var(--pd-green-3),var(--pd-green));
    border:1px solid rgba(255,255,255,.24);
    box-shadow:
        0 22px 56px rgba(168,121,45,.30),
        inset 0 1px 0 rgba(255,255,255,.44);
}

.pd-main-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 32px 82px rgba(168,121,45,.42),
        inset 0 1px 0 rgba(255,255,255,.52);
}

.pd-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);
}

.pd-ghost-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.09);
    border-color:rgba(214,170,98,.34);
}

.pd-main-btn-big{
    width:100%;
    min-height:68px;
    font-size:16px;
}

/* PAYMENT */

.pd-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,.035));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--pd-shadow-soft);
    text-align:center;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.pd-payment-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1b1308 !important;
    background:var(--pd-green-2);
    font-size:30px;
    font-weight:950;
}

.pd-payment-message h2{
    margin:0 0 10px;
    color:#fff !important;
    font-size:25px;
    line-height:1.6;
    font-weight:950;
}

.pd-payment-message p{
    margin:0;
    color:var(--pd-muted) !important;
    font-size:15px;
    line-height:2;
    font-weight:600;
}

.pd-payment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    margin-top:22px;
    padding:0 26px;
    border-radius:999px;
    color:#1b1308 !important;
    background:var(--pd-green-2);
    font-size:15px;
    font-weight:950;
}

/* HERO */

.pd-hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:90px 0 105px;
    overflow:hidden;
}

.pd-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}

.pd-hero-bg-image{
    position:absolute;
    inset:-34px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(17px) brightness(.34) saturate(1.05);
    transform:scale(1.08);
    opacity:.86;
}

.pd-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 30%, rgba(214,170,98,.18), transparent 24%),
        linear-gradient(90deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.68) 58%, rgba(0,0,0,.90) 100%),
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.80) 100%);
}

.pd-hero-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.03fr .97fr;
    gap:54px;
    align-items:center;
}

.pd-hero-copy{
    position:relative;
    overflow:hidden;
    padding:50px 44px;
    border-radius:var(--pd-radius-xl);
    background:
        radial-gradient(circle at 18% 0%, rgba(214,170,98,.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(--pd-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.pd-hero-copy::before{
    content:"";
    position:absolute;
    top:0;
    right:42px;
    left:42px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--pd-green-2), transparent);
    box-shadow:0 0 24px rgba(214,170,98,.70);
}

.pd-chat-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#f8e5c1 !important;
    background:rgba(168,121,45,.16);
    border:1px solid rgba(214,170,98,.32);
    font-size:12px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.2px;
}

.pd-chat-pill span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--pd-green-2);
    box-shadow:0 0 16px rgba(214,170,98,.9);
    animation:pdPulse 1.7s ease-in-out infinite;
}

@keyframes pdPulse{
    0%,100%{opacity:1; transform:scale(1);}
    50%{opacity:.38; transform:scale(.72);}
}

.pd-hero h1{
    margin:0 0 24px;
    color:#fff !important;
    font-size:clamp(52px,7vw,96px);
    line-height:1;
    letter-spacing:-3px;
    font-weight:950;
    text-shadow:
        0 0 42px rgba(168,121,45,.26),
        0 16px 44px rgba(0,0,0,.48);
}

.pd-hero h1::first-letter{
    color:var(--pd-green-2);
}

.pd-hero-lead{
    max-width:720px;
    margin:0;
    color:var(--pd-soft) !important;
    font-size:17px;
    line-height:2.18;
    font-weight:650;
}

.pd-hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.pd-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:36px;
}

.pd-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;
}

.pd-stat-card span{
    display:block;
    margin-bottom:8px;
    color:var(--pd-green-3) !important;
    font-size:28px;
    line-height:1;
    font-weight:950;
}

.pd-stat-card strong{
    display:block;
    color:#fff !important;
    font-size:13.5px;
    line-height:1.8;
    font-weight:900;
}

/* HERO VISUAL */

.pd-hero-visual{
    position:relative;
}

.pd-poster-card{
    position:relative;
    overflow:hidden;
    border-radius:46px;
    background:#15110c;
    border:1px solid rgba(255,255,255,.13);
    box-shadow:var(--pd-shadow);
}

.pd-poster-card::before{
    content:"";
    position:absolute;
    inset:14px;
    z-index:2;
    pointer-events:none;
    border-radius:34px;
    border:1px solid rgba(214,170,98,.22);
}

.pd-poster-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        radial-gradient(circle at 55% 64%, rgba(214,170,98,.18), transparent 18%),
        linear-gradient(180deg, transparent 54%, rgba(0,0,0,.44) 100%);
}

.pd-poster-card img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.pd-message-panel{
    position:absolute;
    right:-20px;
    bottom:38px;
    width:min(350px,84%);
    padding:20px 22px;
    border-radius:26px;
    background:rgba(2,18,14,.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);
}

.pd-message-panel span{
    display:block;
    margin-bottom:7px;
    color:var(--pd-green-3) !important;
    font-size:11px;
    font-weight:950;
    letter-spacing:1.2px;
}

.pd-message-panel strong{
    display:block;
    color:#fff !important;
    font-size:22px;
    line-height:1.5;
    font-weight:950;
}

.pd-message-panel p{
    margin:4px 0 0;
    color:var(--pd-muted) !important;
    font-size:13px;
    line-height:1.8;
    font-weight:600;
}

/* GENERAL */

.pd-section{
    position:relative;
    z-index:2;
    padding:112px 0;
}

.pd-section-head{
    text-align:center;
    margin-bottom:48px;
}

.pd-section-head-right{
    text-align:right;
    margin-bottom:28px;
}

.pd-section-head span,
.pd-chatroom-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    padding:9px 16px;
    border-radius:999px;
    color:#f8e5c1 !important;
    background:rgba(168,121,45,.14);
    border:1px solid rgba(214,170,98,.30);
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.pd-section-head h2,
.pd-chatroom-title h2{
    margin:0;
    color:#fff !important;
    font-size:clamp(34px,5vw,64px);
    line-height:1.22;
    letter-spacing:-1.8px;
    font-weight:950;
}

/* INTRO */

.pd-chatroom-panel{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:52px;
    align-items:start;
    padding:42px;
    border-radius:var(--pd-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(214,170,98,.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(--pd-shadow-soft);
}

.pd-chatroom-text{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.pd-chatroom-text p{
    margin:0;
    color:var(--pd-soft) !important;
    font-size:16px;
    line-height:2.25;
    font-weight:600;
}

/* SYSTEM */

.pd-system-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.pd-system-card{
    position:relative;
    overflow:hidden;
    min-height:305px;
    padding:28px 24px;
    border-radius:34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(214,170,98,.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(--pd-shadow-soft);
}

.pd-system-card::before{
    content:"";
    position:absolute;
    top:24px;
    bottom:24px;
    right:0;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--pd-green-2),var(--pd-green));
}

.pd-system-card::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-115px;
    width:230px;
    height:230px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(168,121,45,.14), transparent 68%);
}

.pd-system-wide{
    grid-column:span 2;
}

.pd-system-gold{
    border-color:rgba(216,179,106,.30);
    background:
        radial-gradient(circle at 50% 0%, rgba(216,179,106,.15), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.082), rgba(255,255,255,.028));
}

.pd-system-number{
    position:relative;
    z-index:2;
    color:rgba(214,170,98,.24) !important;
    font-size:58px;
    line-height:1;
    font-weight:950;
    letter-spacing:-3px;
    margin-bottom:18px;
}

.pd-system-card div:not(.pd-system-number){
    position:relative;
    z-index:2;
}

.pd-system-card span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--pd-green-3) !important;
    font-size:11px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.1px;
}

.pd-system-card h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.65;
    font-weight:950;
}

.pd-system-card p{
    margin:0;
    color:var(--pd-muted) !important;
    font-size:14px;
    line-height:2.02;
    font-weight:600;
}

/* BENEFIT */

.pd-benefit-panel{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--pd-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(214,170,98,.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(--pd-shadow-soft);
}

.pd-benefit-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.pd-benefit-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    min-height:76px;
    padding:16px 18px;
    border-radius:24px;
    background:rgba(255,255,255,.052);
    border:1px solid rgba(255,255,255,.11);
}

.pd-benefit-item span{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1b1308 !important;
    background:var(--pd-green-2);
    font-size:15px;
    font-weight:950;
}

.pd-benefit-item p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:700;
}

/* PHONE CHAT */

.pd-phone-board{
    position:relative;
    overflow:hidden;
    min-height:520px;
    padding:34px 24px;
    border-radius:42px;
    background:
        radial-gradient(circle at 50% 0%, rgba(214,170,98,.14), transparent 35%),
        linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.25));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--pd-shadow-soft);
}

.pd-phone-board::before{
    content:"";
    position:absolute;
    inset:16px;
    border-radius:32px;
    border:1px solid rgba(255,255,255,.08);
    pointer-events:none;
}

.pd-phone-message{
    position:relative;
    z-index:2;
    width:82%;
    margin-bottom:16px;
    padding:16px 18px;
    border-radius:22px;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:700;
    box-shadow:0 18px 46px rgba(0,0,0,.20);
}

.pd-msg-her{
    margin-left:auto;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    border-bottom-right-radius:6px;
}

.pd-msg-you{
    margin-right:auto;
    background:rgba(168,121,45,.16);
    border:1px solid rgba(214,170,98,.26);
    border-bottom-left-radius:6px;
}

.pd-msg-highlight{
    color:#1b1308 !important;
    background:linear-gradient(180deg,var(--pd-green-3),var(--pd-green));
}

/* WHO */

.pd-who-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.pd-who-card{
    position:relative;
    overflow:hidden;
    min-height:250px;
    padding:26px 22px;
    border-radius:32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(214,170,98,.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(--pd-shadow-soft);
}

.pd-who-card::before{
    content:"";
    position:absolute;
    right:0;
    top:24px;
    bottom:24px;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--pd-green-2),var(--pd-green));
}

.pd-who-card span{
    display:block;
    margin-bottom:18px;
    color:rgba(214,170,98,.28) !important;
    font-size:46px;
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
}

.pd-who-card h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:20px;
    line-height:1.65;
    font-weight:950;
}

.pd-who-card p{
    margin:0;
    color:var(--pd-muted) !important;
    font-size:14px;
    line-height:2;
    font-weight:600;
}

/* FAQ */

.pd-faq-list{
    width:min(920px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.pd-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);
}

.pd-faq-item h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.7;
    font-weight:950;
}

.pd-faq-item p{
    margin:0;
    color:var(--pd-muted) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:600;
}

/* PRICING */

.pd-pricing-section{
    padding-bottom:150px;
    background:
        radial-gradient(circle at 50% 20%, rgba(214,170,98,.14), transparent 32%);
}

.pd-pricing-card{
    position:relative;
    overflow:hidden;
    width:min(900px,100%);
    margin:0 auto;
    padding:56px 48px 50px;
    border-radius:var(--pd-radius-xl);
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%, rgba(214,170,98,.20), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.090), rgba(255,255,255,.032));
    border:1px solid rgba(214,170,98,.30);
    box-shadow:var(--pd-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.pd-pricing-card::before{
    content:"";
    position:absolute;
    inset:auto -20% -42% -20%;
    height:360px;
    pointer-events:none;
    background:radial-gradient(circle, rgba(168,121,45,.30), transparent 72%);
}

.pd-pricing-card > *{
    position:relative;
    z-index:2;
}

.pd-pricing-kicker{
    display:inline-flex;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#f8e5c1 !important;
    background:rgba(168,121,45,.16);
    border:1px solid rgba(214,170,98,.34);
    font-size:13px;
    font-weight:950;
}

.pd-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;
}

.pd-pricing-text{
    max-width:680px;
    margin:0 auto;
    color:var(--pd-soft) !important;
    font-size:16px;
    line-height:2.1;
    font-weight:650;
}

.pd-price-wrap{
    margin:40px 0 30px;
}

.pd-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(214,170,98,.72);
}

.pd-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(168,121,45,.34),
        0 14px 34px rgba(0,0,0,.34);
}

.pd-price-empty{
    font-size:30px;
    line-height:1.6;
}

.pd-pricing-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:34px 0;
}

.pd-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;
}

.pd-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:#1b1308 !important;
    background:var(--pd-green-2);
    font-size:15px;
    font-weight:950;
}

.pd-pricing-benefit p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

/* FORM */

.pd-signup-form{
    margin-top:28px;
}

.pd-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}

.pd-form-field{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.pd-form-field span{
    color:var(--pd-soft) !important;
    font-size:14px;
    font-weight:800;
}

.pd-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;
}

.pd-form-field input::placeholder{
    color:rgba(255,255,255,.34);
}

.pd-form-field input:focus{
    border-color:rgba(214,170,98,.48);
    box-shadow:
        0 0 0 4px rgba(168,121,45,.14),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.pd-form-field input[name="phone"]{
    direction:rtl;
    text-align:right;
}

/* HOVER */

.pd-stat-card,
.pd-system-card,
.pd-benefit-item,
.pd-phone-message,
.pd-who-card,
.pd-faq-item,
.pd-pricing-benefit{
    transition:
        transform .24s var(--pd-ease),
        box-shadow .24s var(--pd-ease),
        border-color .24s var(--pd-ease),
        background .24s var(--pd-ease);
}

@media (hover:hover){
    .pd-stat-card:hover,
    .pd-system-card:hover,
    .pd-benefit-item:hover,
    .pd-phone-message:hover,
    .pd-who-card:hover,
    .pd-faq-item:hover,
    .pd-pricing-benefit:hover{
        transform:translateY(-5px);
        border-color:rgba(214,170,98,.30);
        box-shadow:0 28px 82px rgba(0,0,0,.34);
    }
}

/* RESPONSIVE */

@media (max-width:1180px){
    .pd-system-grid,
    .pd-who-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:980px){
    .pd-hero-layout,
    .pd-chatroom-panel,
    .pd-benefit-panel{
        grid-template-columns:1fr;
    }

    .pd-section-head-right{
        text-align:center;
    }

    .pd-hero-copy,
    .pd-chatroom-title{
        text-align:center;
    }

    .pd-hero-actions{
        justify-content:center;
    }

    .pd-hero-visual{
        max-width:620px;
        margin:0 auto;
    }

    .pd-phone-board{
        max-width:620px;
        margin:0 auto;
    }
}

@media (max-width:768px){

    .pd-container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .pd-hero{
        min-height:auto;
        padding:62px 0 76px;
    }

    .pd-hero-bg-image{
        filter:blur(14px) brightness(.32) saturate(1.05);
        opacity:.76;
    }

    .pd-hero-layout{
        gap:28px;
    }

    .pd-hero-copy{
        padding:32px 20px 28px;
        border-radius:34px;
    }

    .pd-chat-pill{
        font-size:11px;
    }

    .pd-hero h1{
        font-size:clamp(42px,13vw,64px);
        line-height:1.1;
        letter-spacing:-1.5px;
    }

    .pd-hero-lead{
        font-size:14.5px;
        line-height:2.05;
    }

    .pd-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .pd-main-btn,
    .pd-ghost-btn{
        width:100%;
        min-height:56px;
    }

    .pd-hero-stats{
        grid-template-columns:1fr;
        gap:10px;
    }

    .pd-stat-card{
        min-height:auto;
        padding:14px 16px;
    }

    .pd-poster-card{
        border-radius:34px;
    }

    .pd-message-panel{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
    }

    .pd-section{
        padding:76px 0;
    }

    .pd-section-head{
        margin-bottom:32px;
    }

    .pd-section-head h2,
    .pd-chatroom-title h2{
        font-size:31px;
        line-height:1.34;
        letter-spacing:-.8px;
    }

    .pd-chatroom-panel,
    .pd-benefit-panel,
    .pd-pricing-card{
        padding:20px;
        border-radius:32px;
    }

    .pd-chatroom-text p{
        font-size:14px;
        line-height:2.05;
        text-align:center;
    }

    .pd-system-grid,
    .pd-who-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .pd-system-wide{
        grid-column:auto;
    }

    .pd-system-card,
    .pd-who-card{
        min-height:auto;
        padding:24px 20px;
        border-radius:28px;
    }

    .pd-system-number,
    .pd-who-card span{
        font-size:44px;
        margin-bottom:12px;
    }

    .pd-system-card h3,
    .pd-who-card h3{
        font-size:19px;
    }

    .pd-system-card p,
    .pd-who-card p{
        font-size:13.5px;
        line-height:1.95;
    }

    .pd-phone-board{
        min-height:auto;
        padding:24px 16px;
        border-radius:32px;
    }

    .pd-phone-message{
        width:92%;
        font-size:13.5px;
        padding:14px 16px;
    }

    .pd-faq-item{
        padding:22px 20px;
        border-radius:24px;
    }

    .pd-faq-item h3{
        font-size:18px;
    }

    .pd-faq-item p{
        font-size:14px;
    }

    .pd-pricing-section{
        padding-bottom:92px;
    }

    .pd-pricing-card h2{
        font-size:36px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .pd-pricing-text{
        font-size:14px;
        line-height:2;
    }

    .pd-old-price{
        font-size:26px;
    }

    .pd-new-price{
        font-size:44px;
        letter-spacing:-1px;
    }

    .pd-pricing-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }

    .pd-form-grid{
        grid-template-columns:1fr;
    }

    .pd-form-field input{
        height:58px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .pd-container{
        padding-left:12px;
        padding-right:12px;
    }

    .pd-hero-copy{
        padding:28px 16px 24px;
        border-radius:28px;
    }

    .pd-hero h1{
        font-size:40px;
    }

    .pd-section-head h2,
    .pd-chatroom-title h2{
        font-size:29px;
    }

    .pd-chatroom-panel,
    .pd-benefit-panel,
    .pd-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;
  }

}
