﻿/* ══════════ ROOT ══════════ */
:root {
    /* Rose Gold */
    --rg: #C4866E;
    --rg-lt: #E8B4A0;
    --rg-dk: #8A5240;
    /* Gold */
    --gd: #C9A84C;
    --gd-lt: #E2C97E;
    --gd-dk: #8B6914;
    /* Teal Blue */
    /* Dark bg */
    --d1: #0C0906;
    --d2: #121008;
    --d3: #181310;
    --card-bg: rgba(255,255,255,.036);
    --bdr: rgba(196,134,110,.18);
    --mt-d: #9A8878;
    --tx-d: #F0E8E2;
    /* Light bg */
    --tx-l: #180e08;
    --mt-l: #6b5a50;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'DM Sans',sans-serif;
    background: var(--d1);
    color: var(--tx-d);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}
    /* grain */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 9998;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
        pointer-events: none;
        opacity: .4
    }

.active {
    color: inherit !important;
}
/* ══════════ TYPOGRAPHY ══════════ */
.serif {
    font-family: 'Playfair Display',serif
}

.eyebrow {
    font-size: .6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom:0;
}
/* Triple gradient texts */
.tri-grad {
    background: linear-gradient(135deg,var(--rg-lt) 0%,var(--rg) 40%,var(--gd) 70%,var(--gd-lt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.rg-grad {
    background: linear-gradient(135deg,var(--rg-lt),var(--rg),var(--rg-dk));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.gd-grad {
    background: linear-gradient(135deg,var(--gd-lt),var(--gd),var(--gd-dk));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.tb-grad {
    background: linear-gradient(135deg,var(--gd-lt),var(--gd),var(--gd-dk));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ══════════ GLOW ORBS ══════════ */
.g-orb-rg {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(196,134,110,.2) 0%,rgba(196,134,110,.07) 45%,transparent 70%);
    filter: blur(38px);
    pointer-events: none
}

.g-orb-gd {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(201,168,76,.18) 0%,rgba(201,168,76,.05) 45%,transparent 70%);
    filter: blur(38px);
    pointer-events: none
}

.g-orb-tb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(201,168,76,.15) 0%,rgba(201,168,76,.05) 45%,transparent 70%);
    filter: blur(38px);
    pointer-events: none
}

/* ══════════ BUTTONS ══════════ */
.btn-tri {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd),var(--gd-dk));
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

    .btn-tri::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
        transition: left .5s
    }

    .btn-tri:hover::after {
        left: 100%
    }

    .btn-tri:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(196,134,110,.4),0 6px 20px rgba(201,168,76,.25);
        color: #fff;
        text-decoration: none
    }

.btn-rg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--rg-lt));
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all .35s
}

    .btn-rg:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 35px rgba(196,134,110,.4);
        color: #fff;
        text-decoration: none
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid rgba(201,168,76,.3);
    background: rgba(201,168,76,.07);
    color: var(--gd-lt);
    border-radius: 3px;
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s
}

    .btn-ghost:hover {
        border-color: var(--gd);
        background: rgba(201,168,76,.14);
        color: #fff;
        text-decoration: none
    }

.btn-ghost-l {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid rgba(196,134,110,.35);
    background: transparent;
    color: var(--rg-dk);
    border-radius: 3px;
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s
}

    .btn-ghost-l:hover {
        border-color: var(--rg);
        background: rgba(196,134,110,.08);
        color: var(--rg-dk);
        text-decoration: none
    }

/* ══════════════════════════════════════
   §1  HERO — DARK
══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: auto;
    background: var(--d1);
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(196,134,110,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(196,134,110,.04) 1px,transparent 1px);
    background-size: 64px 64px
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 78% 42%,rgba(196,134,110,.12) 0%,transparent 60%),radial-gradient(ellipse 50% 55% at 5% 85%,rgba(201,168,76,.1) 0%,transparent 60%),radial-gradient(ellipse 40% 40% at 50% 0%,rgba(201,168,76,.07) 0%,transparent 55%)
}

.hero-in {
    position: relative;
    z-index: 2;
}

.h-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 20px;
    border: 1px solid rgba(196,134,110,.28);
    border-radius: 100px;
    background: rgba(196,134,110,.09);
    font-size: .62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rg-lt);
    margin-bottom: 30px
}

.h-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(3rem,5vw,5rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 26px
}

    .h-title em {
        font-style: italic
    }

.h-sub {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--mt-d);
    font-weight: 300;
    margin-bottom: 42px
}

/* trust bar */
.trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 44px
}

.trust-n {
    font-family: 'Playfair Display',serif;
    font-size: 1.45rem;
    display: block
}

.trust-l {
    font-size: .67rem;
    color: var(--mt-d)
}

.trust-sep {
    width: 1px;
    height: 32px;
    background: var(--bdr)
}

/* hero image */
.hero-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,.65),0 0 60px rgba(196,134,110,.12),0 0 40px rgba(196,134,110,.1);
    border: 1px solid rgba(196,134,110,.2)
}

    .hero-img-frame img {
        width: 100%;
        display: block;
        border-radius: 20px
    }

.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(196,134,110,.25) 0%,rgba(196,134,110,.12) 50%,transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none
}
/* img fallback placeholder */
.img-placeholder {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg,#1e140d,#152028);
    border-radius: 20px;
    border: 1px dashed rgba(196,134,110,.25)
}

    .img-placeholder i {
        font-size: 2.8rem;
        color: rgba(196,134,110,.3)
    }

    .img-placeholder span {
        font-size: .62rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(196,134,110,.45)
    }

/* floating badges */
.fbadge {
    position: absolute;
    background: rgba(14,10,8,.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(196,134,110,.28);
    border-radius: 14px;
    padding: 10px 16px;
    font-size: .67rem;
    color: var(--tx-d);
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    animation: fbf 4s ease-in-out infinite
}

.fb1 {
    top: -16px;
    right: -20px;
    animation-delay: 0s
}

.fb2 {
    bottom: 20px;
    left: -28px;
    animation-delay: 2s
}

@keyframes fbf {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

.ldot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    margin-right: 6px;
    animation: blink 1.5s infinite
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
    background: var(--d2);
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(196,134,110,.15);
    padding: 38px 0;
    position: relative;
    overflow: hidden
}

.s-num {
    font-family: 'Playfair Display',serif;
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
    display: block
}

.s-lbl {
    font-size: .62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mt-d)
}

/* ══════════════════════════════════════
   §2  FEATURES — WHITE
══════════════════════════════════════ */
.features-sec {
    background: #fff;
    color: var(--tx-l);
    padding: 60px 0;
}

/* image box */
.feat-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196,134,110,.15),0 0 0 1px rgba(196,134,110,.1)
}

    .feat-img-box img {
        width: 100%;
        display: block;
        border-radius: 20px
    }

.feat-img-ph {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 20px
}

    .feat-img-ph i {
        font-size: 3rem;
        opacity: .45
    }

    .feat-img-ph span {
        font-size: .62rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        opacity: .5
    }

/* feature list items */
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(196,134,110,.1)
}

    .feat-item:last-child {
        border-bottom: none
    }

.feat-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid;
    margin-top: 2px
}

.feat-item-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.55rem;
    color: var(--tx-l);
    margin-bottom: 6px;
    font-weight: 500
}

.feat-item-desc {
    font-size: .85rem;
    color: var(--mt-l);
    line-height: 1.85;
    font-weight: 300;
    margin: 0
}

/* divider between two rows */
.feat-divider {
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(196,134,110,.3),rgba(201,168,76,.2),rgba(196,134,110,.3),transparent)
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    border: 1px solid
}
/* icon color variants */
.fi-rg {
    background: rgba(196,134,110,.1);
    border-color: rgba(196,134,110,.22);
    color: var(--rg-dk)
}

.fi-gd {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.22);
    color: var(--gd-dk)
}

.fi-tb {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.22);
    color: var(--gd-dk)
}

.feat-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.1rem;
    color: var(--tx-l);
    margin-bottom: 10px
}

.feat-desc {
    font-size: .79rem;
    color: var(--mt-l);
    line-height: 1.85;
    font-weight: 300
}

/* ══════════════════════════════════════
   §3  PLANS — DARK
══════════════════════════════════════ */
.plans-sec {
    background: var(--d3);
    color: var(--tx-d);
    padding: 10px 0;
    position: relative;
    overflow: hidden
}

/* tab pills */
.plan-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 60px
}

.plan-tabs {
    display: inline-flex;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--bdr);
    border-radius: 100px;
    padding: 5px;
    gap: 3px;
    flex-wrap: wrap
}

.ptab {
    padding: 9px 24px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--mt-d);
    font-family: 'DM Sans',sans-serif;
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap
}

    .ptab:hover {
        color: var(--tx-d);
        background: rgba(255,255,255,.06)
    }

    .ptab.active {
        background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd),var(--gd-dk));
        color: #fff !important;
        box-shadow: 0 4px 20px rgba(196,134,110,.35),0 2px 10px rgba(201,168,76,.2)
    }

/* plan panes */
.plan-pane {
    display: none !important;
    overflow:hidden;
}

    .plan-pane.active {
        display: block !important;
        animation: fadeUp .4s ease-out both;
        overflow:hidden;
    }

/* plan card */
.p-card {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s
}

.p-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity .35s
}

.p-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196,134,110,.35)
}

    .p-card:hover .p-card-top {
        opacity: 1
    }

.p-card.feat {
    border-color: rgba(201,168,76,.28);
    background: rgba(201,168,76,.05)
}

    .p-card.feat .p-card-top {
        opacity: 1;
        background: linear-gradient(90deg,transparent,var(--rg),transparent)
    }

.p-card.feat-rg {
    border-color: rgba(196,134,110,.38);
    background: rgba(196,134,110,.06)
}

    .p-card.feat-rg .p-card-top {
        opacity: 1;
        background: linear-gradient(90deg,transparent,var(--rg),transparent)
    }

.p-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #fff;
    font-size: .54rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px
}

.pb-tb {
    background: linear-gradient(135deg,var(--gd-dk),var(--gd))
}

.pb-rg {
    background: linear-gradient(135deg,var(--rg-dk),var(--rg))
}

.pb-gd {
    background: linear-gradient(135deg,var(--gd-dk),var(--gd))
}

.p-name {
    font-family: 'Playfair Display',serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px
}

.p-price {
    font-family: 'Playfair Display',serif;
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px
}

    .p-price sup {
        font-size: 1rem;
        vertical-align: super
    }

    .p-price small {
        font-family: 'DM Sans',sans-serif;
        font-size: .7rem;
        color: var(--mt-d)
    }

.p-desc {
    font-size: .88rem;
    color: var(--mt-d);
    line-height: 1.78;
    font-weight: 300;
    margin: 10px 0 22px
}

.p-list {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
    margin-top:15px
}

    .p-list li {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        font-size: .97rem;
        color: var(--mt-d);
        padding: 4px 0;
        border-bottom: 1px solid rgba(255,255,255,.04);
        font-weight: 300
    }

        .p-list li:last-child {
            border: none
        }

.ck-rg {
    color: var(--rg);
    font-size: .65rem;
    margin-top: 3px;
    flex-shrink: 0
}

.ck-gd {
    color: var(--gd);
    font-size: .65rem;
    margin-top: 3px;
    flex-shrink: 0
}

.ck-tb {
    color: var(--gd);
    font-size: .65rem;
    margin-top: 3px;
    flex-shrink: 0
}

.p-list li.no {
    opacity: .28
}

.btn-p {
    width: 100%;
    padding: 13px;
    border-radius: 4px;
    border: 1px solid var(--bdr);
    background: transparent;
    color: var(--rg-lt);
    font-family: 'DM Sans',sans-serif;
    font-size: .67rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s
}

    .btn-p:hover {
        border-color: var(--rg);
        background: rgba(196,134,110,.1);
        color: #fff
    }

.btn-p-rg {
    background: linear-gradient(135deg,var(--rg-dk),var(--rg));
    border-color: transparent;
    color: #fff
}

    .btn-p-rg:hover {
        box-shadow: 0 10px 30px rgba(196,134,110,.42);
        transform: translateY(-2px)
    }

.btn-p-tb {
    background: linear-gradient(135deg,var(--gd-dk),var(--gd));
    border-color: transparent;
    color: #fff
}

    .btn-p-tb:hover {
        box-shadow: 0 10px 30px rgba(201,168,76,.38);
        transform: translateY(-2px)
    }

.btn-p-tri {
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd),var(--rg-dk));
    border-color: transparent;
    color: #fff
}

    .btn-p-tri:hover {
        box-shadow: 0 10px 30px rgba(196,134,110,.4),0 5px 20px rgba(201,168,76,.3);
        transform: translateY(-2px)
    }

/* plan image right */
.plan-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.plan-img-glow-wrap {
    position: relative
}

    .plan-img-glow-wrap .g-orb-rg, .plan-img-glow-wrap .g-orb-tb, .plan-img-glow-wrap .g-orb-gd {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 1
    }

    .plan-img-glow-wrap img {
        position: relative;
        z-index: 2;
        width: 100%;
        border-radius: 18px;
        box-shadow: 0 30px 80px rgba(0,0,0,.55),0 0 40px rgba(196,134,110,.18);
        border: 1px solid rgba(196,134,110,.24);
        display: block;
        margin: 0 auto
    }

.plan-img-cap {
    text-align: center;
    margin-top: 14px;
    font-size: .5rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mt-d)
}

/* ── ================== STEPS SECTION =================== ── */
.steps-sec {
    background: #fff;
    padding: 110px 0;
}

/* heading */
.steps-eyebrow {
    font-size: .6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--rg-dk);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.steps-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: #180e08;
    margin-bottom: 14px;
}

