:root {
    --navy-deep: #051622;
    --navy-bright: #0047AB;
    --gold-primary: #FFB703;
    --gold-glow: rgba(255, 183, 3, 0.4);
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius-lg: 2.5rem;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ===== GLOBAL CONTAINER & SECTION ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

section {
    padding: 5.5rem 0;
    position: relative;
    isolation: isolate;
}

.hero-premium {
    position: relative;
    padding: 160px 5% 100px;
    background: #f8fbff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background Mesh */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob-1 {
    background: var(--navy-bright);
    top: -100px;
    left: -100px;
}

.blob-2 {
    background: var(--gold-primary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes move {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.hero-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    position: relative;
    z-index: 10;
}

/* Left Content Styling */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--navy-bright);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 71, 171, 0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy-deep);
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--navy-bright), #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    margin-top: 25px;
    color: #475569;
    max-width: 600px;
    line-height: 1.6;
}

.highlight {
    color: var(--navy-deep);
    font-weight: 700;
    border-bottom: 3px solid var(--gold-primary);
}

.pain-points {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    width: fit-content;
    padding: 10px 20px;
    border-radius: 15px;
    font-style: italic;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.gold-text {
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* CTA & Proof */
.cta-group {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-main {
    background: linear-gradient(135deg, #0047AB, #002e6e);
    color: white;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 71, 171, 0.3);
    transition: var(--transition-smooth);
}

.cta-main:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 71, 171, 0.4);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-main:hover .arrow-icon {
    transform: translateX(5px);
}

/* Right Visual (Glassmorphism) */
.visual-container {
    position: relative;
}

.main-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-header h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-deep);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #334155;
}

.check {
    color: #10b981;
    font-weight: 900;
}

.free-tag-premium {
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.badge-1 {
    background: #ff4d4d;
    color: white;
    top: -20px;
    right: -20px;
    transform: rotate(10deg);
}

.badge-2 {
    background: var(--navy-bright);
    color: white;
    bottom: 20px;
    left: -40px;
    transform: rotate(-5deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive (Settaakkal) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 100px;
    }

    .hero-sub,
    .pain-item,
    .cta-group {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        flex-direction: column;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .main-card {
        padding: 30px 20px;
    }

    .floating-badge {
        display: none;
    }

    /* Mobile-il clutter avoid cheyyaan */
}

/*==============Hero end =============================*/
/*==============Hero end =============================*/
/*==============Hero end =============================*/
.problem-premium {
    padding: 120px 5%;
    background: #ffffff;
    /* Clean white for contrast against hero */
    position: relative;
}

.section-tag {
    color: var(--navy-bright);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.problem-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.problem-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-deep);
    line-height: 1.2;
}

.text-danger {
    color: #e63946;
    /* To highlight the pain point */
}

.smart-pill {
    background: var(--gold-light);
    padding: 2px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--navy-deep);
}

/* Grid & Cards */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    padding: 50px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    position: relative;
}

/* Struggle Card (Left) */
.struggle-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.struggle-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.status-bar {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
}

.struggle-bar {
    background: #fee2e2;
    color: #991b1b;
}

.problem-list {
    margin-bottom: 30px;
}

.p-item {
    margin-bottom: 15px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-item::before {
    content: "✕";
    color: #ef4444;
    font-weight: 900;
}

.verdict {
    font-style: italic;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

/* Logic Card (Right - The 'Solution' Look) */
.logic-card-premium {
    background: var(--navy-deep);
    color: white;
    box-shadow: 0 30px 60px rgba(5, 22, 34, 0.2);
    transform: translateY(-20px);
    /* Lift it up to show importance */
}

.card-header-logic {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logic-list {
    list-style: none;
    padding: 0;
}

.logic-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--gold-primary);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--gold-primary);
}

.logic-intro {
    color: var(--gold-primary);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.logic-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: var(--gold-light);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .logic-card-premium {
        transform: translateY(0);
    }

    .problem-card {
        padding: 30px;
    }
}

/*============problem-premium end ============================*/
/*============problem-premium end ============================*/
/*============problem-premium end ============================*/


.secret-premium {
    padding: 100px 5%;
    background: #f0f4f8;
    position: relative;
}

.secret-icon-wrap {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.secret-head {
    text-align: center;
    margin-bottom: 60px;
}

.secret-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy-deep);
    font-weight: 900;
}

.text-glow {
    color: var(--navy-bright);
    position: relative;
}

/* The Main Container */
.secret-box-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Gapless for a unified card look */
    background: white;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Left Section - Narrative */
