/* HERO */
#hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0520 0%, #2d0a6e 40%, #4e18a4 70%, #6622ce 100%);
    padding: 0;
    width: 100%;
    min-height: auto;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(88px);
    pointer-events: none;
}

.ho1 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.22);
    top: -140px;
    right: -60px;
    animation: ho1 9s ease-in-out infinite;
}

.ho2 {
    width: 320px;
    height: 320px;
    background: rgba(102, 34, 206, 0.28);
    bottom: -80px;
    left: -40px;
    animation: ho2 11s ease-in-out infinite;
}

.ho3 {
    width: 200px;
    height: 200px;
    background: rgba(192, 132, 252, 0.18);
    top: 40%;
    left: 38%;
    animation: ho3 7s ease-in-out infinite;
}

@keyframes ho1 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-26px, 20px);
    }
}

@keyframes ho2 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -18px);
    }
}

@keyframes ho3 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-14px, 14px);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: start;
    padding: 52px 5% 48px;
}

/* breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.breadcrumb a, .breadcrumb span {
    font-size: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .bsep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb .bcur {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* cat + badges */
.hero-top-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.hcat {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Roboto', sans-serif;
}

.hbadge {
    font-size: 0.64rem;
    font-weight: 700;
    padding: 0.18rem 0.6rem;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    backdrop-filter: blur(4px);
}

.hb-pop {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
}

.hb-val {
    background: rgba(201, 168, 76, 0.22);
    color: #fcd34d;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* title */
h1.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 0.9rem;
}

.hero-tagline {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.68);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 1.75rem;
}

/* feature pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.hpill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: 'Roboto', sans-serif;
}

.hpill svg {
    opacity: 0.7;
    flex-shrink: 0;
}

/* rating row */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.star-row {
    display: flex;
    gap: 2px;
}

.star {
    color: #f59e0b;
    font-size: 0.9rem;
}

.rating-num {
    font-family: 'Roboto Slab', serif;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}

.rating-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Roboto', sans-serif;
}

.hero-stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

.hstat {
    text-align: center;
}

.hstat .n {
    font-family: 'Roboto Slab', serif;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hstat .l {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.1rem;
    font-family: 'Roboto', sans-serif;
}

/* BUY CARD */
.buy-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 1.75rem 1.6rem;
    backdrop-filter: blur(20px);
    position: sticky;
    top: 80px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.buy-card-img {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(102, 34, 206, 0.4), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.buy-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0520, #4e18a4);
    opacity: 0.5;
}

.buy-card-img span {
    position: relative;
    z-index: 1;
}

.bc-discount {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    background: var(--red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.bc-validity {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(26, 10, 60, 0.65);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.6rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    font-family: 'Roboto', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bc-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.bc-price {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.bc-mrp {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    font-family: 'Roboto', sans-serif;
}

.bc-save {
    font-size: 0.7rem;
    font-weight: 700;
    color: #86efac;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 0.12rem 0.45rem;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.bc-tax {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.1rem;
    font-family: 'Roboto', sans-serif;
}

.bc-btn-buy {
    width: 100%;
    padding: 0.85rem;
    border-radius: 50px;
    background: #fff;
    color: var(--p);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 0.65rem;
}

.bc-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.bc-btn-cart {
    width: 100%;
    padding: 0.78rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.bc-btn-cart:hover {
    background: rgba(255, 255, 255, 0.18);
}

.bc-cart-input {
    width: 100%;
    border-radius: 50px;
    background: #fff;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    justify-content: space-between;
    padding: 5px;
}

.bc-cart-input>input {
    border: none;
    background: transparent;
    outline: none;
    text-align: center;
    flex: 1;
    width: auto;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    color: var(--p);
    font-weight: bold;
    border: 1px solid var(--p);
    border-radius: 30px;
    height: 35px;
}

.bc-cart-input>button {
    width: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--p);
    fill: var(--p);
    height: 35px;
    background: #683bb01f;
    border: 1.5px solid rgb(105 58 178 / 54%) !important;
    cursor: pointer;
}

.bc-meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.bc-meta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Roboto', sans-serif;
}

.bc-meta-row svg {
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

/* section common */
.section {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 22px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--sh-sm);
    width: 100%;
}

.sec-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bdr);
}

.sec-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--p10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    flex-shrink: 0;
}

.sec-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--tx);
}

.sec-sub {
    font-size: 0.78rem;
    color: var(--tx3);
    font-family: 'Roboto', sans-serif;
    margin-top: 0.1rem;
}

/* FEATURES GRID - FULLY RESPONSIVE */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 14px;
    padding: 5px;
    transition: all 0.25s;
    width: 100%;
}

.feat-item:hover {
    border-color: rgba(102, 34, 206, 0.25);
    box-shadow: var(--sh-sm);
    transform: translateY(-2px);
}

.fi-icon {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    padding: 0px;
    width: 24px;
    height: 24px;
}

