@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ─── TOKENS & DESIGN SYSTEM ─────────────────────────────────── */
:root {
    /* Brand Colors */
    --color-primary: #7C3AED;
    --color-primary-light: #8B5CF6;
    --color-primary-dark: #6D28D9;
    --color-primary-rgb: 124, 58, 237;

    --color-secondary: #FF5A79;
    --color-accent: #38BDF8;

    /* Base Colors - LIGHT THEME (Secondary) */
    --color-bg: #F4F6F9;
    --color-bg2: #FFFFFF;
    --color-text: #0F172A;
    --color-text-light: #475569;
    
    --color-success: #10B981;
    --color-warning: #F59E0B;

    /* Glass & Effects */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --blur: 24px;
    
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
    /* Base Colors - DARK THEME (Primary) */
    --color-bg: #030305;
    --color-bg2: #0B0B13;
    --color-text: #F8FAFC;
    --color-text-light: #A1A1AA;

    --glass-bg: rgba(11, 11, 19, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.25);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ─── GLOBAL NAV ─────────────────────────────────────────────── */
.global-nav {
    background: var(--color-bg2);
    color: var(--color-text);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 1100;
}

.global-nav-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    padding: 0 28px;
}

.global-nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.global-nav-link:hover {
    color: var(--color-text);
    background: rgba(124, 58, 237, 0.05);
}

.global-nav-link.active {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
}

/* ─── MAIN HEADER ────────────────────────────────────────────── */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