.secret-left-content {
    padding: 60px;
    background: #ffffff;
}

.secret-tag {
    background: #eff6ff;
    color: var(--navy-bright);
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
}

.soft-text {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.big-text {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 10px 0 25px;
    color: var(--navy-deep);
}

.gold-gradient {
    background: linear-gradient(90deg, #FFB703, #fb8500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secret-divider-animated {
    width: 60px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 10px;
    margin-bottom: 30px;
}

.focus-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--navy-deep);
    padding: 20px 25px;
    border-radius: 20px;
    color: white;
    width: fit-content;
}

.lock-icon {
    font-size: 1.5rem;
}

.focus-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

/* Right Section - Benefits */
.secret-right-content {
    padding: 60px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #e2e8f0;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.b-icon {
    font-size: 1.8rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.b-text strong {
    display: block;
    color: var(--navy-deep);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.b-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* Premium CTA */
.cta-secret-premium {
    background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep));
    color: white;
    padding: 20px 35px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 71, 171, 0.2);
}

.cta-secret-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 71, 171, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .secret-box-premium {
        grid-template-columns: 1fr;
    }

    .secret-right-content {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .secret-left-content,
    .secret-right-content {
        padding: 40px 30px;
    }
}

/*====================Scecret end ================================*/
/*====================Scecret end ================================*/
/*====================Scecret end ================================*/

.offer-premium {
    padding: 120px 5%;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brand-badge {
    color: var(--navy-bright);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offer-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.offer-head h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--navy-deep);
    font-weight: 900;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Flexbox Wrapper */
.offer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Floating Visuals */
.offer-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-kit {
    position: relative;
    height: 300px;
    width: 100%;
}

.kit-item {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float-alt 4s ease-in-out infinite alternate;
}

.item-1 {
    top: 10%;
    left: 10%;
    z-index: 3;
}

.item-2 {
    top: 40%;
    left: 40%;
    z-index: 2;
    animation-delay: 1s;
}

.item-3 {
    top: 70%;
    left: 15%;
    z-index: 1;
    animation-delay: 2s;
}

@keyframes float-alt {
    from {
        transform: translateY(0) rotate(-2deg);
    }

    to {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Offer Card */
.offer-card-premium {
    flex: 1.2;
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(10, 38, 71, 0.1);
    border: 1px solid #f1f5f9;
}

.offer-tag {
    background: #fff7ed;
    color: #c2410c;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.premium-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8fafc;
}

.list-icon {
    font-size: 1.5rem;
    background: #f1f5f9;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.list-text strong {
    display: block;
    color: var(--navy-deep);
    font-size: 1.1rem;
}

.list-text {
    color: #64748b;
    font-size: 0.95rem;
}

/* Final CTA */
.cta-offer-final {
    background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep));
    color: white;
    padding: 22px 40px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.cta-offer-final:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.4);
}

.no-spam {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .offer-wrapper {
        flex-direction: column;
    }

    .offer-visual {
        display: none;
    }

    /* Mobile-il focus card-il mathram */
    .offer-card-premium {
        padding: 40px 25px;
        width: 100%;
    }
}


/*===================Offers sec end==============*/
/*===================Offers sec end==============*/
/*===================Offers sec end==============*/

.who-premium {
    padding: 100px 5%;
    background: #fdfeff;
    /* Extremely clean white */
    position: relative;
}

.who-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.who-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.who-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-deep);
    font-weight: 900;
}

.text-blue {
    color: var(--navy-bright);
    font-weight: 700;
}

/* Main Container */
.who-grid-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.who-card-main {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f4f8;
    position: relative;
}

.check-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Checklist Styling */
.modern-checklist {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.check-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.check-item:hover {
    background: #f8fafc;
    transform: translateX(10px);
}

.check-box {
    width: 32px;
    height: 32px;
    background: #22c55e;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.check-text strong {
    display: block;
    font-size: 1.15rem;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.check-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Area */
.who-footer-cta {
    margin-top: 50px;
    text-align: center;
}

.cta-who-premium {
    background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep));
    color: white;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    transition: all 0.4s ease;
}

.cta-who-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(30, 58, 138, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .who-card-main {
        padding: 30px 20px;
    }

    .check-item:hover {
        transform: none;
    }

    .cta-who-premium {
        width: 100%;
        padding: 20px;
    }
}

/*========Who end =======================*/
/*========Who end =======================*/
/*========Who end =======================*/

.urgency-premium {
    padding: 100px 5%;
    background: #020617;
    /* Deepest Navy/Black for max contrast */
    position: relative;
    overflow: hidden;
}