.steps-sub {
    font-size: .84rem;
    color: #6b5a50;
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.8;
}

/* connector line between cards */
.steps-row {
    position: relative;
}

    .steps-row::before {
        content: '';
        position: absolute;
        top: 140px;
        left: calc(16.666% + 24px);
        right: calc(16.666% + 24px);
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(196,134,110,.4) 15%, rgba(201,168,76,.5) 50%, rgba(196,134,110,.4) 85%, transparent 100% );
        z-index: 0;
    }

/* each step card */
.step-card {
    position: relative;
    z-index: 1;
}

/* image box */
.step-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f5ede6, #fdf6f2);
    border: 1px solid rgba(196,134,110,.15);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(196,134,110,.12), 0 2px 8px rgba(0,0,0,.06);
    transition: all .4s;
}

.step-card:hover .step-img-box {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(196,134,110,.2), 0 4px 16px rgba(0,0,0,.1);
}

/* actual image inside */
.step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* image placeholder */
.step-img-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
/*    height: 100%;
    min-height: 200px;*/
}

    .step-img-ph i {
        font-size: 2.4rem;
        opacity: .3;
    }

    .step-img-ph span {
        font-size: .58rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        opacity: .4;
    }

/* step number — top right INSIDE image */
.step-num-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.25);
}

.snb-1 {
    background: linear-gradient(135deg, var(--rg-dk), var(--rg));
}

.snb-2 {
    background: linear-gradient(135deg, var(--gd-dk), var(--gd));
}

.snb-3 {
    background: linear-gradient(135deg, var(--rg-dk), var(--gd));
}

/* bottom stripe accent on image */
.step-img-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.sis-1 {
    background: linear-gradient(90deg, var(--rg-dk), var(--rg), rgba(196,134,110,.2));
}

.sis-2 {
    background: linear-gradient(90deg, var(--gd-dk), var(--gd), rgba(201,168,76,.2));
}

.sis-3 {
    background: linear-gradient(90deg, var(--rg-dk), var(--gd), rgba(196,134,110,.2));
}

/* arrow between steps */
.step-arrow {
    position: absolute;
    top: 126px;
    right: -30px;
    z-index: 4;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(196,134,110,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--rg);
    box-shadow: 0 4px 14px rgba(196,134,110,.18);
}

/* text below image */
.step-body {
    padding: 0 4px;
}

.step-tag {
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.st-1 {
    color: var(--rg-dk);
}

.st-2 {
    color: var(--gd-dk);
}

.st-3 {
    color: var(--rg-dk);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #180e08;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-desc {
    font-size: .8rem;
    color: #6b5a50;
    line-height: 1.85;
    font-weight: 300;
}

@media (max-width: 767px) {
    .steps-row::before {
        display: none;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 991px) {
    .steps-row::before {
        display: none;
    }

    .step-arrow {
        display: none;
    }
}



/* ══════════════════════════════════════
   STEPS SECTION — MOBILE APP STYLE
══════════════════════════════════════ */
@media (max-width: 456px) {

    .steps-sec {
        padding: 50px 0 40px;
    }

    .steps-eyebrow {
        display: inline-flex;
        background: rgba(196,134,110,.1);
        border: 1px solid rgba(196,134,110,.25);
        padding: 6px 14px;
        border-radius: 30px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .steps-title {
        font-size: 1.6rem !important;
        margin-bottom: 8px;
    }

    .steps-sub {
        font-size: .78rem;
        line-height: 1.7;
        max-width: 100%;
    }

    /* cards ko app-list jaisa horizontal layout */
    .steps-row {
        margin-top: 26px !important;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .step-card {
        display: flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        border: 1px solid rgba(196,134,110,.15);
        border-radius: 18px;
        padding: 14px;
        box-shadow: 0 8px 24px rgba(196,134,110,.1);
    }

        .step-card .col-md-4,
        .step-card.mb-5 {
            margin-bottom: 0 !important;
        }

    /* image chhota, left side circular icon jaisa */
    .step-img-box {
        width: 64px;
        height: 64px;
        min-width: 64px;
        aspect-ratio: unset;
        margin-bottom: 0;
        border-radius: 16px;
        box-shadow: none;
    }

    .step-card:hover .step-img-box {
        transform: none;
        box-shadow: none;
    }

    .step-img-box img {
        border-radius: 16px;
    }

    /* number badge chhota, top-left overlap */
    .step-num-badge {
        width: 22px;
        height: 22px;
        font-size: .6rem;
        top: -6px;
        right: -6px;
        box-shadow: 0 3px 8px rgba(0,0,0,.2);
    }

    .step-img-stripe {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    /* text right side */
    .step-body {
        padding: 0;
        flex: 1;
    }

    .step-tag {
        font-size: .55rem;
        letter-spacing: 2px;
        margin-bottom: 3px;
    }

    .step-title {
        font-size: .95rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .step-desc {
        font-size: .72rem;
        line-height: 1.55;
    }

    /* connecting vertical line app-timeline jaisa */
    .steps-row {
        position: relative;
        padding-left: 4px;
    }

    .step-card {
        position: relative;
    }

        .step-card:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 32px;
            top: 68px;
            width: 1px;
            height: 22px;
            background: linear-gradient(to bottom, rgba(196,134,110,.4), transparent);
        }
}



/* ══════════════════════════════════════
   §5  NFC TECH — DARK
══════════════════════════════════════ */
.tech-sec {
    background: var(--d2);
    color: var(--tx-d);
    padding: 50px 0;
    position: relative;
    overflow: hidden
}


.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; /* pehle 2px tha — ab breathing space */
    margin-top: 40px;
}

.tech-item {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    padding: 26px 22px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    border-radius: 14px; /* soft corners */
}

    /* left glow line */
    .tech-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        opacity: 0;
        transition: all .3s ease;
        border-radius: 4px;
    }

.ti-rg::before {
    background: linear-gradient(to bottom, var(--rg), transparent);
}

.ti-gd::before {
    background: linear-gradient(to bottom, var(--gd), transparent);
}

.ti-tb::before {
    background: linear-gradient(to bottom, var(--rg), transparent);
}

/* subtle hover effect */
.tech-item:hover {
    background: rgba(196,134,110,.06);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .tech-item:hover::before {
        opacity: 1;
    }

/* icon */
.ti-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    transition: transform .3s ease;
}

.tech-item:hover .ti-icon {
    transform: scale(1.1);
}

.ti-rg .ti-icon {
    color: var(--rg-lt);
}

.ti-gd .ti-icon {
    color: var(--gd-lt);
}

.ti-tb .ti-icon {
    color: var(--gd-lt);
}

/* title */
.ti-t {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

/* description */
.ti-d {
    font-size: .79rem;
    color: var(--mt-d);
    line-height: 1.75;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
}

/* responsive */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.nfc-mockup img{
    border-radius:15px;
}



/* ══════════════════════════════════════
   §5b  NFC TECH — MOBILE APP STYLE
══════════════════════════════════════ */
@media (max-width: 456px) {

    .tech-sec {
        padding: 36px 0 30px;
    }

        /* eyebrow ko app-style pill badge banaya */
        .tech-sec .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(196,134,110,.12);
            border: 1px solid rgba(196,134,110,.25);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: .68rem;
            margin-bottom: 4px;
        }

        .tech-sec h2.serif {
            font-size: 1.6rem !important;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .tech-sec > .container > .row > .col-lg-6:first-child > p.reveal {
            font-size: .8rem;
            line-height: 1.7;
            margin-bottom: 22px;
        }

        /* NFC image ko upar laaye, app-preview jaisa card */
        .tech-sec .row {
            display: flex;
            flex-direction: column-reverse;
        }

    .nfc-mockup {
        max-width: 100%;
        margin: 0 auto 24px;
        padding: 14px;
        background: var(--card-bg);
        border: 1px solid var(--bdr);
        border-radius: 24px;
        box-shadow: 0 12px 30px rgba(0,0,0,.25);
    }

        .nfc-mockup img {
            border-radius: 16px;
        }

    /* app-icon grid: 2 col chhote rounded tiles, list jaisa nahi */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .tech-item {
        padding: 16px 14px;
        border-radius: 18px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .tech-item::before {
            /* mobile pe side-bar hataakr top-glow app-icon jaisa */
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            border-radius: 3px;
        }

    .ti-icon {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(196,134,110,.1);
        border-radius: 14px;
        font-size: 1.2rem;
        margin: 0 auto 10px;
    }

    .ti-t {
        font-size: .85rem;
        margin-bottom: 4px;
    }

    .ti-d {
        font-size: .68rem;
        line-height: 1.5;
    }

    /* CTA ko app ke "bottom action button" jaisa full width */
    .tech-sec .text-start {
        text-align: center !important;
        padding: 30px 0 0 !important;
    }

    .tech-sec .btn-hero-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 0;
        border-radius: 30px;
        font-size: .82rem;
    }

    .tech-sec p[style*="letter-spacing"] {
        text-align: center;
        margin-top: 10px !important;
    }

    /* orbs ko mobile pe halka/hide taaki clean rahe */
    .tech-sec .g-orb-tb,
    .tech-sec .g-orb-rg,
    .tech-sec .g-orb-gd {
        opacity: .3;
        filter: blur(40px);
    }
}


/* ══════════════════════════════════════
   §6  SHIPPING — WHITE
══════════════════════════════════════ */
.ship-sec {
    background: #fff;
    color: var(--tx-l);
    padding: 65px 0
}

.ship-img-wrap {
    position: relative;
    padding: 14px
}

    .ship-img-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 70px;
        height: 70px;
        border-top: 2px solid var(--rg);
        border-left: 2px solid var(--rg);
        border-radius: 4px 0 0 0
    }

    .ship-img-wrap::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70px;
        height: 70px;
        border-bottom: 2px solid var(--rg);
        border-right: 2px solid var(--rg);
        border-radius: 0 0 4px 0
    }

    .ship-img-wrap img {
        width: 100%;
        border-radius: 16px;
        display: block;
        box-shadow: 0 24px 60px rgba(196,134,110,.12),0 0 0 1px rgba(196,134,110,.1)
    }

.ship-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(196, 134, 110, .1);
}

    .ship-step:last-child {
        border: none
    }

.ship-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid
}

.si-rg {
    background: rgba(196,134,110,.1);
    border-color: rgba(196,134,110,.22);
    color: var(--rg-dk)
}

.si-gd {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.22);
    color: var(--gd-dk)
}

.si-tb {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.22);
    color: var(--gd-dk)
}

.ship-t {
    font-family: 'Playfair Display',serif;
    font-size: .98rem;
    color: var(--tx-l);
    margin-bottom: 0px
}

.ship-d {
    font-size: .78rem;
    color: var(--mt-l);
    line-height: 1.78;
    font-weight: 300
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px
}

.sbadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: .68rem;
    letter-spacing: 1px;
    border: 1px solid
}

.sb-rg {
    background: rgba(196,134,110,.07);
    border-color: rgba(196,134,110,.2);
    color: var(--rg-dk)
}

.sb-gd {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.2);
    color: var(--gd-dk)
}

.sb-tb {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.22);
    color: var(--gd-dk)
}


/* ══════════════════════════════════════
   SHIPPING SECTION — MOBILE APP STYLE
══════════════════════════════════════ */
@media (max-width:456px) {

    .ship-sec {
        padding: 46px 0 40px;
    }

    .reveal {
    
        margin-bottom: 4px;
    }
    /* image card chhota, app-preview jaisa */
    .ship-img-wrap {
        padding: 0;
        max-width: 240px;
        margin: 0 auto 30px;
    }

        .ship-img-wrap::before,
        .ship-img-wrap::after {
            width: 40px;
            height: 40px;
        }

        .ship-img-wrap > div {
            min-height: 240px !important;
            border-radius: 20px;
            padding: 16px;
        }

    .ship-sec .eyebrow {
        display: inline-flex;
        background: rgba(196,134,110,.1);
        border: 1px solid rgba(196,134,110,.25);
        padding: 6px 14px;
        border-radius: 30px;
        margin-bottom: 4px;
    }

    .ship-sec h2.serif {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
    }

    .ship-sec > .container > .row > .col-lg-6:last-child > p.reveal {
        font-size: .8rem !important;
        line-height: 1.75;
        margin-bottom:12px !important;
    }

    /* steps ko timeline-list app-jaisa banaya */
    .ship-step {
        background: #fff;
        border: 1px solid rgba(196,134,110,.12);
        border-radius: 16px;
        padding: 12px;
        margin-bottom: 10px;
        box-shadow: 0 6px 18px rgba(196,134,110,.08);
        align-items: center;
        gap: 12px;
    }

        .ship-step:last-child {
            border: 1px solid rgba(196,134,110,.12);
            margin-bottom: 0;
        }

    .ship-ico {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .ship-t {
        font-size: .88rem;
    }

    .ship-d {
        font-size: .72rem;
        line-height: 1.55;
    }

    /* badges chhote pill-chips, scroll row jaisa */
    .badge-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin-top: 22px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .badge-row::-webkit-scrollbar {
            display: none;
        }

    .sbadge {
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: .62rem;
        white-space: nowrap;
    }

    /* CTA full-width, bottom app-button jaisa */
    .ship-sec .section-cta-bar {
        text-align: center !important;
        padding-top: 26px !important;
    }

    .ship-sec .scta-primary-l {
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 14px 0 !important;
        font-size: .7rem !important;
        letter-spacing: 2px !important;
    }


}
/* ══════════════════════════════════════
   §7  CTA — DARK
══════════════════════════════════════ */
/* ══════════════════════════════════════
   §7  CTA — DARK
══════════════════════════════════════ */
.cta-sec {
    background: linear-gradient(135deg,#080612 0%,#0d1a22 50%,#12080a 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    text-align: center
}

    .cta-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%,rgba(196,134,110,.15) 0%,transparent 55%),radial-gradient(ellipse at 70% 50%,rgba(196,134,110,.12) 0%,transparent 55%)
    }

    .cta-sec .container {
        position: relative;
        z-index: 2
    }