header.scrolled {
    box-shadow: var(--shadow);
    padding: 12px 0;
    background: rgba(var(--color-bg2), 0.85);
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-text) 20%, var(--color-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-btn {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 99px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-btn:hover {
    background: var(--color-bg2);
    color: var(--color-text);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.gift-btn {
    background: linear-gradient(135deg, rgba(255, 90, 121, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(255, 90, 121, 0.3);
    color: var(--color-text);
}

.gift-btn:hover {
    background: linear-gradient(135deg, rgba(255, 90, 121, 0.2), rgba(124, 58, 237, 0.2));
    border-color: var(--color-secondary);
}

#theme-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    cursor: pointer;
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 140px 20px 200px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 40%, rgba(255, 90, 121, 0.1) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 82px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    background: linear-gradient(to right bottom, #FFFFFF 30%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
    text-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

[data-theme="light"] .hero h1 {
    background: linear-gradient(to right bottom, #0F172A 30%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 22px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto 48px;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.4);
}

.badge-icon {
    color: var(--color-primary-light);
    font-size: 16px;
}

/* ─── FLASH SALE CONTAINER & MASCOT ─────────────────────────── */
.flash-sale-banner-container {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 40px auto 40px;
    padding: 0 28px;
    z-index: 10;
}

.banner-mascot-wrapper {
    position: absolute;
    top: -70px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1; /* Positioned behind the banner */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-mascot-wrapper.hidden {
    opacity: 0 !important;
    transform: translateY(20px) scale(0.8) !important;
    pointer-events: none;
}

.banner-mascot-character {
    position: relative;
    width: 85px;
    height: 85px;
    cursor: pointer;
    animation: mascot-banner-float 3.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.banner-mascot-character:hover {
    transform: scale(1.1);
}

.banner-mascot-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    border: 3px solid #ff7e67;
    box-shadow: 0 8px 20px rgba(255, 126, 103, 0.35);
    background: var(--color-bg2);
    transition: all 0.3s ease;
}

/* Pointing hand pointing down to the plans */
.pointing-hand {
    position: absolute;
    bottom: -16px;
    left: -16px;
    font-size: 28px;
    color: #FBBF24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.9);
    animation: hand-point-down 1.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hand-point-down {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(8px) scale(1.2) rotate(-5deg); }
}

@keyframes mascot-banner-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}

/* Banner mascot speech bubble */
.banner-mascot-bubble {
    position: absolute;
    bottom: 95px;
    right: 0;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(255, 126, 103, 0.4);
    border-radius: 16px;
    padding: 14px 18px;
    width: 260px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 126, 103, 0.2);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 13.5px;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

[data-theme="light"] .banner-mascot-bubble {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 126, 103, 0.5);
    color: #1a1a1a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 126, 103, 0.1);
}

.banner-mascot-bubble p {
    margin: 0;
    font-weight: 500;
}

.bubble-close {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
}

.bubble-close:hover {
    opacity: 1;
}

.banner-mascot-pointing {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #FBBF24;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: text-pulse-gold 1.5s infinite;
}

@keyframes text-pulse-gold {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; text-shadow: 0 0 8px rgba(251, 191, 36, 0.7); }
}

/* Plan Highlight Animation */
.plan-highlight {
    animation: highlight-pulse 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 200 !important;
}

@keyframes highlight-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.8);
    }
    30% {
        transform: scale(1.06);
        box-shadow: 0 0 40px 15px rgba(251, 191, 36, 0.9);
        border-color: #FBBF24 !important;
    }
    70% {
        transform: scale(1.06);
        box-shadow: 0 0 40px 15px rgba(251, 191, 36, 0.9);
        border-color: #FBBF24 !important;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

@media (max-width: 768px) {
    .flash-sale-banner-container {
        padding: 0 20px;
    }
    .banner-mascot-wrapper {
        right: 40px;
        top: -60px;
    }
    .banner-mascot-character {
        width: 70px;
        height: 70px;
    }
    .banner-mascot-bubble {
        width: 220px;
        bottom: 80px;
        font-size: 12px;
        padding: 10px 14px;
    }
    .pointing-hand {
        font-size: 22px;
        bottom: -12px;
        left: -12px;
    }
}

@media (max-width: 576px) {
    .banner-mascot-wrapper {
        right: 30px;
        top: -50px;
    }
    .banner-mascot-character {
        width: 60px;
        height: 60px;
    }
    .banner-mascot-bubble {
        width: 190px;
        bottom: 70px;
        font-size: 11px;
        padding: 8px 12px;
    }
    .pointing-hand {
        font-size: 18px;
        bottom: -8px;
        left: -8px;
    }
}

/* ─── FLASH SALE BANNER ──────────────────────────────────────── */
.flash-sale-banner {
    background: linear-gradient(135deg, rgba(220, 39, 67, 0.1), rgba(204, 35, 102, 0.1));
    border: 1px solid rgba(220, 39, 67, 0.3);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.15);
    backdrop-filter: blur(16px);
}

.flash-sale-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.flash-icon {
    font-size: 40px;
    animation: pulse-shadow 2s infinite;
}

.flash-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
    background: linear-gradient(to right bottom, #fff, #ff7e67);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flash-text p {
    font-size: 15px;
    color: var(--color-text-light);
    font-weight: 500;
}

.flash-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.time-block span {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: #ff7e67;
    line-height: 1;
}

.time-block small {
    font-size: 10px;
    color: var(--color-text-light);
    font-weight: 700;
    margin-top: 4px;
}

.time-sep {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-text-light);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

/* ─── PLANS SECTION ──────────────────────────────────────────── */
.plans-section {
    max-width: 1250px;
    margin: -80px auto 100px;
    padding: 0 28px;
    position: relative;
    z-index: 20;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.plan-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
}

.plan-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(124, 58, 237, 0.2);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
    z-index: 10;
}

.plan-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plan-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plan-card:hover .plan-image img {
    transform: scale(1.1) translateY(-5px);
}

/* Make Claude logo a little bigger to fit like Adobe */
.plan-image img[alt="Claude AI"] {
    transform: scale(1.8);
}

.plan-card:hover .plan-image img[alt="Claude AI"] {
    transform: scale(1.9) translateY(-5px);
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 26px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.plan-price {
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price-subtitle {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 500;
}

.plan-content {
    flex: 1;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.feature-check {
    color: var(--color-primary-light);
    font-size: 16px;
}

.plan-footer {
    display: flex;
    gap: 12px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-bg2);
    color: var(--color-text);
    border: 1px solid var(--glass-border);
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.3);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ─── CONTACT & FOOTER ───────────────────────────────────────── */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.03));
    position: relative;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
}

.contact-method-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-method-title {
    font-size: 20px;
    font-weight: 700;
}

.contact-method-desc {
    font-size: 14px;
    color: var(--color-text-light);
}

footer {
    background: var(--color-bg2);
    border-top: 1px solid var(--glass-border);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-primary-light);
}