/* Background Glowing Blurs */
.urgency-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--navy-bright);
    filter: blur(150px);
    opacity: 0.3;
    z-index: 1;
}

.urgency-card-v2 {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.dot-red {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.urgency-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
}

.urgency-sub {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.limit-display {
    margin-bottom: 40px;
}

.limit-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 183, 3, 0.3);
}

.limit-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Progress Bar Level-up */
.progress-container-premium {
    margin: 40px 0;
}

.progress-bar-bg {
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-fill {
    width: 87%;
    height: 100%;
    background: linear-gradient(90deg, #FFB703, #FF8C42, #ef4444);
    border-radius: 100px;
    position: relative;
    transition: width 1s ease-in-out;
}

.shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Warning Box */
.warning-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-box p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Final CTA */
.cta-urgency-premium {
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 22px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 0 40px rgba(255, 183, 3, 0.3);
}

.cta-urgency-premium:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
}

.secure-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #475569;
}

@media (max-width: 600px) {
    .urgency-card-v2 {
        padding: 40px 20px;
    }

    .limit-number {
        font-size: 3rem;
    }

    .progress-stats {
        flex-direction: column;
        gap: 5px;
    }

    .cta-urgency-premium {
        width: 100%;
        padding: 20px;
        font-size: 1rem;
    }
}

/*===========Urgency end=========================*/
/*===========Urgency end=========================*/
/*===========Urgency end=========================*/

.form-premium-v3 {
    padding: 120px 5%;
    background: #f8fbff;
    position: relative;
}

.form-wrapper-main {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.form-info-side h2 {
    font-size: 3rem;
    color: var(--navy-deep);
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
}

.form-info-side h2 span {
    color: var(--navy-bright);
}

.form-badge-gold {
    background: var(--gold-light);
    color: var(--navy-deep);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
}

.mini-benefits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m-item {
    font-weight: 600;
    color: #475569;
    font-size: 1.05rem;
}

/* Form Card */
.form-card-v3 {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(10, 38, 71, 0.12);
    border: 1px solid #eef2f6;
}

.form-head-v3 {
    margin-bottom: 35px;
}

.form-head-v3 h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.form-head-v3 p {
    color: #64748b;
    font-weight: 500;
}

/* Grid & Inputs */
.actual-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: span 2;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-deep);
    padding-left: 5px;
}

.input-group input,
.input-group select {
    padding: 16px 20px;
    border-radius: 15px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-size: 1rem;
    color: var(--navy-deep);
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--navy-bright);
    background: white;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.05);
}

/* Button Level Up */
.cta-form-v3 {
    grid-column: span 2;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--navy-bright), var(--navy-deep));
    color: white;
    padding: 20px;
    border: none;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-form-v3:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.btn-icon {
    font-size: 1.4rem;
}