.fi-desc {
    font-size: 0.76rem;
    color: var(--tx3);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* COMPARISON TABLE */
.cmp-wrapper {
    overflow-x: auto;
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.cmp-table {
    min-width: 640px;
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
}

.cmp-table thead th {
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--bdr);
}

.cmp-table thead th:first-child {
    text-align: left;
    color: var(--tx3);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cmp-table thead th.highlighted {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.cmp-table .pkg-col-name {
    font-family: 'Roboto Slab', serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.cmp-table .pkg-col-price {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.15rem;
    display: block;
}

.cmp-table tbody tr {
    border-bottom: 1px solid var(--bdr);
}

.cmp-table tbody tr:last-child {
    border-bottom: none;
}

.cmp-table tbody tr:hover td {
    background: var(--bg);
}

.cmp-table tbody td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: var(--tx2);
    vertical-align: middle;
}

.cmp-table tbody td:first-child {
    color: var(--tx);
    font-weight: 500;
    font-size: 0.84rem;
}

.cmp-table tbody td:not(:first-child) {
    text-align: center;
}

.cmp-table td.highlighted-col {
    background: var(--p10);
    border-left: 1px solid rgba(102, 34, 206, 0.15);
    border-right: 1px solid rgba(102, 34, 206, 0.15);
}

.cmp-table tfoot td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-top: 2px solid var(--bdr);
}

.cmp-table tfoot td.highlighted-col {
    background: var(--p10);
}

.check {
    color: var(--green);
    font-size: 1.05rem;
}

.cross {
    color: var(--tx3);
    font-size: 1rem;
}

.partial {
    color: var(--amber);
    font-size: 0.82rem;
    font-weight: 700;
}

.cmp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.22s;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.cmp-btn-fill {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border: none;
    box-shadow: 0 3px 12px var(--p40);
}

.cmp-btn-fill:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--p40);
}

.cmp-btn-out {
    background: transparent;
    color: var(--p);
    border: 1.5px solid var(--p) !important;
}

.cmp-btn-out:hover {
    background: var(--p10);
}

/* OTHER PACKAGES */
.pkg-scroll {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--bdr) transparent;
    width: 100%;
}

.pkg-scroll::-webkit-scrollbar {
    height: 4px;
}

.pkg-scroll::-webkit-scrollbar-thumb {
    background: var(--bdr);
    border-radius: 2px;
}

.mini-pkg {
    flex-shrink: 0;
    width: 230px;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.28s;
}

.mini-pkg:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: rgba(102, 34, 206, 0.22);
}

.mini-img {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    position: relative;
    overflow: hidden;
}

.mini-body {
    padding: 0.9rem 1rem;
}

.mini-cat {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tx3);
    margin-bottom: 0.25rem;
}

.mini-name {
    font-family: 'Roboto Slab', serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--tx);
    margin-bottom: 0.35rem;
}

.mini-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.mini-price {
    font-family: 'Roboto Slab', serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--tx);
}

.mini-mrp {
    font-size: 0.74rem;
    color: var(--tx3);
    text-decoration: line-through;
}

.mini-save {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(5, 150, 105, 0.1);
    border-radius: 3px;
    padding: 0.08rem 0.35rem;
}

.mini-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.mini-buy {
    padding: 0.42rem 0.3rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
}

.mini-buy:hover {
    transform: translateY(-1px);
}

.mini-exp {
    padding: 0.42rem 0.3rem;
    border-radius: 50px;
    background: transparent;
    color: var(--p);
    font-size: 0.72rem;
    font-weight: 700;
    border: 1.5px solid var(--p) !important;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
    text-align: center;
}

.mini-exp:hover {
    background: var(--p10);
}

/* RIGHT SIDEBAR */
.right-col {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.sidebar-card {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-sm);
    width: 100%;
}

.sc-head {
    padding: 1.1rem 1.4rem 0.8rem;
    border-bottom: 1px solid var(--bdr);
}

.sc-head h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 0.98rem;
    font-weight: 900;
    color: var(--tx);
}

.sc-body {
    padding: 1.1rem 1.4rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--bdr);
}

.trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ti-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--p10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    flex-shrink: 0;
}

.ti-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--tx);
    font-family: 'Roboto', sans-serif;
}

.ti-sub {
    font-size: 0.72rem;
    color: var(--tx3);
    font-family: 'Roboto', sans-serif;
}

.review-mini {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--bdr);
}

.review-mini:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.rm-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--tx);
    font-family: 'Roboto', sans-serif;
}

.rm-stars {
    display: flex;
    gap: 1px;
}

.rms {
    color: #f59e0b;
    font-size: 0.72rem;
}

.rm-text {
    font-size: 0.78rem;
    color: var(--tx3);
    line-height: 1.55;
    font-family: 'Roboto', sans-serif;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--pd), var(--p), var(--pl));
    border-radius: 24px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-lg);
    width: 100%;
}