.cta-t {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2rem,4vw,3.6rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 18px
}

.cta-s {
    font-size: .87rem;
    color: var(--mt-d);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.87;
    font-weight: 300
}

.deco {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    margin: 0 auto 20px
}

    .deco::before {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg,transparent,rgba(196,134,110,.4))
    }

    .deco::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(270deg,transparent,rgba(196,134,110,.12))
    }

.deco-t {
    font-size: .55rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(90deg,var(--rg),var(--gd),var(--rg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ── Sticky bottom CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 8000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans',sans-serif;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(196,134,110,.5),0 2px 8px rgba(0,0,0,.3);
    transition: all .3s;
    animation: stickypulse 3s ease-in-out infinite;
}

    .sticky-cta:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 14px 40px rgba(196,134,110,.6);
        color: #fff;
        text-decoration: none;
    }

@keyframes stickypulse {
    0%,100% {
        box-shadow: 0 8px 30px rgba(196,134,110,.5),0 0 0 0 rgba(196,134,110,.3)
    }

    50% {
        box-shadow: 0 8px 30px rgba(196,134,110,.5),0 0 0 8px rgba(196,134,110,0)
    }
}

.sticky-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 1.5s infinite;
    flex-shrink: 0
}



/* ── Mid-page conversion section ── */
.midpage-cta {
    background: linear-gradient(135deg,#0c0906 0%,#1a100a 40%,#0c0906 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius:20px;
}

    .midpage-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center,rgba(196,134,110,.18) 0%,transparent 65%)
    }

.mpc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,134,110,.12);
    border: 1px solid rgba(196,134,110,.28);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: .62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rg-lt);
    margin-bottom: 22px
}

.mpc-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.8rem,3.5vw,3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--tx-d);
    margin-bottom: 14px
}

.mpc-sub {
    font-size: .9rem;
    color: var(--mt-d);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.85;
    font-weight: 300
}

.mpc-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top:20px;
}

/* ── Final CTA block ── */
.final-cta {
    background: linear-gradient(135deg,#120804 0%,#241005 50%,#120804 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .final-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%,rgba(196,134,110,.18) 0%,transparent 55%),radial-gradient(ellipse at 70% 50%,rgba(201,168,76,.12) 0%,transparent 55%)
    }

    .final-cta .container {
        position: relative;
        z-index: 2
    }

.final-cta-deco {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    margin: 0 auto 22px
}

    .final-cta-deco::before {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg,transparent,rgba(196,134,110,.4))
    }

    .final-cta-deco::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(270deg,transparent,rgba(201,168,76,.4))
    }

.final-cta-deco-txt {
    font-size: .55rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(90deg,var(--rg),var(--gd));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap
}

.final-cta-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2rem,4vw,3.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px
}

.final-cta-sub {
    font-size: .9rem;
    color: var(--mt-d);
    max-width: 480px;
    margin: 0 auto 42px;
    line-height: 1.87;
    font-weight: 300
}




/* ── Urgency badge ── */
.urgency-badge{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(239,68,68,.12);border:1px solid rgba(239,68,68,.3);
  border-radius:100px;padding:5px 14px;
  font-size:.62rem;letter-spacing:2px;text-transform:uppercase;
  color:#f87171;font-weight:600;margin-bottom:16px;
  line-height:1.3;
}
.urgency-badge i{animation:blink 1s infinite}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 16px 38px;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans',sans-serif;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .35s;
    box-shadow: 0 10px 35px rgba(196,134,110,.4);
    position: relative;
    overflow: hidden;
}

    .btn-hero-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
        transition: left .5s
    }

    .btn-hero-primary:hover::after {
        left: 100%
    }

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 45px rgba(196,134,110,.55);
        color: #fff;
        text-decoration: none
    }


/* ── Hero secondary CTA ── */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border: 1.5px solid rgba(196,134,110,.38);
    background: rgba(196,134,110,.06);
    color: var(--rg-lt);
    border-radius: 50px;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
}

    .btn-hero-secondary:hover {
        border-color: var(--rg);
        background: rgba(196,134,110,.12);
        color: #fff;
        text-decoration: none
    }


/* ── Trust strip ── */
.trust-strip {
    background: var(--d1);
    border-bottom: 1px solid rgba(196,134,110,.12);
    padding: 20px 0;
}

.ts-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.ts-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(196,134,110,.1);
    border: 1px solid rgba(196,134,110,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--rg-lt);
    flex-shrink: 0
}

.ts-text-main {
    font-family: 'Playfair Display',serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--tx-d);
    display: block;
    line-height: 1
}

.ts-text-sub {
    font-size: .62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mt-d);
    display: block;
    margin-top: 2px
}

.ts-sep {
    width: 1px;
    height: 36px;
    background: rgba(196,134,110,.15);
    margin: auto
}



/* ══════════ ANIMATIONS ══════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fu {
    animation: fadeUp .7s ease-out both
}

.fu2 {
    animation: fadeUp .7s .15s ease-out both
}

.fu3 {
    animation: fadeUp .7s .30s ease-out both
}

.fu4 {
    animation: fadeUp .7s .45s ease-out both
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease,transform .65s ease;
    margin-bottom:5px;
   
}
.steps-title {
    padding-block: 20px !important;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ══════════ RESPONSIVE ══════════ */
@media(max-width:991px) {
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step-line::before {
        display: none
    }
}

@media(max-width:767px) {
    .feat-grid {
        grid-template-columns: 1fr
    }

    .tech-grid {
        grid-template-columns: 1fr
    }

    .hero-in {
        padding: 100px 0 60px
    }

    .fb1, .fb2 {
        display: none
    }

    .plan-tabs {
        justify-content: center
    }

    .ship-img-wrap {
        margin-bottom: 48px
    }
}



/* features grid inside premium */
.feat-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px
}

.feat-mini {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(196,134,110,.13);
    border-radius: 12px;
    padding: 16px 14px
}

.feat-mini-icon {
    font-size: 1.1rem;
    margin-bottom: 8px
}

.feat-mini-t {
    font-size: .9rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
    line-height: 1.2;
    color: #fff;
}

.feat-mini-d {
    font-size: .7rem;
    color: var(--mt-d);
    line-height: 1.6;
    font-weight: 300
}

#pane-ultra h3, #pane-prem h3 {
    color: #fff !important;
}

p {
    margin-bottom: 0 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}
.plan-pane p {
    margin-bottom: 0 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
} 
.ship-t, .step-title {
    font-size: 22px !important;
    line-height: 1.6 !important;
}

.ti-t {
    font-size: 20px !important;
    line-height: 1.5 !important;
}
.tpl-name {
    font-size: 20px !important;
    line-height: 1.4 !important;
    color:#fff !important;
    margin-bottom:0;
}



#pane-ultra .tpl-img-ph {
    height: 470px;
}
/*----30-04-2026*/
/* ── BIG PLAN TABS ── */

.big-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.big-tabs {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(196,134,110,.15);
    border-radius: 20px;
    overflow: visible;
    width: 100%;
    position: relative;
}

/* ── BASE ── */
.btab {
    flex: 1;
    padding: 22px 10px 18px;
    border: none;
    background: transparent;
    font-family: 'DM Sans',sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255,255,255,.05);
    opacity: 1;
}

    .btab:last-child {
        border-right: none
    }

.btab-icon {
    transition: all .3s
}

.btab-label {
    font-weight: 700;
    letter-spacing: 2px;
    transition: all .3s
}

.btab-price {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-weight: 500;
    transition: all .3s
}

.btab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 4px 4px
}

/* FREE */
.btab-free {
    color: rgba(255,255,255,.7);
    font-size: .84rem;
    background: rgba(255,255,255,.04)
}

    .btab-free .btab-icon {
        font-size: 1.5rem;
        color: rgba(255,255,255,.6)
    }

    .btab-free .btab-price {
        font-size: .9rem
    }

    .btab-free.active {
        background: rgba(255,255,255,.09);
        color: #111827;
        border: 1px solid rgba(255,255,255,0.9);
        border-top: 2px solid rgba(255,255,255,0.95);
        box-shadow: 0 0 5px rgba(255,255,255,0.9), 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.6), 0 0 35px rgba(255,255,255,0.35), inset 0 0 10px rgba(255,255,255,0.12);
        transform: translateY(-3px);
        border-radius: 10px;
        transition: all 0.25s ease-in-out;
    }

        .btab-free.active .btab-icon {
            font-size: 1.65rem;
            color: #fff;
            filter: drop-shadow(0 0 7px rgba(255,255,255,.5))
        }

        .btab-free.active .btab-label {
            font-size: .88rem;
            text-shadow: 0 0 10px rgba(255,255,255,.4)
        }

        .btab-free.active .btab-price {
            font-size: .98rem;
            color: #fff
        }

        .btab-free.active::after {
            height: 3px;
            background: linear-gradient(90deg,transparent,rgba(255,255,255,.6),transparent)
        }