/* ─── MASCOT ─────────────────────────────────────────────────── */
#mascot {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1200;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#mascot img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease;
    animation: mascot-float 4s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.1);
    background: var(--color-bg2);
}

/* Mascot States */
.mascot-happy {
    animation: mascot-flip 1s ease-in-out !important;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.6) !important;
    border-color: var(--color-success) !important;
}

.mascot-error {
    animation: mascot-shake 0.5s ease-in-out !important;
    box-shadow: 0 10px 40px rgba(255, 90, 121, 0.6) !important;
    border-color: var(--color-secondary) !important;
}

.mascot-thinking {
    animation: mascot-pulse 2s ease-in-out infinite !important;
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.6) !important;
    border-color: var(--color-accent) !important;
}

@keyframes mascot-flip {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

@keyframes mascot-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px) rotate(-5deg); }
    40% { transform: translateX(10px) rotate(5deg); }
    60% { transform: translateX(-10px) rotate(-5deg); }
    80% { transform: translateX(10px) rotate(5deg); }
}

@keyframes mascot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08) rotate(2deg); }
}

#mascot:hover img {
    transform: scale(1.08) translateY(-4px);
}

@keyframes mascot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

#mascot-bubble {
    position: absolute;
    bottom: 90px;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
    white-space: nowrap;
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

#mascot-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 30px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--color-primary) transparent transparent transparent;
    transition: all 0.3s ease;
}

/* Bubble States */
#mascot-bubble.state-happy {
    background: var(--color-success);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}
#mascot-bubble.state-happy::after {
    border-color: var(--color-success) transparent transparent transparent;
}

#mascot-bubble.state-error {
    background: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(255, 90, 121, 0.4);
}
#mascot-bubble.state-error::after {
    border-color: var(--color-secondary) transparent transparent transparent;
}

#mascot-bubble.state-thinking {
    background: var(--color-accent);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}
#mascot-bubble.state-thinking::after {
    border-color: var(--color-accent) transparent transparent transparent;
}

#mascot-menu {
    position: absolute;
    bottom: 100px;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.mascot-option {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: var(--color-text);
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-align: left;
    transition: all 0.2s ease;
}

.mascot-option:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(-4px);
}

.hidden {
    display: none !important;
}

/* ─── CANVA FEEDBACK / REWARD SECTION ────────────────────────── */
#free-canva-section {
    padding: 80px 20px;
}

.feedback-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    text-align: center;
}

.feedback-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

[data-theme="light"] .form-input {
    background: rgba(255,255,255,0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.star-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-btn.active, .star-btn:hover {
    color: #FBBF24;
    transform: scale(1.1);
}

.form-group.invalid .form-input {
    border-color: var(--color-secondary);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    /* Global Nav Link Adjustments */
    .global-nav-container {
        justify-content: center;
        gap: 8px;
        padding: 0 16px;
        flex-wrap: wrap;
    }
    .global-nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }

    /* Header Social Links Hiding */
    #facebook-btn,
    #instagram-btn,
    #whatsapp-btn {
        display: none !important;
    }

    /* Hero Typography */
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 16px; }

    /* Plans section and Contact methods vertical stacks */
    .plans-grid { grid-template-columns: 1fr; }
    .contact-methods { grid-template-columns: 1fr; }

    /* Disable scroll animations on mobile for guaranteed visibility */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Promo Mascot Coordinates refinement */
    .banner-mascot-wrapper {
        right: 20px;
        top: -55px;
    }
    .banner-mascot-bubble {
        width: 210px;
        bottom: 75px;
        right: 0;
        font-size: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    /* Header layout optimization */
    .logo-text {
        font-size: 20px;
    }
    .social-btn span {
        display: none !important;
    }
    .social-btn {
        padding: 8px 12px;
    }

    /* Chatbot Mascot Bubble overflow prevention */
    #mascot-bubble {
        white-space: normal;
        width: 220px;
        max-width: calc(100vw - 80px);
        right: 0;
    }

    /* Plan card buttons stacked layout */
    .plan-footer {
        flex-direction: column;
        gap: 10px;
    }
    .plan-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
}

