.qr-image {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

section {
    padding: var(--section-padding-desktop);
    width: 100%;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   PRO-LEVEL FIX: PURE IFRAME SCALING (SHRINK) 🔴
   This fixes the large header issue proportionate style.
   ========================================= */

#demo-iframe-container {
    width: 100% !important;
    height: 100% !important;
    position: relative;
}

/* 🔴 THE MASTER PRO FIX 🔴 */
#live-demo-frame {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    /* 1. App ka actual, base viewport set karo (Jaise standard iPhone) */
    width: 375px !important;  /* Logical Width */
    height: 812px !important; /* Logical Height (Standard iPhone 11-15 Pro) */

    /* 2. SLIGHT SHRINK LOGIC 🔴
       Chhota mobile screen (from .mobile-mockup__screen above) is approx ~284px (320*0.89)
       Scale Factor = 284 / 375 ≈ 0.757
       Hum 0.76 (76% size) par pure app ko shrink kar denge. */
    transform: scale(0.76) !important;
    transform-origin: top left !important; /* Scale top left se shuru hoga */

    border: none !important;
    background: #fff !important;
    z-index: 5 !important;

    /* Slightly inner curvature for professional finish */
    border-radius: 16px !important; 
}

/* Hide Iframe Scrollbar */
#live-demo-frame::-webkit-scrollbar { display: none; }
#live-demo-frame { -ms-overflow-style: none; scrollbar-width: none; }

#demo-overlay {
    /* Overlay ko full size rakhna hai static chat content ke liye */
    width: 100% !important;
    height: 100% !important;
    padding: 20px !important; /* static chat bubbles ko full padding milegi */
    z-index: 10;
}





/* =========================================
   VARIABLES & THEME
   ========================================= */
:root {
    /* Backgrounds */
    --bg-dark: #05020a;
    --bg-secondary: #0a0512;

    /* Accents */
    --primary: #ff4da6;
    --primary-glow: rgba(255, 77, 166, 0.4);
    --secondary: #9d4edd;

    /* Text */
    --text-main: #ffffff;
    --text-muted: #b3b3b3;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.2);

    /* Utilities */
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    /* Layout */
    --container-width: 1100px;
    --section-padding-desktop: 120px 24px;
    --section-padding-mobile: 80px 20px;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
}

/* =========================================
   GLOBAL RESET
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, var(--bg-secondary) 0%, var(--bg-dark) 80%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TYPOGRAPHY & UTILITIES
   ========================================= */