/* LITE */
.btab-lite {
    color: #93c5fd;
    font-size: .86rem;
    background: rgba(96,165,250,.08)
}

    .btab-lite .btab-icon {
        font-size: 1.55rem;
        color: #93c5fd
    }

    .btab-lite .btab-price {
        font-size: .92rem
    }

    .btab-lite.active {
        background: linear-gradient(160deg,rgba(96,165,250,.22),rgba(96,165,250,.07));
        color: #bfdbfe;
        background: linear-gradient(160deg, rgba(96, 165, 250, .28), rgba(96, 165, 250, .10) );
        color: #bfdbfe;
        border-top: 2px solid rgba(147, 197, 253, .9);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), inset 0 -1px 0 rgba(0, 0, 0, .25), 0 10px 22px rgba(0, 0, 0, .18), 0 3px 10px rgba(96, 165, 250, .25);
        transform: translateY(-3px);
        border-radius: 10px;
        transition: all 0.25s ease;
        color: #111827;
        border: 1px solid #00f5ff;
        border-top: 2px solid #00f5ff;
        box-shadow: 0 0 5px rgba(0, 245, 255, 0.8), 0 0 10px rgba(0, 245, 255, 0.7), 0 0 20px rgba(0, 245, 255, 0.6), 0 0 40px rgba(0, 245, 255, 0.4), inset 0 0 8px rgba(0, 245, 255, 0.15);
        transform: translateY(-3px);
        border-radius: 10px;
        transition: all 0.25s ease-in-out;
    }

        .btab-lite.active .btab-icon {
            font-size: 1.72rem;
            color: #bfdbfe;
            filter: drop-shadow(0 0 10px rgba(96,165,250,.75))
        }

        .btab-lite.active .btab-label {
            font-size: .9rem;
            text-shadow: 0 0 12px rgba(96,165,250,.5)
        }

        .btab-lite.active .btab-price {
            font-size: 1rem;
            color: #dbeafe
        }

        .btab-lite.active::after {
            height: 3px;
            background: linear-gradient(90deg,transparent,#60a5fa,#bfdbfe,#60a5fa,transparent)
        }

/* STANDARD — silver metallic */
.btab-std {
    color: #e2e8f0;
    font-size: .88rem;
    background: rgba(148,163,184,.1)
}

    .btab-std .btab-icon {
        font-size: 1.6rem;
        color: #e2e8f0
    }

    .btab-std .btab-price {
        font-size: .94rem
    }

    .btab-std.active {
        background: linear-gradient(160deg,rgba(226,232,240,.18),rgba(148,163,184,.08));
        color: #f1f5f9;
        box-shadow: inset 0 0 28px rgba(226,232,240,.06);
    }

        .btab-std.active .btab-icon {
            font-size: 1.75rem;
            color: #fff;
            filter: drop-shadow(0 0 12px rgba(226,232,240,.7))
        }

        .btab-std.active .btab-label {
            font-size: .92rem;
            text-shadow: 0 0 12px rgba(226,232,240,.45)
        }

        .btab-std.active .btab-price {
            font-size: 1rem;
            color: #f1f5f9
        }

        .btab-std.active::after {
            height: 3px;
            background: linear-gradient(90deg,transparent,#94a3b8,#f1f5f9,#94a3b8,transparent)
        }

/* PREMIUM — gold */
.btab-prem {
    color: #fde68a;
    font-size: .9rem;
    padding: 24px 10px 20px;
    background: linear-gradient(160deg,rgba(201,168,76,.14),rgba(201,168,76,.05));
}

    .btab-prem .btab-icon {
        font-size: 1.7rem;
        color: #fde68a;
        filter: drop-shadow(0 0 5px rgba(201,168,76,.4))
    }

    .btab-prem.active {
        background: linear-gradient(160deg,rgba(201,168,76,.3),rgba(201,168,76,.1));
        color: #fef3c7;
        box-shadow: inset 0 0 36px rgba(201,168,76,.14),0 0 20px rgba(201,168,76,.1);
        color: #fde68a;
        font-size: .9rem;
        padding: 24px 10px 20px;
        background: linear-gradient(160deg, rgba(201, 168, 76, .22), rgba(201, 168, 76, .06) );
        border-top: 2px solid rgba(253, 230, 138, .35);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 -1px 0 rgba(0, 0, 0, .25), 0 10px 24px rgba(0, 0, 0, .18), 0 4px 12px rgba(201, 168, 76, .18);
        border-radius: 10px;
        transform: translateY(-2px);
        transition: all 0.25s ease;
        box-shadow: 0 0 5px rgba(251, 191, 36, 0.9), 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.7), 0 0 35px rgba(251, 191, 36, 0.5), inset 0 0 10px rgba(251, 191, 36, 0.15);
        transform: translateY(-3px);
        border-radius: 10px;
        transition: all 0.25s ease-in-out;
    }

        .btab-prem.active .btab-icon {
            font-size: 1.9rem;
            color: #fef3c7;
            filter: drop-shadow(0 0 14px rgba(201,168,76,.85))
        }

        .btab-prem.active .btab-label {
            font-size: .96rem;
            text-shadow: 0 0 16px rgba(201,168,76,.65)
        }

        .btab-prem.active .btab-price {
            font-size: 1.08rem
        }

        .btab-prem.active::after {
            height: 4px;
            background: linear-gradient(90deg,transparent,var(--gd-dk),var(--gd-lt),#fff9e6,var(--gd-lt),var(--gd-dk),transparent)
        }




.btab-price {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    transition: all .3s;
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    font-size:18px;
}

.btab-price {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    transition: all .3s;
}
.btab-free .btab-price {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .15);
}
.btab-prem .btab-price {
    background: rgba(201, 168, 76, .15);
    border: 1px solid rgba(201, 168, 76, .35);
    background: linear-gradient(90deg, var(--gd-lt), var(--gd), var(--gd-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 1px solid rgba(201, 168, 76, .35);
    padding: 4px 12px;
}
.btab-lite .btab-price {
    background: rgba(96, 165, 250, .15);
    color: #93c5fd;
    border: 1px solid rgba(96, 165, 250, .3);
}


.btab-ultra .btab-price {
    border: 1px solid rgba(196, 134, 110, .4);
    background: rgba(196, 134, 110, .1);
    background: linear-gradient(90deg, var(--rg-dk), var(--rg), var(--gd));
    animation: ultraPriceShimmer 2s linear infinite;
    border: 1px solid rgba(196, 134, 110, .4);
    padding: 4px 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}



/* ULTRA LUXURY — rose gold, matches pane-ultra dark bg */
.btab-ultra {
    color: var(--rg-lt);
    font-size: .95rem;
    padding: 26px 12px 20px;
    background: linear-gradient(160deg,#2a1209,#1e0e07,rgba(196,134,110,.12));
    border-left: 1px solid rgba(196,134,110,.3);
    border-radius: 0 18px 18px 0;
    position: relative;
    border-top: 2px solid rgba(196,134,110,.4);
    box-shadow: inset 0 0 30px rgba(196,134,110,.08),0 2px 16px rgba(0,0,0,.3);
    z-index: 2;
}

    .btab-ultra::before {
        content: '\2605 BEST';
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg,var(--rg-dk),var(--rg),var(--gd));
        color: #fff;
        font-size: .54rem;
        letter-spacing: 2.5px;
        font-weight: 800;
        padding: 4px 12px;
        border-radius: 100px;
        white-space: nowrap;
        box-shadow: 0 3px 14px rgba(196,134,110,.55);
        font-family: 'DM Sans',sans-serif;
        text-transform: uppercase;
    }

    .btab-ultra .btab-icon {
        font-size: 1.9rem;
        color: var(--rg-lt);
        filter: drop-shadow(0 0 8px rgba(196,134,110,.65)) drop-shadow(0 0 3px rgba(201,168,76,.3));
        animation: ultraIconPulse 2.5s ease-in-out infinite;
    }

@keyframes ultraIconPulse {
    0%,100% {
        filter: drop-shadow(0 0 6px rgba(196,134,110,.6)) drop-shadow(0 0 2px rgba(201,168,76,.25))
    }

    50% {
        filter: drop-shadow(0 0 18px rgba(196,134,110,1)) drop-shadow(0 0 8px rgba(201,168,76,.55))
    }
}

.btab-ultra .btab-label {
    color: #f0c4b4;
    font-size: .95rem;
    letter-spacing: 2px
}

.btab-ultra:hover {
    background: linear-gradient(160deg,#351408,#241008,rgba(196,134,110,.18));
    box-shadow: inset 0 0 40px rgba(196,134,110,.12),0 4px 20px rgba(0,0,0,.4);
}

.btab-ultra.active {
    background: linear-gradient(160deg,#3d1609,#2a1008,rgba(196,134,110,.22));
    border-top: 2px solid rgba(196,134,110,.75);
    box-shadow: inset 0 0 50px rgba(196,134,110,.18), inset 0 0 20px rgba(201,168,76,.08), 0 0 30px rgba(196,134,110,.15), 0 4px 24px rgba(0,0,0,.45);
    background: rgba(255,255,255,.09);
    color: #111827;
    border: 1px solid #e8b4b8;
    border-top: 2px solid #e8b4b8;
    box-shadow: 0 0 5px rgba(232, 180, 184, 0.9), 0 0 10px rgba(232, 180, 184, 0.8), 0 0 20px rgba(232, 180, 184, 0.6), 0 0 35px rgba(232, 180, 184, 0.4), inset 0 0 10px rgba(232, 180, 184, 0.15);
    transform: translateY(-3px);
    border-radius: 10px;
    transition: all 0.25s ease-in-out;
}

    .btab-ultra.active .btab-icon {
        font-size: 2.2rem;
        animation: none;
        color: #f8ddd0;
        filter: drop-shadow(0 0 20px rgba(196,134,110,1)) drop-shadow(0 0 8px rgba(201,168,76,.7)) drop-shadow(0 0 40px rgba(196,134,110,.5));
    }

    .btab-ultra.active .btab-label {
        font-size: 1rem;
        letter-spacing: 2.5px;
        color: #f8ddd0;
        text-shadow: 0 0 12px rgba(196,134,110,1),0 0 28px rgba(196,134,110,.6),0 0 50px rgba(196,134,110,.3);
    }

    .btab-ultra.active .btab-price {
        font-size: 1.18rem;
        animation: ultraPriceShimmer 1.5s linear infinite
    }

    .btab-ultra.active::after {
        height: 6px;
        background: linear-gradient(90deg,transparent,var(--rg-dk),var(--rg),var(--rg-lt),#fff8f4,var(--rg-lt),var(--rg),var(--rg-dk),transparent);
        box-shadow: 0 0 14px rgba(196,134,110,.8),0 0 28px rgba(196,134,110,.4);
        border-radius: 0 0 4px 4px;
    }


/* ── TEMPLATE SLIDER ── */
.tpl-section {
    margin-top: 4px
}

.tpl-heading {
    text-align: center;
    margin-bottom: 16px
}

    .tpl-heading h3 {
        font-family: 'Playfair Display',serif;
        font-size: 1.3rem;
        font-weight: 400;
        margin-bottom: 5px
    }

    .tpl-heading p {
        font-size: .78rem;
        color: var(--mt-d);
        font-weight: 300;
        margin: 0
    }

/* download/print banner — blue to match lite pane */
.dl-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(96,165,250,.1);
    border: 1px solid rgba(96,165,250,.3);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom:2px;
    font-size: .72rem;
    color: #93c5fd;
    letter-spacing: 1.5px
}

    .dl-banner i {
        font-size: .9rem
    }

.tpl-slider-wrap {
    position: relative;
    overflow: hidden
}

.tpl-slider {
    display: flex;
    gap: 22px;
    transition: transform .4s ease;
    padding: 10px 4px 24px
}

/* BASE card — neutral */
.tpl-card {
    flex: 0 0 230px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 2px solid rgba(255,255,255,.08);
    cursor: pointer;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#pane-prem .tpl-card {
    min-height: 620px;
}
/* Per-pane card colors matching tab */
#pane-free .tpl-card {
    border-color: rgba(255,255,255,.1)
}

    #pane-free .tpl-card:hover {
        border-color: rgba(255,255,255,.4);
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(0,0,0,.45)
    }

    #pane-free .tpl-card.selected {
        border-color: #e2e8f0;
        box-shadow: 0 0 0 3px rgba(226,232,240,.2),0 24px 60px rgba(0,0,0,.45)
    }

        #pane-free .tpl-card.selected::after {
            color: #e2e8f0
        }

#pane-lite .tpl-card {
    border-color: rgba(96,165,250,.18)
}

    #pane-lite .tpl-card:hover {
        border-color: rgba(96,165,250,.55);
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(96,165,250,.12)
    }

    #pane-lite .tpl-card.selected {
        border-color: #60a5fa;
        box-shadow: 0 0 0 3px rgba(96,165,250,.25),0 24px 60px rgba(96,165,250,.12)
    }

        #pane-lite .tpl-card.selected::after {
            color: #60a5fa
        }

#pane-std .tpl-card {
    border-color: rgba(148,163,184,.2)
}

    #pane-std .tpl-card:hover {
        border-color: rgba(226,232,240,.5);
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(148,163,184,.15)
    }

    #pane-std .tpl-card.selected {
        border-color: #e2e8f0;
        box-shadow: 0 0 0 3px rgba(226,232,240,.2),0 24px 60px rgba(148,163,184,.15)
    }

        #pane-std .tpl-card.selected::after {
            color: #e2e8f0
        }

#pane-prem .tpl-card {
    border-color: rgba(201,168,76,.2)
}

    #pane-prem .tpl-card:hover {
        border-color: rgba(201,168,76,.55);
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(201,168,76,.12)
    }

    #pane-prem .tpl-card.selected {
        border-color: var(--gd);
        box-shadow: 0 0 0 3px rgba(201,168,76,.25),0 24px 60px rgba(201,168,76,.12)
    }

        #pane-prem .tpl-card.selected::after {
            color: var(--gd)
        }

#pane-ultra .tpl-card {
    border-color: rgba(196,134,110,.2)
}

    #pane-ultra .tpl-card:hover {
        border-color: rgba(196,134,110,.55);
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(196,134,110,.18)
    }

    #pane-ultra .tpl-card.selected {
        border-color: var(--rg);
        box-shadow: 0 0 0 3px rgba(196,134,110,.25),0 24px 60px rgba(196,134,110,.18)
    }

        #pane-ultra .tpl-card.selected::after {
            color: var(--rg)
        }

.tpl-card.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 1.3rem;
    z-index: 3
}

.tpl-badge {
    position: absolute;
    top: 12px;
    left: 14px;
    color: #fff;
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    z-index: 3;
    font-weight: 600;
    line-height:1.5;
    border:1px solid #fff;
}

.tpl-img-wrap {
    width: 100%;
    height: 370px;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 0px;
    flex-shrink: 0;
}

.tpl-img-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(.55);
    transform: scale(1.08);
    z-index: 0
}

.tpl-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transform: translateZ(0); /* GPU render */
    backface-visibility: hidden;
}

.tpl-img-ph {
    width: 100%;
    height: 370px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-size: .62rem;
    letter-spacing: 2px;
    text-transform: uppercase
}

.tpl-img-ph {
    height: 340px;
}
.tpl-info {
    padding: 16px 16px 4px ;
    flex: 1;
}

.tpl-name {
    font-family: 'Playfair Display',serif;
    font-size: 1.15rem;
    margin-bottom: 0px
}

.tpl-sub {
    font-size: .8rem;
    color: var(--mt-d);
    font-weight: 300;
    margin-bottom: 4px
}

.tpl-price-tag {
    font-family: 'Playfair Display',serif;
    font-size: 1.05rem;
    font-weight: 400;
    margin-top:0px;
    padding: 4px 0
}

#pane-prem .tpl-price-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #b45309;
    margin-top: 8px;
    padding: 8px 16px;
    background: linear-gradient( 135deg, rgba(255, 248, 220, 0.95), rgba(255, 237, 213, 0.95) ) !important;
    border: 1px solid rgba(251, 191, 36, 0.45);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #b45309 !important;
}

#pane-lite .tpl-price-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    padding: 8px 16px;
    margin-top: 8px;
    background: rgba(96, 165, 250, 0.12) !important;
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.18), 0 4px 12px rgba(96, 165, 250, 0.12), inset 0 1px 0 rgba(255,255,255,.8);
    letter-spacing: .3px;
}

#pane-ultra .tpl-price-tag {
    display: inline-flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #9f4d5a;
    margin-top: 8px;
    padding: 8px 16px;
    background: linear-gradient( 135deg, rgba(255, 245, 246, 0.95), rgba(252, 231, 243, 0.95) ) !important;
    border: 1px solid rgba(232, 180, 184, 0.6);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.18), inset 0 1px 0 rgba(255,255,255,.8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #9f4d5a !important
}

/* Slider nav — per pane colors */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

    .slider-arrow:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.35)
    }

#pane-lite .slider-arrow {
    border-color: rgba(96,165,250,.3);
    color: #93c5fd
}

    #pane-lite .slider-arrow:hover {
        background: rgba(96,165,250,.12);
        border-color: #60a5fa
    }

#pane-std .slider-arrow {
    border-color: rgba(148,163,184,.3);
    color: #cbd5e1
}

    #pane-std .slider-arrow:hover {
        background: rgba(148,163,184,.12);
        border-color: #e2e8f0
    }

#pane-prem .slider-arrow {
    border-color: rgba(201,168,76,.3);
    color: var(--gd-lt)
}

    #pane-prem .slider-arrow:hover {
        background: rgba(201,168,76,.12);
        border-color: var(--gd)
    }

#pane-ultra .slider-arrow {
    border-color: rgba(196,134,110,.3);
    color: var(--rg-lt)
}

    #pane-ultra .slider-arrow:hover {
        background: rgba(196,134,110,.12);
        border-color: var(--rg)
    }

.slider-dots {
    display: flex;
    gap: 7px;
    align-items: center
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    cursor: pointer;
    transition: all .3s
}

    .sdot.on {
        width: 24px;
        border-radius: 4px;
        background: rgba(255,255,255,.5)
    }