.cta-banner::before {
    content: '🚀';
    position: absolute;
    right: 2.5rem;
    font-size: 6rem;
    opacity: 0.08;
    pointer-events: none;
}

.cta-left h2 {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.cta-left p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Roboto', sans-serif;
    max-width: 440px;
    line-height: 1.65;
}

.cta-right {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.cta-btn-w {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: #fff;
    color: var(--p);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-w:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.cta-btn-t {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.8rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.cta-btn-t:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* REVEAL */
.r {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.r.in {
    opacity: 1;
    transform: none;
}

/* FOOTER */
footer {
    background: var(--tx);
    padding: 2rem 5% 1.5rem;
    width: 100%;
}

.fi {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fi img {
    height: 24px;
    filter: brightness(10);
    opacity: 0.5;
}

.fl {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fl a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
    font-family: 'Roboto', sans-serif;
}

.fl a:hover {
    color: #fff;
}

.fb {
    max-width: 1200px;
    margin: 0.85rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fb p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.22);
    font-family: 'Roboto', sans-serif;
}

/* sticky buy bar */
.sticky-buy-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 290;
    background: rgba(247, 245, 255, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--bdr);
    padding: 0.85rem 5%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 24px rgba(102, 34, 206, 0.12);
}

.sbb-price {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--tx);
}

.sbb-mrp {
    font-size: 0.78rem;
    color: var(--tx3);
    text-decoration: line-through;
    margin-left: 0.3rem;
}

.sbb-btns {
    display: flex;
    gap: 0.5rem;
}

.sbb-cart {
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    background: transparent;
    color: var(--p);
    font-size: 0.82rem;
    font-weight: 700;
    border: 1.5px solid var(--p) !important;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.sbb-buy {
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 3px 12px var(--p40);
}

/* RESPONSIVE FIXES */
/* Tablet */
@media(max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 5% 36px;
    }

    .page-body {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem 4% 5rem;
    }

    .buy-card {
        position: static;
        background: rgba(255, 255, 255, 0.08);
        max-width: 100%;
    }

    .right-col {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1rem;
    }

    .sidebar-card {
        min-width: 0;
    }

    .sticky-buy-bar {
        display: flex;
    }

    body {
        padding-bottom: 76px;
    }
}

@media(max-width: 860px) {
    .nav-mid {
        display: none;
    }

    .nbtn-ghost {
        display: none;
    }
}

/* Mobile - CRITICAL FIXES FOR CARDS */
@media(max-width: 680px) {
    .hero-inner {
        padding: 32px 4% 28px;
    }

    h1.hero-title {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 0.88rem;
    }

    .hero-rating {
        gap: 0.85rem;
        flex-wrap: wrap;
    }

    .hero-stat-divider {
        display: none;
    }

    /* FEATURE GRID - STACK CARDS AND CENTER */
    .features-grid {
        grid-template-columns: 1fr !important;
        /* force single column */
        gap: 0.85rem;
        width: 100%;
    }

    .feat-item {
        width: 100%;
        margin: 0 auto;
        /* center horizontally */
    }

    /* SECTION PADDING ADJUSTMENT */
    .section {
        padding: 1.4rem 1.15rem;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .sec-head {
        margin-bottom: 1.1rem;
        padding-bottom: 0.85rem;
    }

    .cta-banner {
        padding: 1.75rem 1.4rem;
        flex-direction: column;
        gap: 1.25rem;
    }

    .cta-banner::before {
        display: none;
    }

    .cta-right {
        width: 100%;
        flex-direction: column;
    }

    .cta-btn-w, .cta-btn-t {
        width: 100%;
        justify-content: center;
    }

    .right-col {
        grid-template-columns: 1fr;
    }

    .rich-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* ensure no overflow */
    .page-body {
        padding-left: 4%;
        padding-right: 4%;
        width: 100%;
        overflow-x: hidden;
    }
}

/* Small phones */
@media(max-width: 420px) {
    nav {
        padding: 0 4%;
    }

    .hero-inner, .page-body {
        padding-left: 4%;
        padding-right: 4%;
    }

    h1.hero-title {
        font-size: 1.55rem;
    }

    .hero-pills {
        gap: 0.35rem;
    }

    .hpill {
        font-size: 0.68rem;
        padding: 0.26rem 0.7rem;
    }

    .bc-price {
        font-size: 1.65rem;
    }

    .bc-btn-buy, .bc-btn-cart {
        font-size: 0.88rem;
        padding: 0.78rem;
    }

    .mini-pkg {
        width: 220px;
    }

    .sbb-mrp {
        display: none;
    }

    .sbb-cart {
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
    }

    .sbb-buy {
        padding: 0.5rem 1.1rem;
        font-size: 0.78rem;
    }

    .section {
        padding: 1.1rem 1rem;
    }

    .feat-item {
        padding: 0.8rem 0.85rem;
    }
}