.form-footer-trust {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .form-wrapper-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-info-side h2 {
        font-size: 2.2rem;
    }

    .mini-benefits {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .actual-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .form-card-v3 {
        padding: 35px 20px;
    }
}

/*============Form end=====================*/
/*============Form end=====================*/
/*============Form end=====================*/

.footer-premium-v4 {
    padding: 100px 5% 40px;
    background: #020617;
    /* Matches the urgency section for continuity */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Floating Glow in Footer */
.footer-glow-circle {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.footer-cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.strategy-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #94a3b8;
}

.arrow {
    color: var(--gold-primary);
    margin-left: 10px;
}

.cta-footer-v4 {
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 22px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.2);
}

.cta-footer-v4:hover {
    transform: translateY(-5px) scale(1.03);
    background: white;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

/* Bottom Links Area */
.footer-links-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-branding p {
    color: #64748b;
    max-width: 400px;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

/* Copyright Bar */
.footer-copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal span:hover {
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-cta-card {
        padding: 50px 20px;
    }

    .strategy-steps {
        flex-direction: column;
        gap: 10px;
    }

    .arrow {
        transform: rotate(90deg);
        display: inline-block;
        margin: 0;
    }

    .footer-links-area {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-branding p {
        margin: 0 auto;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }
}

/*=================== Fotter end ==============*/
/*=================== Fotter end ==============*/
/*=================== Fotter end ==============*/






/* =========================================================
   FIX FOR OVERFLOW & RESPONSIVENESS (10/10 ELITE UPDATE)
   ========================================================= */

/* 1. Global Reset for Overflow */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Ithaanu overflow kalayaan ulla main line */
}

/* 2. Container Fix */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 3. Hero Section Responsive Fix */
@media (max-width: 992px) {
    .hero-premium {
        padding: 120px 0 60px;
        text-align: center;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-left {
        order: 1;
    }
    .hero-right {
        order: 2;
        display: flex;
        justify-content: center;
    }
    .cta-group {
        flex-direction: column;
        gap: 20px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .visual-container {
        width: 100%;
        max-width: 400px;
    }
}

/* 4. Problem & Secret Section Grid Fix */
@media (max-width: 850px) {
    .problem-grid, .secret-box-premium {
        grid-template-columns: 1fr !important;
    }
    .secret-right-content {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
    .problem-card {
        padding: 30px 20px;
    }
    .logic-card-premium {
        transform: translateY(0); /* Remove desktop lift for mobile */
    }
}

/* 5. Offer Section Wrapper Fix */
@media (max-width: 992px) {
    .offer-wrapper {
        flex-direction: column;
    }
    .offer-visual {
        display: none; /* Hide floating elements on mobile for speed */
    }
    .offer-card-premium {
        padding: 30px 20px;
    }
}

/* 6. Form Grid Fix (Ithaanu sir paranja input area fix) */
@media (max-width: 768px) {
    .form-wrapper-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .actual-form-grid {
        grid-template-columns: 1fr !important; /* Forces inputs to full width */
        gap: 15px;
    }
    .full-width {
        grid-column: span 1 !important;
    }
    .form-card-v3 {
        padding: 30px 15px;
    }
    .cta-form-v3 {
        padding: 18px;
        font-size: 1rem;
    }
}

/* 7. Footer Strategy Steps Mobile Fix */
@media (max-width: 600px) {
    .strategy-steps {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .strategy-steps .arrow {
        transform: rotate(90deg); /* Downward arrow for mobile */
        margin: 5px 0;
    }
    .footer-title {
        font-size: 1.8rem;
    }
}

/* 8. Small Devices (Iphone SE etc) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .limit-number {
        font-size: 2.5rem;
    }
    .p-num {
        font-size: 2rem;
    }
}

/* Image to explain the flexbox/grid flow */

/* 3. Form Input Grid Fix */
@media (max-width: 768px) {
    .form-wrapper-main {
        grid-template-columns: 1fr; /* Info side-um Form-um vertical aakum */
        text-align: center;
        padding: 20px 0;
    }

    .form-card-v3 {
        padding: 30px 15px; /* Form-inte ullile padding kurachu */
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .actual-form-grid {
        grid-template-columns: 1fr !important; /* Forces Name, Email etc. into single column */
        gap: 15px;
    }

    .input-group {
        width: 100%;
        grid-column: span 1 !important; /* Oronnum full width edukkum */
    }

    .input-group input, 
    .input-group select {
        width: 100%;
        box-sizing: border-box; /* Width calculation error kalayan */
        font-size: 16px; /* Mobile-il zoom aavathirikkaan nallathaanu */
    }

    .cta-form-v3 {
        width: 100%;
        grid-column: span 1 !important;
        padding: 18px;
        font-size: 1rem;
    }

    /* Extra Info elements scale down */
    .form-info-side h2 {
        font-size: 1.8rem;
    }
}

/* 4. Small Device Polish (< 380px) */
@media (max-width: 380px) {
    .form-head-v3 h3 {
        font-size: 1.4rem;
    }
    .form-card-v3 {
        padding: 25px 10px;
    }
}


/* SweetAlert2 Custom Styling */
.mentvecity-popup {
    border-radius: 30px !important;
    background: #ffffff !important;
    padding: 40px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
    font-family: 'Poppins', sans-serif !important;
}

.mentvecity-title {
    color: #051622 !important; /* Navy Deep */
    font-weight: 800 !important;
    font-size: 1.6rem !important;
}

.popup-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
}

/* Custom Button UI */
.mentvecity-button {
    background: linear-gradient(135deg, #0047AB, #051622) !important;
    color: white !important;
    padding: 15px 35px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: inline-block !important;
}

.mentvecity-button:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.3) !important;
}

.mentvecity-button-error {
    background: #ef4444 !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 100px !important;
    border: none !important;
    font-weight: 700 !important;
}

/* Premium Reveal Base Styles */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Staggered Delay for Grid Items (Cards coming one by one) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }

/* Special Animation for Left/Right Slide-ins */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-up effect for the Main Form or Special Kits */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}









#fixedTimerBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #051622, #0047AB);
    color: #fff;
    z-index: 9999;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.timer-container {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    gap: 10px;
    align-items: center;
}

#timerDisplay {
    color: #FFB703;
    font-weight: 900;
    font-size: 18px;
}