#pane-lite .sdot {
    background: rgba(96,165,250,.2)
}

    #pane-lite .sdot.on {
        background: #60a5fa
    }

#pane-std .sdot {
    background: rgba(148,163,184,.2)
}

    #pane-std .sdot.on {
        background: #e2e8f0
    }

#pane-prem .sdot {
    background: rgba(201,168,76,.2)
}

    #pane-prem .sdot.on {
        background: var(--gd)
    }

#pane-ultra .sdot {
    background: rgba(196,134,110,.2)
}

    #pane-ultra .sdot.on {
        background: var(--rg)
    }

/* More info btn — per pane */
.tpl-more-btn {
    width: 100%;
    padding: 11px;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #fff;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    display: block;
    text-align: center;
    font-family: 'DM Sans',sans-serif;
    margin-top: 8px
}




#pane-free .tpl-more-btn {
    border-top-color: rgba(96,165,250,.2);
    background: rgb(20 103 50);
    color: #fff;
}

    #pane-free .tpl-more-btn:hover {
        background: rgba(20,105,50,0.8);
        color: #fff;
    }



#pane-lite .tpl-more-btn {
    border-top-color: rgba(96,165,250,.2);
    color: #fff;
    background: linear-gradient(160deg, rgba(96, 165, 250, .28), rgba(96, 165, 250, .10));
}

    #pane-lite .tpl-more-btn:hover {
        background: rgba(96,165,250,.1);
        color: #bfdbfe
    }

#pane-std .tpl-more-btn {
    border-top-color: rgba(148,163,184,.2);
    color: #cbd5e1
}

    #pane-std .tpl-more-btn:hover {
        background: rgba(148,163,184,.1);
        color: #f1f5f9
    }

#pane-prem .tpl-more-btn {
    border-top-color: rgba(201,168,76,.2);
    color: var(--gd-lt);
    background: linear-gradient(160deg, rgba(201, 168, 76, .22), rgba(201, 168, 76, .06));
}

    #pane-prem .tpl-more-btn:hover {
        background: rgba(201,168,76,.1);
        color: #fef3c7
    }

#pane-ultra .tpl-more-btn {
    border-top-color: rgba(196,134,110,.2);
    color: var(--rg-lt) !important;
}

    #pane-ultra .tpl-more-btn:hover {
        background: rgba(196,134,110,.1);
        color: #fff
    }

/* CTA bar */
.plan-cta-bar {
    margin-top: 40px;
    padding: 30px 36px;
    background: rgba(196,134,110,.07);
    border: 1px solid rgba(196,134,110,.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    transition: all .35s
}

    .plan-cta-bar.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px)
    }

/* Plan detail strip */
.plan-detail-strip {
    margin-top: 28px;
    padding: 24px 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--bdr);
    border-radius: 16px
}

.pds-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0
}

    .pds-spec-item i {
        font-size: 1rem;
        margin-top: 2px;
        flex-shrink: 0
    }

.pds-spec-label {
    display: block;
    font-size: .58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mt-d);
    margin-bottom: 2px;
    font-weight: 500
}

.pds-spec-val {
    display: block;
    font-size: .8rem;
    color: var(--tx-d);
    font-weight: 300
}

.pds-block {
    border-radius: 10px;
    padding: 16px 18px;
    height: 100%
}

    .pds-block.pds-yes {
        background: rgba(196,134,110,.06);
        border: 1px solid rgba(196,134,110,.15)
    }

    .pds-block.pds-no {
        background: rgba(239,68,68,.04);
        border: 1px solid rgba(239,68,68,.12)
    }

.pds-label {
    font-size: .6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px
}

.pds-block.pds-yes .pds-label {
    color: var(--rg-lt)
}

.pds-block.pds-no .pds-label {
    color: #f87171
}

.pds-block ul {
    list-style: none;
    padding: 0;
    margin: 0
}

    .pds-block ul li {
        font-size: .8rem;
        color: var(--mt-d);
        padding: 5px 0;
        border-bottom: 1px solid rgba(255,255,255,.04);
        font-weight: 300
    }

        .pds-block ul li:last-child {
            border: none
        }

.pds-block.pds-yes ul li::before {
    content: '✓  ';
    color: var(--rg);
    font-weight: 600
}

.pds-block.pds-no ul li::before {
    content: '✕  ';
    color: #f87171;
    font-weight: 600
}

.plan-cta-selected {
    display: flex;
    align-items: center;
    gap: 18px
}

.plan-cta-thumb {
    width: 76px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid rgba(196,134,110,.3);
    background: rgba(196,134,110,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: rgba(196,134,110,.5);
    flex-shrink: 0
}

.plan-cta-tname {
    font-family: 'Playfair Display',serif;
    font-size: 1.25rem;
    margin-bottom: 4px
}

.plan-cta-tdesc {
    font-size: .88rem;
    color: var(--mt-d);
    font-weight: 300
}

.btn-big-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display',serif;
    font-size: 1.15rem;
    font-style: italic;
    cursor: pointer;
    transition: all .35s;
    text-decoration: none;
    white-space: nowrap
}

    .btn-big-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 45px rgba(196,134,110,.45);
        color: #fff;
        text-decoration: none
    }

    .btn-big-cta i {
        font-style: normal
    }

/* MODAL — rose gold border + glow */
/*.info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(12px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

    .info-modal-overlay.open {
        display: flex
    }

.info-modal {
    background: linear-gradient(135deg,#1e1208,#160e06);
    border: 1px solid rgba(196,134,110,.38);
    border-radius: 22px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    position: relative;
    box-shadow: 0 0 0 1px rgba(201,168,76,.1),0 0 40px rgba(196,134,110,.2),0 0 80px rgba(196,134,110,.08),0 40px 80px rgba(0,0,0,.6);
}

    .info-modal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg,transparent,var(--rg),var(--gd-lt),var(--rg),transparent);
        box-shadow: 0 0 16px rgba(196,134,110,.6)
    }

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(196,134,110,.3);
    background: rgba(196,134,110,.06);
    color: var(--mt-d);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    z-index: 2
}

    .modal-close:hover {
        background: rgba(196,134,110,.18);
        color: var(--tx-d);
        border-color: var(--rg)
    }

.modal-left {
    flex: 0 0 55%;
    padding: 48px 44px;
    border-right: 1px solid rgba(196,134,110,.12)
}

.modal-right {
    flex: 1;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(196,134,110,.04);
    border-radius: 0 22px 22px 0
}

.modal-right-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5),0 0 40px rgba(196,134,110,.15);
    border: 1px solid rgba(196,134,110,.2)
}

.modal-img-ph {
    width: 100%;
    min-height: 290px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg,#2a1209,#1a1408);
    border: 1px solid rgba(196,134,110,.2);
    box-shadow: inset 0 0 30px rgba(196,134,110,.06)
}
*/


/* MODAL — light theme */
.info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .info-modal-overlay.open {
        display: flex;
    }

.info-modal {
    background: linear-gradient(135deg, #fff 0%, #fdf6f2 100%);
    border: 1px solid rgba(196,134,110,.25);
    border-radius: 22px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    position: relative;
    box-shadow: 0 0 0 1px rgba(201,168,76,.12), 0 0 40px rgba(196,134,110,.12), 0 40px 80px rgba(0,0,0,.15);
}

    .info-modal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 2px;
        border-radius: 100px;
        background: linear-gradient(90deg, transparent, var(--rg), var(--gd-lt), var(--rg), transparent);
        box-shadow: 0 0 12px rgba(196,134,110,.35);
    }

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(196,134,110,.25);
    background: rgba(196,134,110,.08);
    color: #8A5240;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    z-index: 2;
}

    .modal-close:hover {
        background: rgba(196,134,110,.18);
        color: #5a2d1a;
        border-color: var(--rg);
    }

.modal-left {
    flex: 0 0 55%;
    padding: 48px 44px;
    border-right: 1px solid rgba(196,134,110,.12);
    color: #1a0e08;
}

.modal-right {
    flex: 1;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #fdf0ea, #faf5f0);
    border-radius: 0 22px 22px 0;
    border-left: 1px solid rgba(196,134,110,.1);
}

.modal-right-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(196,134,110,.15), 0 2px 8px rgba(0,0,0,.08);
    border: 1px solid rgba(196,134,110,.2);
}

.modal-img-ph {
    width: 100%;
    min-height: 290px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #fdf0ea, #f5e6df);
    border: 1px solid rgba(196,134,110,.2);
    box-shadow: inset 0 0 30px rgba(196,134,110,.05);
}

/* nfc dispatch banner */
.nfc-dispatch-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,rgba(201,168,76,.12),rgba(196,134,110,.08));
    border: 1px solid rgba(201,168,76,.35);
    border-radius: 10px;
    padding: 9px 14px;
    margin-bottom: 12px
}

    .nfc-dispatch-banner i {
        color: var(--gd-lt);
        font-size: .95rem;
        flex-shrink: 0
    }

    .nfc-dispatch-banner span {
        font-size: .73rem;
        color: var(--gd-lt);
        line-height: 1.45;
        font-weight: 500
    }

/* premium feel section */
.prem-feel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom:1px;
    border: 1px solid
}

.pft-gold {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.35);
    color: var(--gd-lt)
}

.pft-ultra {
    background: rgba(249,212,74,.08);
    border-color: rgba(249,212,74,.4);
    color: #f9d44a
}

.feat-mini {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(196,134,110,.13);
    border-radius: 12px;
    padding: 18px 16px
}

.feat-mini-icon {
    font-size: 1.2rem;
    margin-bottom: 10px
}

.feat-mini-t {
    font-family: 'Playfair Display',serif;
    font-size: .95rem;
    margin-bottom: 5px
}

.feat-mini-d {
    font-size: .78rem;
    color: var(--mt-d);
    line-height: 1.65;
    font-weight: 300
}

.prem-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#2a1209,#1a0c07);
    border: 1px dashed rgba(196,134,110,.3)
}

    .prem-img-box img {
        width: 100%;
        border-radius: 20px;
        display: block;
        position: relative;
        z-index: 2
    }

.prem-img-cap {
    text-align: center;
    margin-top: 14px;
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mt-d)
}

.ultra-gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: linear-gradient(135deg,#b7791f,#f9d44a,#b7791f);*/
    background: linear-gradient(90deg, var(--rg-dk), var(--rg), var(--gd));
    color: #1a0c04;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
    
}

.freebad {
    background: linear-gradient(135deg, rgb(223 237 255 / 10%), rgba(59, 130, 246, .06)) !important;
    border-color: rgb(242 246 251 / 30%) !important;
    color: #fcfdff !important;
}

@media(max-width:991px) {
    .big-tabs {
        flex-wrap: wrap
    }

    .btab {
        flex: 0 0 33.333%;
        border-bottom: 1px solid rgba(196,134,110,.1)
    }
}

@media(max-width:767px) {
    .big-tabs {
        flex-direction: column;
        border-radius: 14px
    }

    .btab {
        border-right: none;
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px 20px;
        gap: 14px
    }

        .btab:last-child {
            border-bottom: none
        }

        .btab.active::after {
            top: 0;
            left: 0;
            right: auto;
            bottom: 0;
            width: 3px;
            height: auto
        }

    .tpl-card {
        flex: 0 0 190px
    }

    .info-modal {
        flex-direction: column
    }

    .modal-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(196,134,110,.12);
        padding: 28px 24px
    }

    .modal-right {
        border-radius: 0 0 22px 22px;
        padding: 24px
    }

    .plan-cta-bar {
        flex-direction: column;
        text-align: center
    }
}


.tpl-img-wrap {
    position: relative;
    overflow: hidden;
}

    .tpl-img-wrap img {
        width: 100%;
        display: block;
        transition: all .4s ease;
    }

/* Default Image */
.main-img {
    opacity: 1;
}

/* Hover Image */
.tpl-hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* Hover Effect */
.tpl-img-wrap:hover .main-img {
    opacity: 0;
    transform: scale(1.05);
}

.tpl-img-wrap:hover .tpl-hover-img {
    opacity: 1;
    transform: scale(1.05);
}



/*-----------Grid--------------*/
@media (min-width: 768px) {
    .container {
        max-width: 750px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px !important;
    }
}

/* NEW - large screens ke liye */
@media (min-width: 1400px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1320px !important;
    }
    .tpl-img-wrap {
        height:304px;

    }
    #pane-ultra .tpl-img-ph {
        height: 304px;
    }
    #sliderUltra .tpl-img-wrap {
        height: 304px;
    }
}

@media (min-width: 1600px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1450px !important;
    }
}

@media (min-width: 1800px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1600px !important;
    }
}

/* responsive */
@media (max-width: 767px) {
    .hero-in {
        padding: 0 20px 40px;
    }
}

@media (max-width: 450px) {
    .ts-text-sub {
        line-height: 1.5;
    }
    .hero-in {
        padding: 0 20px 20px;
    }
    .big-tabs {
        display: block;
 }
    .pds-spec-item {
        padding: 2px 0;
    }
    .pds-block.pds-no {
        margin-top: 15px;
    }
    .btab-icon {
        font-size: 1.2rem;
    }
    .btab-label {
        font-size: .78rem;
    }
    }

/*new footer desing*/


/* Plan detail strip */
/* ── PREMIUM tpl-info plan features ── */
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .56rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    border: 1px solid
}

.pb-bronze {
    background: rgba(180,120,60,.1);
    border-color: rgba(180,120,60,.3);
    color: #92521a
}

.pb-silver {
    background: rgba(148,163,184,.1);
    border-color: rgba(148,163,184,.3);
    color: #4a5568
}

.pb-gold {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.32);
    color: var(--gd-dk)
}

