* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --ink: #2a1a1a;
    --grove: #ff7158;
    --leaf: #12b322;
    --lychee: #4c0000;
    --lychee-deep: #490606;
    --lychee-pale: #ffeaec;
    --pulp: #ef5350;
    --cream: #fdfafb;
    --white: #ffffff;
    --bark: #4a2e2b;
    --text-light: #fbe9e7;
    --border: #fce4ec;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

.bn {
    font-family: 'Baloo Da 2', cursive
}

.serif {
    font-family: 'Noto Serif Bengali', serif
}

/* ── TICKER BAR ── */
.ticker-wrap {
    background: var(--ink);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--lychee);
}

.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 0 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ticker-dot {
    color: var(--white);
    margin: 0 .5rem
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── ANIMATIONS ── */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ── NAV ── */
.nav-section {
    background: var(--grove);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: 'Baloo Da 2', cursive;
    font-size: 22px;
    font-weight: 800;
    color: var(--lychee);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand span {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    opacity: .7
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn-call {
    background: var(--lychee);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}

.btn-call:hover {
    background: var(--lychee-deep)
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: zoomInBg 20s infinite alternate linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 49, 46, 0.664) 0%, rgb(51 80 56 / 77%) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes zoomInBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
}

.hero-content .tag-pill {
    animation-delay: 0.1s;
}

.hero-content .hero-title {
    animation-delay: 0.2s;
}

.hero-content .hero-sub {
    animation-delay: 0.3s;
}

.hero-content .hero-ctas {
    animation-delay: 0.4s;
}

.hero-content .trust-row {
    animation-delay: 0.5s;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Baloo Da 2', cursive;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-title .accent {
    color: var(--white);
    display: block;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 18px;
    color: rgba(253, 250, 251, .9);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--lychee);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(229, 57, 53, .3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .2s;
}

.btn-primary:hover {
    background: var(--lychee-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, .4);
}

.btn-primary:hover::after {
    opacity: 1
}

.btn-hero {
    background: var(--white);
    color: var(--lychee);
    font-weight: 800;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: bounceSlow 3s ease-in-out infinite;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--lychee-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    transition: all .2s;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
    color: var(--white)
}

.trust-row {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(253, 250, 251, .65);
    font-weight: 500;
}

.trust-item i {
    color: var(--lychee);
    font-size: 14px
}



/* ── SECTION WRAPPER ── */
.section {
    padding: 80px 0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--leaf);
    display: inline-block
}

.section-title {
    font-family: 'Baloo Da 2', cursive;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-desc {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 16px;
    color: #5a6152;
    line-height: 1.75;
    max-width: 560px;
}

/* ── VIDEO SECTION ── */
.video-section {
    background: var(--ink);
    padding: 80px 0
}

.video-section .section-title {
    color: var(--white)
}

.video-section .section-desc {
    color: rgba(255, 255, 255, .55)
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(229, 57, 53, .25);
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none
}

/* ── PRICING GRID ── */
.pricing-section {
    background: var(--white);
    padding: 80px 0
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 48px;
}

.price-card {
    background: var(--white);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background .2s;
}

.price-card:hover {
    background: var(--lychee-pale)
}

.price-card.hot {
    background: var(--grove);
    color: var(--white)
}

.price-card.hot:hover {
    background: var(--lychee)
}

.card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lychee-deep);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-card.hot .card-eyebrow {
    color: var(--lychee)
}

.card-name {
    font-family: 'Baloo Da 2', cursive;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.price-card.hot .card-name {
    color: var(--white)
}

.card-desc {
    font-size: 13px;
    color: #7a7a6a;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.price-card.hot .card-desc {
    color: rgba(255, 255, 255, .6)
}

.price-area {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-bottom: 20px;
}

.price-card.hot .price-area {
    border-color: rgba(255, 255, 255, .15)
}

.was {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-card.hot .was {
    color: rgba(255, 255, 255, .4)
}

.now {
    font-size: 32px;
    font-weight: 700;
    color: var(--leaf);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.price-card.hot .now {
    color: var(--lychee)
}

.now sup {
    font-size: 16px;
    vertical-align: super
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1.5px solid var(--leaf);
    color: var(--leaf);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-order:hover {
    background: var(--leaf);
    color: var(--white)
}

.price-card.hot .btn-order {
    background: var(--lychee);
    border-color: var(--lychee);
    color: var(--white);
}

.price-card.hot .btn-order:hover {
    background: var(--lychee-deep);
    border-color: var(--lychee-deep)
}

.hot-ribbon {
    position: absolute;
    top: 14px;
    right: -1px;
    background: var(--pulp);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
}

/* ── WHY + TRUST ── */
.split-section {
    background: var(--cream);
}

.split-half {
    padding: 80px 60px
}

.split-half:first-child {
    background: var(--cream);
    border-right: 1px solid var(--border)
}

.split-half:last-child {
    background: var(--lychee-pale)
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none
}

.fi-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--leaf);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 5px;
}

.split-half:last-child .fi-icon {
    background: var(--lychee-deep)
}

.fi-text {
    font-family: 'Baloo Da 2', cursive;
    font-size: 15px;
    font-weight: 600;
    color: var(--lychee-deep);
    line-height: 1.5
}

/* ── URGENCY STRIP ── */
.urgency-strip {
    background: var(--pulp);
    padding: 24px 0;
    text-align: center;
}

.urgency-strip p {
    font-family: 'Baloo Da 2', cursive;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stock-pill {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    animation: pulseGlow 2s infinite;
}

/* ── REDESIGNED PREMIUM CHECKOUT ── */
.checkout-section {
    background: radial-gradient(circle at 50% -20%, var(--lychee-pale) 0%, var(--cream) 60%);
    padding: 100px 0;
}

.checkout-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 57, 53, 0.1);
    overflow: hidden;
}

.checkout-header {
    background: var(--grove);
    padding: 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.checkout-header::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.checkout-header h2 {
    font-family: 'Baloo Da 2', cursive;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.checkout-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.checkout-body {
    padding: 40px;
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width: 768px) {
    .checkout-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 8px;
    letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 2px solid var(--border);
    background: var(--cream);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--ink);
    font-family: 'Baloo Da 2', cursive;
    transition: all .2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--lychee);
    box-shadow: 0 0 0 4px rgba(229, 57, 53, .1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

/* Large Clickable Cards */
.radio-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px
}

.r-card {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all .2s;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.r-card:hover {
    border-color: rgba(229, 57, 53, 0.3);
    background: var(--lychee-pale);
}

.r-card.active {
    border-color: var(--lychee);
    background: var(--lychee-pale);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.15);
}

.r-card.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--lychee);
}

.r-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.r-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.r-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
    background: var(--white);
}