/* ─── BENEFITS SECTION ───────────────────────────────────────── */
.benefits-section {
    max-width: 1250px;
    margin: 40px auto 100px;
    padding: 0 28px;
    position: relative;
    z-index: 20;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 32px 24px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 28px;
    color: var(--color-primary-light);
    margin-bottom: 16px;
    background: rgba(124, 58, 237, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1;
}

/* ─── FEEDBACK SECTION ───────────────────────────────────────── */
.feedback-section {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 28px;
    text-align: center;
}

.feedback-container {
    position: relative;
    z-index: 10;
}

.feedback-badge {
    display: inline-block;
    background: rgba(255, 90, 121, 0.1);
    color: var(--color-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 90, 121, 0.2);
}

.feedback-card-wrapper {
    position: relative;
    margin: 40px auto 0;
    max-width: 600px;
    perspective: 1000px;
}

.feedback-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.required {
    color: var(--color-secondary);
}

.optional {
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 400;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px 14px 44px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-textarea {
    padding-left: 16px;
    min-height: 120px;
    resize: vertical;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.error-message {
    display: none;
    color: var(--color-secondary);
    font-size: 12px;
    margin-top: 6px;
}

.form-group.invalid .error-message {
    display: block;
}

.btn-submit-feedback {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: var(--shadow-glow);
}

/* Success Card */
.success-card {
    text-align: center;
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.success-icon {
    font-size: 60px;
    color: var(--color-success);
    position: relative;
    z-index: 2;
}

.success-lead {
    color: var(--color-text-light);
    margin: 10px 0 30px;
}

.reward-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.reward-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.reward-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.reward-instructions ol {
    padding-left: 20px;
    margin-top: 10px;
    color: var(--color-text-light);
}

.reward-instructions li {
    margin-bottom: 8px;
}

.claim-reward-btn {
    width: 100%;
    margin-top: 20px;
    background: var(--color-success);
    color: white;
}

/* Feedbacks Wall */
.feedbacks-wall {
    margin-top: 80px;
    text-align: left;
}

.wall-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feedback-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.feedback-name {
    font-weight: 600;
    font-size: 15px;
}

.feedback-rating {
    color: #FBBF24;
    font-size: 12px;
}

.feedback-text {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── CHECKOUT PAGE ─────────────────────────────────────────── */
.checkout-section {
    padding: 60px 20px 100px;
    min-height: calc(100vh - 200px);
}

.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--color-primary-light);
}

.checkout-plan-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.checkout-plan-image-wrapper {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.checkout-plan-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-plan-info h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
}

.checkout-desc {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 12px;
}

.checkout-price {
    font-size: 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--color-primary-light);
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.card-glass h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.features-list-grid .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activation-steps {
    list-style: none;
    padding: 0;
}

.activation-steps li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.activation-steps li:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.step-text {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 4px;
}

.payment-card {
    text-align: center;
    position: sticky;
    top: 100px;
}

.payment-header {
    margin-bottom: 24px;
}

.payment-icon {
    font-size: 40px;
    color: #10B981;
    margin-bottom: 15px;
}

.payment-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.payment-header p {
    color: var(--color-text-light);
    font-size: 14px;
}

.qr-wrapper {
    background: white;
    padding: 15px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qr-wrapper img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.upi-id-text {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.upi-id-text strong {
    color: var(--color-primary-light);
    user-select: all;
}

.action-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--color-text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.action-divider::before,
.action-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.action-divider span {
    padding: 0 10px;
}

.w-100 {
    width: 100%;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-2 {
    margin-bottom: 10px;
}

.security-note {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 24px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .checkout-plan-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    .checkout-plan-header {
        align-items: center;
    }
}