.pb-dual {
    background: rgba(196,134,110,.1);
    border-color: rgba(196,134,110,.28);
    color: var(--rg-dk)
}

.card-feat-list {
    padding: 0;
    margin: 8px 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

    .card-feat-list li {
        position: relative
    }

.card-feat-link {
    font-size: .64rem;
    color: var(--gd-dk);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    cursor: default;
    letter-spacing: .3px;
    transition: color .2s;
    text-decoration-color: rgba(201,168,76,.4);
    white-space: nowrap
}

    .card-feat-link:hover {
        color: var(--rg-dk);
        text-decoration-color: var(--rg)
    }

.feat-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1a0e08;
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 8px;
    padding: 10px 14px;
    width: 210px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s,transform .22s;
    box-shadow: 0 8px 28px rgba(0,0,0,.45)
}

.card-feat-list li:hover .feat-tip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.feat-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a0e08
}

.feat-tip-title {
    font-size: .6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gd-lt);
    font-weight: 600;
    margin-bottom: 5px
}

.feat-tip-body {
    font-size: .72rem;
    color: rgba(253,240,234,.7);
    line-height: 1.58;
    font-weight: 300
}

.works-without {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .6rem;
    color: #4ade80;
    letter-spacing: .5px;
    background: rgba(74,222,128,.07);
    border: 1px solid rgba(74,222,128,.2);
    border-radius: 100px;
    padding: 3px 10px;
    margin-top: 5px;
    line-height:1.2;
}

    .works-without i {
        font-size: .55rem
    }

.sep-dot {
    color: rgba(201,168,76,.3);
    margin: 0 2px;
    font-size: .55rem
}

.plan-detail-strip {
    margin-top: 28px;
    padding: 24px 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--bdr);
    border-radius: 16px
}

.pds-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0
}

    .pds-spec-item i {
        font-size: 1rem;
        margin-top: 2px;
        flex-shrink: 0
    }

.pds-spec-label {
    display: block;
    font-size: .58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mt-d);
    margin-bottom: 2px;
    font-weight: 500
}

.pds-spec-val {
    display: block;
    font-size: .8rem;
    color: var(--tx-d);
    font-weight: 300
}

.pds-block {
    border-radius: 10px;
    padding: 16px 18px;
    height: 100%
}

    .pds-block.pds-yes {
        background: rgba(196,134,110,.06);
        border: 1px solid rgba(196,134,110,.15)
    }

    .pds-block.pds-no {
        background: rgba(239,68,68,.04);
        border: 1px solid rgba(239,68,68,.12)
    }

.pds-label {
    font-size: .6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px
}

.pds-block.pds-yes .pds-label {
    color: var(--rg-lt)
}

.pds-block.pds-no .pds-label {
    color: #f87171
}

.pds-block ul {
    list-style: none;
    padding: 0;
    margin: 0
}

    .pds-block ul li {
        font-size: .8rem;
        color: var(--mt-d);
        padding: 5px 0;
        border-bottom: 1px solid rgba(255,255,255,.04);
        font-weight: 300
    }

        .pds-block ul li:last-child {
            border: none
        }

.pds-block.pds-yes ul li::before {
    content: '✓  ';
    color: var(--rg);
    font-weight: 600
}

.pds-block.pds-no ul li::before {
    content: '✕  ';
    color: #f87171;
    font-weight: 600
}

.plan-cta-selected {
    display: flex;
    align-items: center;
    gap: 18px
}

.plan-cta-thumb {
    width: 76px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid rgba(196,134,110,.3);
    background: rgba(196,134,110,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: rgba(196,134,110,.5);
    flex-shrink: 0
}

.plan-cta-tname {
    font-family: 'Playfair Display',serif;
    font-size: 1.25rem;
    margin-bottom: 4px
}

.plan-cta-tdesc {
    font-size: .88rem;
    color: var(--mt-d);
    font-weight: 300
}

.btn-big-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display',serif;
    font-size: 1.15rem;
    font-style: italic;
    cursor: pointer;
    transition: all .35s;
    text-decoration: none;
    white-space: nowrap
}

    .btn-big-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 45px rgba(196,134,110,.45);
        color: #fff;
        text-decoration: none
    }

    .btn-big-cta i {
        font-style: normal
    }


    /*-------------05-06-2026------hero banner slider*/

.hn-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0c0806;
    overflow: hidden;
    padding: 80px 0
}

/* ── Image: big, full column width, no border ── */
.hn-img {
    width: 100%;
    /*aspect-ratio: 1 / 1;*/
    position: relative;
    overflow: hidden;
    border-radius: 12px
}

.hn-img-bg {
    position: absolute;
    inset: -8px;
    background-size: cover;
    background-position: center;
    filter: blur(16px) brightness(.4);
    transform: scale(1.12);
    z-index: 0
}

.hn-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.hn-img-ph {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(196,134,110,.28);
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase
}

    .hn-img-ph i {
        font-size: 2.2rem
    }

/* ── Meta below image: no box, no border, just text + btn ── */
.hn-meta {
    margin-top: 16px;
    padding: 0 2px
}

.hn-badge {
    font-size: .58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    opacity: .7
}

.hn-free {
    color: #4ade80
}

.hn-lite {
    color: #60a5fa
}

.hn-prem {
    color: #C9A84C
}

.hn-ultra {
    color: #E8B4A0
}

.hn-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #f0e8e0;
    line-height: 1.2;
    margin-bottom: 12px
}

/* ── Plan-colored buttons ── */
.hn-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s,transform .2s;
    border: none;
    width: 100%
}

    .hn-btn:hover {
        opacity: .82;
        transform: translateY(-2px);
        text-decoration: none
    }

.hn-btn-free {
    background: #4ade80;
    color: #fff !important;
    outline: 1px solid rgba(74,222,128,.28)
}

.hn-btn-lite {
    background: #60a5fa;
    color: #fff !important;
    outline: 1px solid rgba(96,165,250,.28)
}

.hn-btn-prem {
    background: #C9A84C;
    color: #fff !important;
    outline: 1px solid rgba(201,168,76,.28)
}

.hn-btn-ultra {
    background: #E8B4A0;
    color: #fff !important;
    outline: 1px solid rgba(196,134,110,.28)
}

/* ── Owl dots only ── */
.hn-carousel .owl-dots {
    margin-top: 18px;
    text-align: center
}

.hn-carousel .owl-dot span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(196,134,110,.18);
    margin: 0 4px;
    transition: all .3s
}

.hn-carousel .owl-dot.active span {
    background: rgba(196,134,110,.65);
    width: 20px;
    border-radius: 3px
}

.hn-carousel .owl-nav {
    display: none
}

/* slide padding for owl */
.hn-slide {
    padding: 0 8px
}

.dap-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid rgba(196,134,110,.28);
    background: rgba(12,8,6,.75);
    backdrop-filter: blur(10px);
    font-size: .62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #E8B4A0;
    white-space: nowrap;
}

.dap-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C4866E;
    box-shadow: 0 0 0 3px rgba(196,134,110,.2);
    flex-shrink: 0;
    animation: dap-pulse 2s ease-in-out infinite;
}

@keyframes dap-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(196,134,110,.2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(196,134,110,.0);
    }
}

div#pane-ultra p {
    font-size: 14px !important;
}

#plans {
    scroll-margin-top: 130px;
}

#pane-free .tpl-card.selected {
    border-color: #00f5ff;
  
    position: relative;
    z-index: 2;
}

#pane-free .tpl-card.selected {
    animation: neonPulse 1.8s infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.2), 0 0 15px rgba(0, 245, 255, 0.4), 0 0 40px rgba(0, 245, 255, 0.2), 0 24px 60px rgba(0, 0, 0, 0.45);
    }

    100% {
        box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.35), 0 0 25px rgba(0, 245, 255, 0.7), 0 0 70px rgba(0, 245, 255, 0.4), 0 24px 60px rgba(0, 0, 0, 0.45);
    }
}

#pane-prem .tpl-card.selected {
    animation: goldPulse 1.8s infinite alternate ease-in-out;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2), 0 0 15px rgba(201, 168, 76, 0.35), 0 0 35px rgba(201, 168, 76, 0.2), 0 24px 60px rgba(0, 0, 0, 0.18);
    }

    100% {
        box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.6), 0 0 70px rgba(201, 168, 76, 0.35), 0 24px 60px rgba(0, 0, 0, 0.18);
    }
}

.slider-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

    .slider-nav .slider-arrow:first-child {
        position: absolute;
        left: 0;
    }

    .slider-nav .slider-arrow:last-child {
        position: absolute;
        right: 0;
    }

    .slider-nav .slider-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }


.slider-nav {
    position: static !important;
}

.tpl-section {
    position: relative;
}

.slider-nav .slider-arrow:first-child {
    position: absolute;
    left: 0;
    top: 35% !important;
}

.slider-nav .slider-arrow:last-child {
    position: absolute;
    right: 0;
    top:35% !important;
}
.slider-arrow {
    border: 1px solid rgba(255, 255, 255, .15);
    background: #272624;
    color: rgb(255 255 255);
}

    .slider-arrow:hover {
        background: #bf826a;
    }
.about-trigger-wrap{
    display:none;
}
/*---footer changes */
@media (max-width:520px) {
    /* ===== Trigger link (small html jo bahar dena hai) ===== */
    .about-trigger-wrap {
        font-family: Arial, sans-serif;
        padding: 10px;
        display: block;
    }

    .copyright-line {
        font-size: 16px;
        color: #ffffff;
        text-align: center;
        display: block;
    }

    .about-link {
        color: #c58d69;
        text-decoration: underline;
        cursor: pointer;
        font-weight: 600;
    }

    /* ===== Modal Overlay ===== */
    #footer-box {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 99998;
        justify-content: center;
        align-items: center;
    }

        #footer-box.active {
            display: block;
            background-color: #000;
        }

    /* ===== Phone-look Modal Box ===== */
    #aboutModalBox {
        background: #1c1c1c;
        width: 100%;
        max-width: 420px; /* phone jaisa width */
        height: 100%;
        max-height: 100vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 0 25px rgba(0,0,0,0.5);
        animation: slideUp 0.35s ease-out;
        display: flex;
        flex-direction: column;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }


    /* ===== Big Back Button (bottom fixed) ===== */
    #aboutModalBackBtn {
        width: 100%;
        padding: 18px 0;
        background: #e63946;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        border: none;
        cursor: pointer;
        letter-spacing: 1px;
        flex-shrink: 0;
    }

        #aboutModalBackBtn:active {
            background: #c62828;
        }


    #footer-box.active {
        display: block;
        background-color: #000;
        overflow: hidden;
        overflow-y: auto !important;
        /* Firefox */
        scrollbar-width: thin;
        scrollbar-color: #d4a373 #1a1a1a;
        padding-bottom: 0 !important;
    }

        /* Chrome, Edge, Safari */
        #footer-box.active::-webkit-scrollbar {
            width: 10px;
        }

        #footer-box.active::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 10px;
        }

        #footer-box.active::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #f4d1c2 0%, #d4a373 50%, #b76e79 100%);
            border-radius: 10px;
            border: 2px solid #1a1a1a;
        }

            #footer-box.active::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(180deg, #ffd7c7 0%, #e0b089 50%, #c27a84 100%);
            }

        #footer-box.active::-webkit-scrollbar-corner {
            background: #1a1a1a;
        }

    .btab {
        width: 100%;
    }

  

    #footerBackBtn {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        border: none;
        cursor: pointer;
        z-index: 9999;
        background: linear-gradient(135deg, #d4a373, #b76e79);
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        box-shadow: 0 -4px 12px rgba(0,0,0,.25);
    }

        #footerBackBtn:hover {
            background: linear-gradient(135deg, #e5b48b, #cb8390);
        }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 480px) {
    #planTabs {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 12px;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .big-tabs .btab {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        gap: 10px;
        flex: none; /* har tab apni natural height le, shrink na ho */
    }


    .btab-icon {
        flex-shrink: 0;
        margin-right: 6px;
    }

    .btab-label {
        flex: 1;
        text-align: left;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .btab-price {
        flex-shrink: 0;
        padding: 5px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-style: italic;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    header a.logo img {
        max-height: 36px;
    }
    .navbar-top {
        padding-block:8px !important;
    }
    .searchbox{
        display:none;
    }
    .user-img-box {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        min-width: 110px;
        max-width: 160px;
        margin-left: auto;
        padding-bottom: 2px;
        /* border-left: 1px solid #696969; */
        margin-left: 15px;
        position: relative;
        padding-left: 0px !important;
        position: absolute;
        top: 3px;
        z-index: 999999;
        right: 97px;
    }
        .user-img-box::after{
            display:none;
        }
    .user-profile-top {
        height: 35px;
        width: 35px;
        overflow: hidden;
        border-radius: 50%;
        border: 4px solid #c8a056;
        background-color: #fff;
        /* padding: 7px; */
        /* line-height: 19px; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        padding: 6px;
    }
    .user-text h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
        color: #c8a056;
        margin: 0;
        padding-left: 4px;
    }
    .header-with-topbar .navbar-top, .header-with-topbar .navbar-fixed-top {
        top: 0px !important;
        background: #1a110d !important;
    }
    section.vcardmodile {
        display: none;
    }
    .hero-in {
        padding-top: 15px;
    }
    .menubtn1 .mobile-toggle span, header.sticky nav.header-light .heder-menu-button .mobile-toggle span {
        background: #c8a056;
    }
    a.logo.lg-w {
        display: inline-block;
        padding-left: 10px;
    }
    /* Child Cards */
    .trust.fu4 > div:not(.trust-sep) {
        min-width: 115px;
        padding: 10px 10px;
        text-align: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: all .3s ease;
    }
    .trust {
   
        gap: 5px;
        margin-top:20px;
    }
    .trust-sep{
        display:none;
    }
    }

/* mobile-grid.css */
@media (max-width: 575px) {
    .tpl-slider {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        transform: none !important;
        transition: none !important;
        width: 100% !important;
        overflow: visible !important;
    }

        .tpl-slider .tpl-card {
            flex: none !important;
            width: 100% !important;
        }

    .slider-arrow,
    .slider-dots,
    [id^="dots"] {
        display: none !important;
    }

    .tpl-img-wrap {
        width: 100%;
        height: 139px;
    }

    .tpl-info {
        padding: 16px 4px 4px;
    }

    #pane-prem .tpl-price-tag {
        color: #b45309 !important;
        -webkit-text-fill-color: #b45309 !important;
    }

    div#pane-prem p {
        font-size: 14px !important;
    }

    .info-modal-overlay {
        z-index: 99999999;
    }

    #pane-ultra .tpl-slider {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px;
        transform: none !important;
        transition: none !important;
        width: 100% !important;
        overflow: visible !important;
    }

    #pane-ultra .tpl-img-ph {
        height: 276px;
    }

    #pane-ultra .tpl-img-wrap {
        width: 100%;
        height: 100%;
    }

    .loginBtn {
        position: absolute;
        right: 82px;
        top: 6px;
    }

    a.log_in, a.reg_in {
        background: linear-gradient(135deg, var(--rg-dk), var(--rg), var(--gd)) !important;
        border-color: #fff !important;
    }

    .sticky.header-with-topbar .top-header-area {
        top: 0px !important;
    }

    .trust.fu4 > div:not(.trust-sep) {
        min-width: 100px;
        padding: 4px 10px;
    }
    p {
        font-size: 15px !important;
    }
    p .reveal.visible, .tpl-heading p {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .dl-banner {
        font-size: .8rem;
        line-height: 1.2;
    }
    .tpl-more-btn {
        font-size: .7rem;
        padding-block: 3px;
    }
    #plans {
        padding-top: 46px;
    }
}