.text-center {
    text-align: center;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

section {
    padding: var(--section-padding-desktop);
    max-width: var(--container-width);
    margin: 0 auto;
}

.check-icon {
    color: var(--primary);
    margin-right: 8px;
    font-weight: bold;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn--primary:hover {
    box-shadow: 0 8px 30px var(--primary-glow);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn--secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--massive {
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* --- Cards (Base Style) --- */
.base-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
}

.base-card:hover {
    transform: translateY(-6px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

/* =========================================
   SECTIONS
   ========================================= */

/* --- Navbar (Bulletproof Anti-Rubber Fix) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    /* 🔴 STRICT HEIGHT & PADDING: Ab yeh rubber ki tarah nahi khichega */
    height: 65px !important; 
    padding: 12px 0 !important; 

    background: transparent;
    border-bottom: 1px solid transparent;

    /* 🔴 STRICT TRANSITION: Sirf background change hoga, size lock kar diya hai */
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease !important;
}

.navbar.scrolled {
    background: rgba(5, 2, 10, 0.95) !important; 
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;

    /* Scrolled hone par bhi exact same size rahega */
    height: 65px !important; 
    padding: 12px 0 !important; 
}


.navbar__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.navbar__highlight-x {
    color: var(--primary);
    text-shadow: 0 0 16px var(--primary-glow);
}

.navbar__links ul {
    display: flex;
    gap: 32px;
}

.navbar__link {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
}

.navbar__link:hover {
    color: var(--text-main);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 🔴 NAYA CODE: Sirf Header wale button ko chhota aur slim karne ke liye */
.navbar__actions .btn {
    padding: 8px 18px !important; /* Button ki height aur width kam ki */
    font-size: 0.85rem !important; /* Text thoda chhota kiya */
    border-radius: 100px !important; /* Golai maintain rakhne ke liye */
}


.navbar__badge {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
    display: none;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero__background-effects {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.12) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero__content {
    max-width: 800px;
}

.hero__heading {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #ffd1e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero__story {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero__trust-micro {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* --- What They'll Experience (Premium Upgrade) --- */
.experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
}

.experience-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
    cursor: default;
}

.experience-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 77, 166, 0.05); /* Pink tint on hover */
    border-color: rgba(255, 77, 166, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.experience-card__icon {
    font-size: 2.5rem;
    margin-right: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.experience-card__content {
    flex: 1;
}

.experience-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.experience-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mobile responsive padding fix */
@media (max-width: 768px) {
    .experience__grid {
        grid-template-columns: 1fr;
    }
}


/* --- Demo Section --- */
.demo__mockup-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* --- 1. SLEEK IMAGE MOCKUP UPGRADE --- */
.mobile-mockup {
    width: 320px !important; 
    height: 650px !important;
    padding: 0 !important; 
    position: relative;
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}





/* 🔴 THE MAGIC TRICK: Sirf Frame ka size badhana bina display ko chhede */
.mobile-mockup::after {
    content: '';
    position: absolute;

    /* 🎛️ CONTROL PANEL FOR FRAME SIZE & POSITION 🎛️ */

    /* 1. Frame ko Bada Karein (100% se zyada value daalein) */
    width: 125% !important;   /* Frame ki Chaudai (Motaai) badhayega */
    height: 110% !important;  /* Frame ki Lambai badhayega */

    /* 2. Frame ko exact Center mein laayein (Minus value se adjust karein) */
    top: -5% !important;      /* Frame ko thoda Upar khiskane ke liye */
    left: -12.5% !important;  /* Frame ko thoda Left khiskane ke liye */

    /* Image path aur baki settings same rahengi */
    background: transparent url('../assets/image/frame.png') center center / 100% 100% no-repeat !important;
    z-index: 50 !important; 
    pointer-events: none !important; 
}






    /* Zaroori: Iske bina 'Tap to Open' button click nahi hoga, ye clicks ko aar-paar jane dega */
    pointer-events: none !important; 
}

/* Old notch ko completely hata do */
.mobile-mockup::before { display: none !important; }


/* --- 2. Defining the *Screen Area* inside the PNG Frame --- */
.mobile-mockup__screen {
    position: absolute !important;

    /* 🔴 AAPKO IS IMAGE KE ANUSAR YE NUMBERS TWEAK KARNE PAD SAKTE HAIN 🔴 */
    top: 2.2% !important;   /* Distance from top to screen start */
    left: 5.5% !important;  /* Distance from left to screen start */
    width: 89% !important;  /* Width of the actual screen area */
    height: 95.6% !important; /* Height of the actual screen area */

    /* Match inner frame curvature */
    border-radius: 20px !important; 
    overflow: hidden !important;
    background: #000;
    padding: 0 !important;
}


.mockup__placeholder-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mockup__message-bubbles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: auto;
}

.bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bubble--received {
    align-self: flex-start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 4px;
}

.bubble--sent {
    align-self: flex-end;
    background: rgba(255, 77, 166, 0.15);
    border: 1px solid rgba(255, 77, 166, 0.25);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.mockup__open-when-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.btn--preview {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.btn--preview:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* --- Features --- */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.feature-card {
    composes: base-card;
}

.feature-card__icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px;
    background: rgba(255, 77, 166, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 77, 166, 0.2);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Use Cases --- */
.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.use-case-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.use-case-card:hover {
    border-color: rgba(255, 77, 166, 0.3);
    background: rgba(255, 77, 166, 0.05);
    transform: translateY(-4px);
}

.use-case-card__title {
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
}

/* --- Public Reviews (Emotional Premium Feed) --- */
.public-reviews {
    padding: 100px 0; /* Horizontal scroll ke liye side padding hatayi */
    background: radial-gradient(circle at center, rgba(255, 77, 166, 0.05) 0%, transparent 70%);
}

.reviews-header {
    padding: 0 24px;
}

.reviews-grid.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 40px 24px 60px 24px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-behavior: smooth;
    cursor: grab;
}

.reviews-grid.horizontal-scroll::-webkit-scrollbar {
    display: none; /* Safari / Chrome */
}

.reviews-grid.horizontal-scroll:active {
    cursor: grabbing;
}

.review-card {
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15); /* Premium Golden Glow */
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Micro-interaction: Hover/Tap */
.review-card:hover {
    transform: scale(1.03) translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1), 0 0 30px rgba(255, 77, 166, 0.2);
    z-index: 10;
}

/* Auto Generated Top Emotion Tag */
.review-top-tag {
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(135deg, #111, #222);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    z-index: 2;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    margin-top: 10px;
}

.review-card__stars {
    font-size: 1.15rem;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

.review-card__time {
    font-size: 0.75rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.review-context-line {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
}

.review-card__quote {
    flex-grow: 1;
    position: relative;
    margin-bottom: 24px;
}

.review-card__quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3.5rem;
    color: rgba(255, 77, 166, 0.15);
    font-family: var(--font-head);
    line-height: 1;
}

.review-card__text {
    font-size: 1.15rem;
    color: #f8fafc;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.review-card__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}



.review-card__author .author-name {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.review-card__author .trust-badge {
    font-size: 0.85rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}


/* --- Final CTA & Trust --- */
.trust-cta-wrapper {
    position: relative;
    padding: 100px 24px;
    margin-top: 40px;
}

.trust-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.15) 0%, transparent 60%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

.trust-section {
    margin-bottom: 60px;
}

.trust-section__list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-section__item {
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.final-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.final-cta__urgency-text {
    margin-bottom: 32px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 24px;
    background: #030106;
}

.footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer__social-links {
    display: flex;
    gap: 32px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    font-weight: 500;
}

.social-icon:hover {
    color: var(--text-main);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Desktop Minimum Adjustments */
@media (min-width: 769px) {
    .navbar__badge {
        display: block;
    }

    .footer__container {
        flex-direction: row;
        justify-content: space-between;
    }

    .what-you-get__list {
        max-width: 600px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .what-you-get__item {
        width: calc(50% - 8px);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile);
    }

    .navbar__links {
        display: none;
    }

    .hero {
        padding-top: 140px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .trust-section__list {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .mobile-mockup {
        width: 100%;
        max-width: 320px;
        height: 600px;
    }

    .what-you-get__item {
        justify-content: center;
    }
}


/* =========================================
   9. MOBILE SIDEBAR MENU (NEW)
   ========================================= */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Default hidden */
    width: 260px;
    height: 100vh;
    background: rgba(10, 5, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    z-index: 2000;
    padding: 80px 30px;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sidebar.active {
    right: 0; /* Slide in */
}

.sidebar__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sidebar__close:hover {
    color: var(--primary);
}

.sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar__link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.sidebar__link:hover {
    color: var(--primary);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Adjustments for Navbar */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block; /* Show menu icon on mobile */
    }

    /* Optional: Agar mobile me space kam pade toh CTA button hide/adjust kar sakte hain */
    /* .navbar__actions .btn { display: none; } */
}


/* =========================================
   ELITE LEVEL CARDS (Card 8 & 9)
   ========================================= */

/* Make them span the full width of the grid */
.experience-card--special {
    grid-column: 1 / -1; /* Poori width cover karega */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

/* Card 8: Emotional Trigger Line */
.emotional-trigger-text {
    font-family: 'Playfair Display', serif; /* Agar ye font nahi hai toh normal default bhi mast lagega */
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-style: italic;
    font-weight: 600;
    color: #ffffff;
    /* Glowing effect */
    text-shadow: 0 0 15px rgba(255, 77, 166, 0.6);
    /* Elite Animation: Fade & Zoom */
    animation: eliteFadeZoom 3s ease-in-out infinite alternate;
}

/* Card 9: Trust Badge Pill */
.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 100px; /* Pill shape */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Elite Animation: Soft Heart Pulse */
.heart-pulse-icon {
    display: inline-block;
    font-size: 1.1rem;
    animation: heartBeat 1.5s infinite;
}

/* =========================================
   ELITE ANIMATIONS (Keyframes)
   ========================================= */

@keyframes eliteFadeZoom {
    0% { 
        opacity: 0.8; 
        transform: scale(0.98); 
        text-shadow: 0 0 10px rgba(255, 77, 166, 0.3); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.02); 
        text-shadow: 0 0 25px rgba(255, 77, 166, 0.9); 
    }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}


/* =========================================
   10. FULL SCREEN PREVIEW & BOT
   ========================================= */

/* Expand Button */
.expand-demo-btn {
    position: absolute;
    bottom: -60px; /* Mockup ke theek niche */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 77, 166, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.expand-demo-btn:hover { 
    transform: translateX(-50%) scale(1.08); 
    box-shadow: 0 12px 25px rgba(255, 77, 166, 0.6);
}

/* Full Screen Modal Background */
.fullscreen-demo-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 2, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: 0.4s ease;
}
.fullscreen-demo-modal.active { 
    opacity: 1; visibility: visible; 
}

/* Modal ke andar Iframe ka Box */
.fs-iframe-container {
    width: 100%; max-width: 450px;
    height: 90vh; /* Pura lamba khulega */
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 77, 166, 0.2);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fullscreen-demo-modal.active .fs-iframe-container {
    transform: scale(1);
}

/* Close Button (X) */
.close-fs-btn {
    position: absolute;
    top: 25px; right: 25px;
    background: rgba(255,255,255,0.1);
    color: white; border: 1px solid rgba(255,255,255,0.2);
    width: 45px; height: 45px; border-radius: 50%;
    font-size: 22px; cursor: pointer; transition: 0.3s;
}
.close-fs-btn:hover { 
    background: var(--primary); 
    border-color: var(--primary); 
    transform: scale(1.1); 
}