.r-card.active .r-circle {
    border-color: var(--lychee);
    background: var(--lychee)
}

.r-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    transform: scale(0);
    transition: transform .15s;
}

.r-card.active .r-circle::after {
    transform: scale(1)
}

.r-name {
    font-family: 'Baloo Da 2', cursive;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink)
}

.r-price {
    font-weight: 800;
    font-size: 18px;
    color: var(--lychee);
    font-family: 'Space Grotesk', sans-serif
}

.r-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-left: 38px;
    display: none;
}

.r-card.active .r-card-body {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.r-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    overflow: hidden
}

.r-qty button {
    border: none;
    background: var(--cream);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: var(--bark);
    transition: background .15s;
}

.r-qty button:hover {
    background: var(--border)
}

.r-qty .r-num {
    min-width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink)
}

/* Premium Invoice */
.invoice {
    background: #fafaf9;
    border: 1px dashed rgba(229, 57, 53, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.inv-header {
    background: rgba(229, 57, 53, 0.05);
    padding: 16px 20px;
    font-family: 'Baloo Da 2', cursive;
    font-weight: 800;
    font-size: 16px;
    color: var(--lychee-deep);
    border-bottom: 1px dashed rgba(229, 57, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.inv-body {
    padding: 10px 20px;
}

.inv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.inv-row:last-child {
    border-bottom: none
}

.inv-label {
    color: #7a7068;
    font-weight: 600
}

.inv-val {
    font-weight: 700;
    color: var(--ink)
}

.inv-total {
    background: var(--white);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed rgba(229, 57, 53, 0.3);
}

.inv-total .lbl {
    color: var(--ink);
    font-weight: 800;
    font-size: 16px
}

.inv-total .val {
    color: var(--lychee);
    font-weight: 800;
    font-size: 24px;
    font-family: 'Space Grotesk', sans-serif
}

.btn-confirm {
    width: 100%;
    background: linear-gradient(135deg, var(--lychee) 0%, var(--lychee-deep) 100%);
    color: var(--white);
    font-family: 'Baloo Da 2', cursive;
    font-size: 20px;
    font-weight: 800;
    padding: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
    animation: pulseGlow 2.5s infinite;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.4);
}

.btn-confirm span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    opacity: .9
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .45);
    text-align: center;
    padding: 32px 24px;
    font-size: 13px;
    border-top: 3px solid var(--lychee);
}

footer strong {
    color: var(--white)
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .hero-content {
        padding: 40px 10px;
    }

    .split-section {
        grid-template-columns: 1fr
    }

    .split-half {
        padding: 56px 28px
    }

    .split-half:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }
}

@media(max-width:600px) {
    .hero-left {
        padding: 40px 20px
    }

    .section {
        padding: 56px 0
    }

    .checkout-container {
        border-radius: 0;
        border: none;
    }

    .checkout-section {
        padding: 40px 0;
    }
}