/*------New Section added----------*/
.ent-sec {
    --ent-bg: var(--d2);
    --ent-tx: var(--tx-d);
    --ent-mt: var(--mt-d);
    --ent-card-bg: var(--card-bg);
    --ent-card-bdr: var(--bdr);
    --ent-divider: rgba(255,255,255,.06);
    --ent-accent-tx: var(--rg-lt);
    --ent-accent-tx2: var(--gd-lt);
    --ent-qr-frame: rgba(255,255,255,.05);
    --ent-store-bg: rgba(196,134,110,.03);
    background: var(--ent-bg);
    color: var(--ent-tx);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

    .ent-sec[data-theme="light"] {
        --ent-bg: #ffffff;
        --ent-tx: #180e08;
        --ent-mt: #6b5a50;
        --ent-card-bg: rgba(196,134,110,.035);
        --ent-card-bdr: rgba(196,134,110,.16);
        --ent-divider: rgba(24,14,8,.08);
        --ent-accent-tx: var(--rg-dk);
        --ent-accent-tx2: var(--gd-dk);
        --ent-qr-frame: #faf5f1;
        --ent-store-bg: #ffffff;
    }

.ent-orb-1 {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle,rgba(196,134,110,.16) 0%,transparent 65%);
    filter: blur(50px);
    pointer-events: none
}

.ent-orb-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle,rgba(201,168,76,.14) 0%,transparent 65%);
    filter: blur(50px);
    pointer-events: none
}

.ent-sec[data-theme="light"] .ent-orb-1,
.ent-sec[data-theme="light"] .ent-orb-2 {
    opacity: .5
}

.ent-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 20px;
    border: 1px solid rgba(196,134,110,.3);
    border-radius: 100px;
    background: rgba(196,134,110,.09);
    font-size: .68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ent-accent-tx);
    margin-bottom: 22px;
}

.ent-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2.2rem,4vw,3.6rem);
    font-weight: 400;
    line-height: 1.16;
    margin-bottom: 5px;
    color: var(--ent-tx);
}

    .ent-title em {
        font-style: italic
    }

.ent-lead {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--ent-mt);
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 30px;
}

    .ent-lead strong {
        color: var(--ent-tx);
        font-weight: 500
    }

/* pills */
.ent-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px
}

.ent-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    line-height: 1.2;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    border: 1px solid rgba(196,134,110,.28);
    background: rgba(196,134,110,.08);
    color: var(--ent-tx);
}

    .ent-pill i {
        color: var(--ent-accent-tx2);
        font-size: .85rem
    }

    .ent-pill.gold {
        border-color: rgba(201,168,76,.32);
        background: rgba(201,168,76,.09)
    }

        .ent-pill.gold i {
            color: var(--ent-accent-tx)
        }

/* buttons — same pattern used elsewhere on the site (Get Your Card / View Plans) */
.ent-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 38px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd));
    color: #fff;
    font-size: .86rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .35s;
    box-shadow: 0 10px 32px rgba(196,134,110,.38);
}

    .ent-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 42px rgba(196,134,110,.5);
        color: #fff;
        text-decoration: none
    }

.ent-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(196,134,110,.38);
    background: rgba(196,134,110,.06);
    color: var(--ent-accent-tx);
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
}

    .ent-btn-secondary:hover {
        border-color: var(--rg);
        background: rgba(196,134,110,.13);
        color: var(--ent-tx);
        text-decoration: none
    }

.ent-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px
}

/* AI capability cards */
.ent-ai-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    position: relative;
    z-index: 2
}

.ent-ai-card {
    background: var(--ent-card-bg);
    border: 1px solid var(--ent-card-bdr);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

    .ent-ai-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg,var(--rg),var(--gd));
        opacity: 0;
        transition: opacity .3s
    }

    .ent-ai-card:hover {
        transform: translateY(-6px);
        border-color: rgba(196,134,110,.4)
    }

        .ent-ai-card:hover::before {
            opacity: 1
        }

.ent-ai-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
    background: rgba(196,134,110,.1);
    border: 1px solid rgba(196,134,110,.24);
    color: var(--rg-dk);
}

.ent-sec[data-theme="dark"] .ent-ai-icon {
    color: var(--rg-lt)
}

.ent-ai-card:nth-child(2) .ent-ai-icon {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.24);
    color: var(--gd-dk)
}

.ent-sec[data-theme="dark"] .ent-ai-card:nth-child(2) .ent-ai-icon {
    color: var(--gd-lt)
}

.ent-ai-t {
    font-family: 'Playfair Display',serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--ent-tx)
}

.ent-ai-d {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--ent-mt);
    font-weight: 300
}

/* — app section: compact two-column layout — */
.ent-app-row {
    display: flex;
    gap: 56px;
    align-items: center
}

.ent-app-left {
    flex: 1.05
}

.ent-app-right {
    flex: .95
}

.ent-app-points {
    list-style: none;
    margin: 22px 0 30px
}

    .ent-app-points li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid var(--ent-divider);
        font-size: .92rem;
        color: var(--ent-tx);
        font-weight: 300;
    }

        .ent-app-points li:last-child {
            border: none
        }

        .ent-app-points li i {
            color: var(--rg);
            margin-top: 3px;
            font-size: .8rem;
            flex-shrink: 0
        }

/* big QR + button */
.ent-qr-block {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--ent-card-bdr);
    background: var(--ent-card-bg);
    margin-bottom: 26px;
}

.ent-qr-box {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--ent-qr-frame);
    border: 1px solid var(--ent-card-bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

    .ent-qr-box img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 8px
    }

.ent-qr-txt {
    flex: 1;
    min-width: 160px
}

.ent-qr-label {
    font-size: 1.75rem;
    font-family: 'Playfair Display',serif;
    color: var(--ent-tx);
    display: block;
    margin-bottom: 5px
}

.ent-qr-txt p {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--ent-mt);
    font-weight: 300
}

/* right side — photo placeholder */
.ent-app-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--ent-card-bdr);
    background: var(--ent-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ent-app-photo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block
    }

.ent-app-photo-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ent-mt)
}

    .ent-app-photo-ph i {
        font-size: 2.4rem;
        opacity: .35
    }

    .ent-app-photo-ph span {
        font-size: .62rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        opacity: .5
    }


.img-enter {
    border: 1px solid var(--ent-card-bdr);
    background: var(--ent-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    overflow: auto;
    padding: 5px;
}

    .img-enter img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
    }


.corner-logo {
    position: absolute;
    top: 23px;
    left: -75px;
    width: 313px;
    text-align: center;
    padding: 10px 0 12px;
    transform: rotate(-38deg);
    transform-origin: center;
    background: linear-gradient(90deg, transparent, rgb(217 169 79 / 21%), transparent);
    border-top: 1.5px solid #f6e3b4;
    border-bottom: 1.5px solid #f6e3b4;
    box-shadow: 0 0 18px rgb(217 169 79 / 2%), 0 0 40px rgb(217 169 79 / 11%);
}

    .corner-logo .brand {
        font-family: 'Alex Brush', cursive;
        font-size: 34px;
        line-height: 1;
        background: linear-gradient(120deg, #f6e3b4, #d9a94f 45%, #a9762c);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .corner-logo .by {
        margin-top: 0px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 10px;
        line-height: 1;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #d9a94f;
    }

        .corner-logo .by span {
            color: #f6e3b4;
            font-weight: 600;
        }

#plans {
    position: relative;
}



.tpl-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    background: rgba(74, 222, 128, 0.12);
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(74, 222, 128, 0.35), 0 0 0 1.5px rgba(74, 222, 128, 0.4);
    animation: pop-glow 1.6s ease-in-out infinite;
    line-height:1.2;
}

    .tpl-price-tag del {
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: line-through;
        opacity: 0.6;
    }

    .tpl-price-tag .free-label {
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

.everywhere-section {
    position: relative;
    padding: 24px;
    overflow: visible;
    text-align: center;
}

.ew-inner {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    background: radial-gradient(120% 140% at 50% 0%, var(--d3) 0%, var(--d1) 75%);
    border: 1px solid var(--bdr);
    border-radius: 24px;
    padding: 40px 28px 44px;
    overflow: hidden;
}

    /* faint texture glow behind everything */
    .ew-inner::before {
        content: '';
        position: absolute;
        top: -140px;
        left: 50%;
        width: 500px;
        height: 280px;
        transform: translateX(-50%);
        background: radial-gradient(ellipse, rgba(196,134,110,.12) 0%, transparent 70%);
        pointer-events: none;
    }

/* eyebrow badge */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--d2);
    border: 1px solid var(--rg);
    box-shadow: 0 0 0 1px rgba(196,134,110,.15), 0 4px 16px rgba(196,134,110,.35), inset 0 1px 0 rgba(255,255,255,.04);
    font-size: .78rem;
    font-weight: 600;
    color: var(--tx-d);
    letter-spacing: .3px;
    animation: badge-glow 2.4s ease-in-out infinite;
    margin-bottom: 28px;
}

    .platform-badge i {
        font-size: .74rem;
        color: var(--gd-lt);
    }

    .platform-badge .badge-label {
        color: var(--mt-d);
        font-weight: 500;
    }

    .platform-badge .platform-text {
        color: var(--tx-d);
        font-weight: 700;
    }

    .platform-badge .divider {
        color: var(--mt-d);
        font-weight: 400;
        margin: 0 -2px;
    }

    .platform-badge .divider-line {
        width: 1px;
        height: 12px;
        background: var(--rg-dk);
        margin: 0 2px;
    }

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(196,134,110,.15), 0 4px 16px rgba(196,134,110,.35), inset 0 1px 0 rgba(255,255,255,.04);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(196,134,110,.25), 0 6px 24px rgba(196,134,110,.55), inset 0 1px 0 rgba(255,255,255,.06);
    }
}

/* heading */
.ew-heading {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.2;
    color: var(--tx-d);
    letter-spacing: -0.01em;
}

    .ew-heading em {
        font-style: italic;
        color: var(--rg-lt);
    }

.ew-sub {
    max-width: 400px;
    margin: 12px auto 36px;
    color: var(--mt-d);
    font-size: .92rem;
    line-height: 1.6;
}

/* device showcase */
.ew-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.device-card {
    position: relative;
    width: 200px;
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 14px;
    text-align: left;
    backdrop-filter: blur(6px);
}

    .device-card.web {
        transform: translateY(4px) rotate(-2.2deg);
    }

    .device-card.app {
        width: 118px;
        transform: translateY(-7px) rotate(2.4deg);
    }

.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

    .browser-bar span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--rg-dk);
        opacity: .6;
    }

        .browser-bar span:nth-child(2) {
            background: var(--gd-dk);
        }

        .browser-bar span:nth-child(3) {
            background: var(--mt-d);
        }

.device-skeleton {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sk-line {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(196,134,110,.28), rgba(201,168,76,.16));
}

    .sk-line.w1 {
        width: 78%;
    }

    .sk-line.w2 {
        width: 92%;
    }

    .sk-line.w3 {
        width: 55%;
    }

    .sk-line.tall {
        height: 32px;
        border-radius: 8px;
        margin-top: 4px;
        background: linear-gradient(135deg, rgba(196,134,110,.22), rgba(201,168,76,.10));
    }

.phone-notch {
    width: 32px;
    height: 4px;
    border-radius: 3px;
    background: var(--d1);
    margin: 0 auto 10px;
}

.device-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

    .device-label i {
        color: var(--gd-lt);
        font-size: .82rem;
    }

    .device-label span {
        font-size: .78rem;
        font-weight: 600;
        color: var(--tx-d);
        letter-spacing: .3px;
    }

/* sync connector */
.sync-line {
    position: relative;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--rg-dk), var(--gd-dk));
    margin: 0 -4px;
    opacity: .5;
}

.sync-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    margin-top: -3.5px;
    border-radius: 50%;
    background: var(--gd-lt);
    box-shadow: 0 0 10px 2px rgba(226,201,126,.7);
    animation: sync-travel 2.6s ease-in-out infinite;
}

@keyframes sync-travel {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}


iframe#launcher {
    display: none !important;
}


.hn-carousel-wrap {
    position: relative;
}

.hn-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

    .hn-carousel::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.hn-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 100%;
}

.hn-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

    .hn-arrow:hover {
        background: rgba(0,0,0,.8);
    }

.hn-prev {
    left: 8px;
}

.hn-next {
    right: 8px;
}

/* Below-the-fold sections ko lazy-render karo */
.steps-section,
.hero,
.features-sec,
.ent-sec,
.steps-sec,
.tech-sec,
.ship-sec,
.faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 800px; 
}



/* Chhote screens pe arrows chahiye na ho to hide bhi kar sakte ho */
@media (max-width: 480px) {
    .hn-arrow {
        width: 32px;
        height: 32px;
        font-size: .8rem;
    }

}











@media (max-width: 480px) {
    .ew-showcase {
        flex-direction: column;
        gap: 20px;
    }

    .sync-line {
        width: 2px;
        height: 36px;
    }

    .device-card.web, .device-card.app {
        transform: none;
    }

    .device-card.app {
        width: 140px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .platform-badge, .sync-dot {
        animation: none;
    }
}




.steps-section {
    padding: 1.75rem 0;
}

.step-top-heading {
    font-size: 16px;;
    color: var(--tx-l);
    text-align: center;
    margin: 0 0 8px;
}

.step-top-heading {
    width: 100%;
    max-width: 700px; 
    margin: 0 auto 18px;
    padding: 0 15px;
}

.steps-section .badge-row {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
    margin-bottom: 10px !important;
}

/*.badge-30sec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--rg-dk), var(--rg), var(--gd));
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(201,168,76,.3);
}*/

.badge-30sec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--rg-dk), var(--rg), var(--gd));
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(212,175,55,0), 0 0 10px rgba(212,175,55,.35), 0 4px 10px rgba(201,168,76,.25);
    }

    50% {
        box-shadow: 0 0 12px rgba(255,215,0,.8), 0 0 24px rgba(255,215,0,.65), 0 0 40px rgba(212,175,55,.45), 0 8px 20px rgba(201,168,76,.4);
    }
}

    .badge-30sec i {
        font-size: 13px;
    }

.steps-section .steps-row {
    position: relative;
}
.steps-section .steps-row::before {
    display: none;
}

    .steps-section .step-card {
        background: rgb(255 255 255);
        border: 1.5px solid var(--rg-lt);
        border-radius: 12px;
        padding: 1.1rem 0.8rem;
        text-align: center;
        text-decoration: none;
        display: block;
        color: inherit;
        height: 100%;
        transition: transform .15s ease, box-shadow .15s ease;
    }

a.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196,134,110,.2);
    border-color: var(--gd);
    cursor: pointer;
    color: inherit;
}

.step-num {
    position: absolute;
    right: 10px;
    top: 5px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gd-lt), var(--gd-dk));
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #FFF7E8;
}

.step-img-icon {
    font-size: 18px;
    width: 120px;
    height: 120px;
    color: var(--rg-dk);
    margin-bottom: 8px;
    display: inline-block;
    text-align: center;
}
    .step-img-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .steps-section .step-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
        font-weight: 600;
        color: var(--tx-l);
        margin: 0;
        line-height: 1.35;
    }

.step-card.featured {
    background: linear-gradient(180deg,#FFFDFB,#FBF1E8);
    border: 2px solid var(--gd);
}

/* hover tooltip trigger */
.opt-trigger {
    position: relative;
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gd-dk);
    border-bottom: 1px dashed var(--gd-dk);
    cursor: pointer;
}

.opt-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: 190px;
    background: var(--tx-l);
    color: #F5EFE9;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.6;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 20;
}

    .opt-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: var(--tx-l);
    }

.opt-trigger:hover .opt-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.opt-tooltip li {
    list-style: none;
    position: relative;
    padding-left: 12px;
    margin-bottom: 3px;
}

    .opt-tooltip li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--gd-lt);
    }

.opt-tooltip ul {
    margin: 0;
    padding: 0;
}

/* absolute animated arrows between cards */
.flow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .flow-arrow i {
        font-size: 16px;
        color: var(--rg);
        animation: nudge 1.4s ease-in-out infinite;
    }

    .flow-arrow:nth-child(6) i {
        animation-delay: .15s;
    }

    .flow-arrow:nth-child(7) i {
        animation-delay: .3s;
    }

@keyframes nudge {
    0%, 100% {
        transform: translateX(0);
        opacity: .55;
    }

    50% {
        transform: translateX(4px);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .flow-arrow {
        display: none;
    }
}




/*------FAQ*/


.faq-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-section {
    padding: 2.5rem 1.25rem;
    background: #fff;
}

.faq-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--tx-l);
    text-align: center;
    margin: 0 0 8px;
}

.faq-subheading {
    font-size: 16px;
    color: var(--mt-l);
    text-align: center;
    margin: 0 0 2.25rem;
}

/* left categories */
.cat-list {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 10px;
    position: sticky;
    top: 16px;
}

    .cat-list li {
        margin-bottom: 3px;
    }

        .cat-list li:last-child {
            margin-bottom: 0;
        }

.cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--mt-l);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

    .cat-btn i {
        font-size: 19px;
        flex-shrink: 0;
        color: var(--rg-dk);
    }

    .cat-btn:hover {
        background: rgba(196,134,110,.08);
        color: var(--tx-l);
    }

    .cat-btn.active {
        background: linear-gradient(180deg, var(--gd-lt), var(--gd));
        color: #4A2F0E !important;
        font-weight: 600;
        width: 100%;
    }

        .cat-btn.active i {
            color: #4A2F0E;
        }

/* right panel */
.faq-panel {
    min-height: 300px;
}

.faq-tab-pane {
    display: none;
}

    .faq-tab-pane.show.active {
        display: block;
    }

.faq-panel-title {
    font-size: 18px;
    line-height:1.2;
    font-weight: 600;
    color: var(--tx-l);
    margin: 0 0 16px;
    background: linear-gradient(rgb(255, 253, 251), rgb(251, 241, 232));
    border: 2px solid var(--gd);
    padding:10px 10px;
    border-radius:10px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q-wrap {
    margin: 0;
    font-weight: normal;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 15px 18px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--tx-l);
    cursor: pointer !important;
    margin-bottom: 0 !important;
}

    .faq-q .num {
        color: var(--gd-dk);
        font-weight: 600;
        margin-right: 6px;
    }

    .faq-q i {
        font-size: 17px;
        color: var(--rg-dk);
        flex-shrink: 0;
        transition: transform .18s ease;
    }

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
}

.faq-a-inner {
    padding: 0 18px 17px 18px;
    font-size: 15px;
    color: var(--mt-l);
    line-height: 1.7;
}

    .faq-a-inner p {
        margin: 0 0 8px;
    }

        .faq-a-inner p:last-child {
            margin-bottom: 0;
        }

.faq-a-list {
    margin: 6px 0 0;
    padding-left: 18px;
    list-style: disc;
}

    .faq-a-list li {
        margin-bottom: 4px;
    }

@media (max-width: 767px) {
   /* .cat-list {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 6px;
        padding: 8px;
        margin-bottom: 1.25rem;
    }
*/
        .cat-list li {
            margin-bottom: 0;
        }

    .cat-btn {
        width: auto;
        white-space: nowrap;
    }
}


/*Faq end*/


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1400px) {
    .tpl-img-wrap {
        height: 232px;
    }
    #pane-ultra .tpl-img-ph {
        height: 226px;
    }
    .img-enter {
        height: 100%;
        width: 100%;
    }
    .ent-ai-grid {
        margin-top: 20px;
    }
    }
    @media(max-width:991px) {
        .ent-ai-grid {
            grid-template-columns: 1fr 1fr
        }

        .ent-app-row {
            flex-direction: column-reverse;
            gap: 36px
        }

        .ent-app-photo {
            max-width: 360px;
            margin: 0 auto
        }
    }

    @media(max-width:767px) {
        .ent-sec {
            padding: 56px 0
        }

        .faq-panel {
            min-height: 300px;
            margin-top: 25px;
        }

        .ent-title {
            font-size: 1.85rem !important
        }

        .ent-lead {
            font-size: 1rem
        }

        .ent-ai-grid {
            grid-template-columns: 1fr
        }

        .ent-btn-row {
            flex-direction: column
        }

        .ent-btn-primary, .ent-btn-secondary {
            width: 100%;
            justify-content: center
        }

        .ent-qr-block {
            flex-direction: column;
            text-align: center;
            padding: 18px
        }

        .ent-qr-box {
            width: 130px;
            height: 130px
        }

        .tpl-name {
            font-size: 17px !important;
            line-height: 1.2 !important;
        }

        .ent-qr-box canvas {
            width: 100%;
            height: 100%;
        }

        #pane-prem .tpl-price-tag {
            font-size: .9rem;
            line-height: 1.2;
            font-weight: 600;
            padding: 6px 16px;
        }

        .tpl-sub {
            font-size: .7rem;
            line-height: 1.4;
        }

        .prem-feel-tag {
            font-size: .72rem;
            line-height: 1.4;
        }

        div#pane-prem p {
            font-size: 12px !important;
            padding-block: 5px;
        }

        .plan-badge {
            line-height: 1.4;
        }

        #pane-ultra .tpl-price-tag {
            font-size: 1rem;
        }

        .corner-logo .brand {
            font-size: 20px;
        }
        .corner-logo {
            top: 62px;
            left: -51px;
            width: 179px;
            padding: 2px 0 5px;
        }
        #pane-prem .tpl-card {
            min-height:100%;
        }
        }


@media(max-width:460px) {
    .corner-logo .brand {
        font-size: 13px;
    }

    .corner-logo .by {
        margin-top: 0px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 7px;
    }

    .corner-logo {
        top: 59px;
        left: -65px;
    }
    .ent-sec {
        padding: 30px 0;
    }
    .big-tabs .btab {
        padding: 5px 14px;
    }
    .btab-icon {
        font-size: 1rem !important;
    }
    .btab-price {
        font-size: .68rem !important;
        color: #fff;
        line-height: 1.2;
    }
        .btab.active::after{
        display:none;
    }
    .btab-ultra .btab-label {
        font-size: .85rem;
        line-height: 1.2;
    }
    .btab-ultra::before {
        top: -11px;
        line-height: 1.2;
    }
.tpl-more-btn {
        line-height: 1.4;
        text-transform: capitalize;
    }
    #planTabs {
        gap: 5px;
    }
    .dl-banner {
        font-size: 0.6rem;
    }
    .tpl-img-wrap {
        height: 129px;
    }
    }



.flip-container {
    perspective: 1200px;
    width: 100%;
    height: 100%;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

    .flip-inner.flipped {
        transform: rotateY(180deg);
    }

.flip-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: inherit;
    overflow: hidden;
}

.flip-back {
    transform: rotateY(180deg);
}


.vs-video-wrap {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid #000;
    border-radius: 12px;
    box-sizing: border-box;
    background: #000;
}

    .vs-video-wrap #vsVideo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }



#modalFeatures li {
    display: flex;
}

#modalFeatures + .features-show-more {
    display: none;
}


/* Mobile View */
@media (max-width: 767px) {

    #modalFeatures li:nth-child(n + 3) {
        display: none;
    }

    #modalFeatures + .features-show-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0px;
        padding: 0px 16px;
        border: 0px solid #22c55e;
        border-radius: 30px;
        background: transparent;
        color: #22c55e;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 12px;
    }

        #modalFeatures + .features-show-more:hover {
            color: var(--d3);
        }

    #modalFeatures.show-all li {
        display: flex;
    }

    .p-list {
        margin-bottom: 0px;
    }
}

.tpl-img-wrap {
    position: relative;
    overflow: hidden;
}

.tpl-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 2;

}

    .tpl-video.active {
        opacity: 1;
    }

.tpl-howitworks-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
    transition: opacity .2s ease;
}

    .tpl-howitworks-btn.hidden {
        display: none;
    }

.hiw-icon {
    font-size: 11px;
}


/*----model videos*/

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0;
    color: #fff;
    border: none;
    padding: 2px 18px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
}

.lm-icon {
    font-size: 11px;
}

/* Modal overlay */
.learn-more-btn {
    /*  display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;*/
    position: relative;
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gd-dk);
    border-bottom: 1px dashed var(--gd-dk);
    cursor: pointer;
}

.lm-icon {
    font-size: 11px;
}

/* Overlay */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0,0,0,.8);
    align-items: center;
    justify-content: center;
}

    .video-modal-overlay.active {
        display: flex;
    }

/* Modal box */
.video-modal-box {
    position: relative;
    width: 90%;
    max-width: 720px;
    transform: scale(.85);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    border: 5px solid #eee0df;
    border-radius: 15px;
    overflow: hidden;
}

.video-modal-overlay.active .video-modal-box {
    transform: scale(1);
    opacity: 1;
}


.video-modal-close {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #8a5240;
    color:#fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-inner {
    height: 400px;
    background: #000;
    border-radius: 12px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .video-modal-inner video {
        width: 100%;
        height: 100%;
        object-fit: contain; 
        display: block;
        border-radius: 6px;
    }


@media (max-width: 456px) {
    .tpl-howitworks-btn {
        display:none;

    }
}