/* ============================================
   NAKSHA AI - GLOBAL STYLES
   Modern AI Aesthetic with Blue/Purple Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - AI Theme */
    --primary-blue: #00D9FF;
    --primary-cyan: #0099FF;
    --secondary-purple: #8B5CF6;
    --secondary-violet: #A78BFA;
    --accent-green: #00FF88;
    --accent-pink: #FF006E;

    /* Background */
    --bg-dark: #0A0E27;
    --bg-darker: #050816;
    --bg-card: rgba(26, 31, 58, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.05);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;

    /* Effects */
    --glow-blue: 0 0 30px rgba(0, 217, 255, 0.5);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.5);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.4);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Gradient Mesh Background */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(125deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-purple);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: 1400px;
}

.container-narrow {
    max-width: 900px;
}

/* Section */
section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

/* Glass Card */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    color: var(--bg-dark);
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.7);
    color: var(--bg-dark);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-violet) 100%);
    color: white;
    box-shadow: var(--glow-purple);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.7);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--bg-dark);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: var(--glow-blue);
}

/* Spacing Utilities */
.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.p-sm {
    padding: var(--spacing-sm);
}

.p-md {
    padding: var(--spacing-md);
}

.p-lg {
    padding: var(--spacing-lg);
}

.p-xl {
    padding: var(--spacing-xl);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: var(--glow-blue);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 217, 255, 0.8);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {

    body::before,
    .gradient-mesh {
        display: none;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.25rem;
        /* Fallback */
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: 1.75rem;
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .container {
        padding: 0 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 7rem;
        /* Space for fixed header */
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        /* Full width buttons on mobile often look better */
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .btn {
        width: auto;
    }

    .hero-plan-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .action-card {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
}

/* Hero Plan Action Cards — layout only; visual styles in hero-pricing.css */
.hero-plan-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* strict equal columns */
    align-items: stretch;
    /* equal height */
    gap: 1.25rem;
    margin: 2.5rem auto;
    max-width: 860px;
    padding: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-plan-actions {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }
}


/* Pricing Styles */
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.pricing-card.featured {
    border-color: var(--secondary-purple);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: var(--glow-purple);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-purple), var(--secondary-violet));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: var(--spacing-sm) 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--text-muted);
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-card {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
}

.modal-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.modal-card.featured:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--secondary-purple);
}

.price-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

.featured .price-small {
    color: var(--secondary-purple);
}

.feature-list-small {
    list-style: none;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-list-small li {
    margin-bottom: 0.5rem;
}

.popular-tag-small {
    font-size: 0.7rem;
    background: var(--secondary-purple);
    color: white;
    padding: 2px 8px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ══════════════════════════════════════
   GALLERY PREVIEW STRIP
   ══════════════════════════════════════ */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.gp-card {
    background: rgba(26, 31, 58, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.gp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 217, 255, 0.15);
}

.gp-card.featured-gp {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.12), 0 0 24px rgba(139, 92, 246, 0.1);
}

.gp-card.featured-gp:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.3), 0 0 30px rgba(139, 92, 246, 0.15);
}

.gp-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.6rem 1rem 0;
}

.gp-plan {
    padding: 0.5rem 0.75rem;
}

.gp-plan svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.gp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0.5rem;
}

.gp-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.22rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.gp-tag.ai {
    background: rgba(0, 217, 255, 0.12);
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.25);
}

.gp-tag.pro {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.gp-btn {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.12);
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.25);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.gp-btn:hover {
    background: rgba(0, 217, 255, 0.22);
    transform: translateX(2px);
}

.gp-btn.pro {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.gp-btn.pro:hover {
    background: rgba(139, 92, 246, 0.28);
}

/* ══════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════ */
.why-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
}

/* ══════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(26, 31, 58, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(0, 217, 255, 0.22);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: #00d9ff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.4rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .gallery-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gp-footer {
        flex-wrap: wrap;
    }

    .why-icon {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.88rem;
    }
}

/* ══════════════════════════════════════
   STATS SECTION — ULTRA PREMIUM (THEME MATCHED)
   ══════════════════════════════════════ */
.stats-tagline {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* ── Base card ── */
.stat-card {
    background: rgba(10, 14, 39, 0.6);
    /* Matches header/footer bg tone */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.6rem 1rem 1.4rem;
    text-align: center;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* shimmer sweep on hover */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.stat-card:hover::after {
    left: 150%;
}

/* ── Card 1 — Primary Blue (Cyan) ── */
.stat-card:nth-child(1) {
    border-top: 2px solid var(--primary-blue);
}

.stat-card:nth-child(1):hover {
    box-shadow: 0 14px 45px rgba(0, 217, 255, 0.15);
    transform: translateY(-6px);
}

.stat-card:nth-child(1) .stat-icon-wrap {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

.stat-card:nth-child(1) .stat-number {
    color: var(--primary-blue);
}

/* ── Card 2 — Secondary Purple ── */
.stat-card:nth-child(2) {
    border-top: 2px solid var(--secondary-purple);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 14px 45px rgba(139, 92, 246, 0.15);
    transform: translateY(-6px);
}

.stat-card:nth-child(2) .stat-icon-wrap {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.stat-card:nth-child(2) .stat-number {
    color: var(--secondary-purple);
}

/* ── Card 3 — Primary Cyan (Darker Blue) ── */
.stat-card:nth-child(3) {
    border-top: 2px solid var(--primary-cyan);
}

.stat-card:nth-child(3):hover {
    box-shadow: 0 14px 45px rgba(0, 153, 255, 0.15);
    transform: translateY(-6px);
}

.stat-card:nth-child(3) .stat-icon-wrap {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.1);
}

.stat-card:nth-child(3) .stat-number {
    color: var(--primary-cyan);
}

/* ── Card 4 — Secondary Violet (Light Purple) ── */
.stat-card:nth-child(4) {
    border-top: 2px solid var(--secondary-violet);
}

.stat-card:nth-child(4):hover {
    box-shadow: 0 14px 45px rgba(167, 139, 250, 0.15);
    transform: translateY(-6px);
}

.stat-card:nth-child(4) .stat-icon-wrap {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.1);
}

.stat-card:nth-child(4) .stat-number {
    color: var(--secondary-violet);
}

/* ── Icon badge ── */
.stat-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid transparent;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover .stat-icon-wrap {
    transform: scale(1.1);
    rotate: 3deg;
}

/* ── Number override ── */
.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: unset;
    letter-spacing: -0.02em;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 500;
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
    .stats-tagline {
        font-size: 0.68rem;
        margin-bottom: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 0.75rem 1rem;
        border-radius: 16px;
    }

    .stat-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin-bottom: 0.6rem;
    }

    .stat-card .stat-number {
        font-size: 1.8rem;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
    }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
    .stat-card {
        padding: 1rem 0.6rem 0.85rem;
    }

    .stat-card .stat-number {
        font-size: 1.6rem;
    }
}

/* ══════════════════════════════════════
   MODAL V2 — PREMIUM PLAN CARDS
   ══════════════════════════════════════ */

.modal-content-v2 {
    width: 90%;
    max-width: 780px;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2.2rem 2rem;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content-v2 {
    transform: scale(1);
}

/* Header */
.modal-header-v2 {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon-v2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-header-v2 h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.modal-header-v2 p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Cards Grid */
.modal-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

/* Base Card */
.mcard {
    position: relative;
    border-radius: 18px;
    padding: 1.8rem 1.6rem 1.6rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mcard:hover {
    transform: translateY(-6px);
}

/* AI Card */
.mcard-ai {
    background: rgba(0, 217, 255, 0.04);
    border: 1px solid rgba(0, 217, 255, 0.22);
}

.mcard-ai:hover {
    box-shadow: 0 16px 50px rgba(0, 217, 255, 0.2), 0 0 0 1px rgba(0, 217, 255, 0.35);
    border-color: rgba(0, 217, 255, 0.5);
}

/* Pro Card */
.mcard-pro {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.mcard-pro:hover {
    box-shadow: 0 16px 50px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.5);
    border-color: rgba(139, 92, 246, 0.6);
}

/* Glow orbs */
.mcard-glow-ai {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.mcard-glow-pro {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* Recommended Tag */
.mcard-recommended {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* Top row */
.mcard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.mcard-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.mcard-badge-ai {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 217, 255, 0.12);
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.28);
    padding: 3px 10px;
    border-radius: 20px;
}

.mcard-badge-pro {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.35);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Title */
.mcard-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
    font-family: 'Outfit', sans-serif;
}

/* Price */
.mcard-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 1.2rem;
}

.mcard-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d9ff;
}

.mcard-currency.pro {
    color: #a78bfa;
}

.mcard-amount {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: #00d9ff;
    font-family: 'Space Grotesk', sans-serif;
}

.mcard-amount.pro {
    color: #a78bfa;
}

.mcard-per {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Features */
.mcard-features {
    list-style: none;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex-grow: 1;
}

.mcard-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mf-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.ai-check {
    background: rgba(0, 217, 255, 0.15);
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.pro-check {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.35);
}

/* CTA Buttons */
.mcard-btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.02em;
    margin-top: auto;
}

.mcard-btn-ai {
    background: linear-gradient(135deg, #00bcd4, #00d9ff);
    color: #050816;
    box-shadow: 0 6px 24px rgba(0, 217, 255, 0.3);
}

.mcard-btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 217, 255, 0.5);
    background: linear-gradient(135deg, #00d9ff, #4ff7ff);
}

.mcard-btn-pro {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.38);
}

.mcard-btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(139, 92, 246, 0.55);
    background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}

/* Responsive */
@media (max-width: 600px) {
    .modal-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-content-v2 {
        padding: 2rem 1.2rem 1.5rem;
    }

    .mcard-amount {
        font-size: 2rem;
    }
}
/* 
   PRICING SECTION V2 � PREMIUM CARDS
    */
.pricing-section-v2 { padding: 5rem 0; }
.pricing-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; max-width: 920px; margin: 0 auto; align-items: stretch; }
.pcard { position: relative; border-radius: 22px; padding: 2.2rem 2rem 2rem; display: flex; flex-direction: column; overflow: hidden; cursor: pointer; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }
.pcard:hover { transform: translateY(-8px); }
.pcard-ai { background: rgba(0,217,255,0.04); border: 1px solid rgba(0,217,255,0.2); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.pcard-ai:hover { border-color: rgba(0,217,255,0.45); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,217,255,0.12); }
.pcard-pro { background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.3); animation: pcardPulse 3s ease-in-out infinite; }
@keyframes pcardPulse { 0%,100% { box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 20px rgba(139,92,246,0.12); } 50% { box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 35px rgba(139,92,246,0.22); } }
.pcard-pro:hover { border-color: rgba(139,92,246,0.55); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 50px rgba(139,92,246,0.2); animation: none; }
.pcard-glow-ai { position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(0,217,255,0.14) 0%, transparent 70%); pointer-events: none; }
.pcard-glow-pro { position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); pointer-events: none; }
.pcard-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #7c3aed, #a78bfa); color: white; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; padding: 4px 16px; border-radius: 0 0 12px 12px; white-space: nowrap; box-shadow: 0 4px 16px rgba(139,92,246,0.4); }
.pcard-top-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.pcard-icon-wrap { font-size: 1.8rem; line-height: 1; }
.pcard-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.pcard-badge-ai { background: rgba(0,217,255,0.1); color: #00d9ff; border: 1px solid rgba(0,217,255,0.28); }
.pcard-badge-pro { background: rgba(139,92,246,0.14); color: #a78bfa; border: 1px solid rgba(139,92,246,0.35); }
.pcard-name { position: relative; z-index: 1; font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text-primary); margin: 0 0 0.3rem; }
.pcard-tagline { position: relative; z-index: 1; font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1.2rem; }
.pcard-price-row { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 3px; margin-bottom: 1.4rem; }
.pcard-currency { font-size: 1.3rem; font-weight: 700; }
.pcard-amount { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; }
.pcard-period { font-size: 0.82rem; color: var(--text-muted); margin-left: 4px; }
.ai-color { color: #00d9ff; }
.pro-color { color: #a78bfa; }
.pcard-divider { position: relative; z-index: 1; height: 1px; margin-bottom: 1.4rem; }
.pcard-divider-ai { background: linear-gradient(90deg, rgba(0,217,255,0.4) 0%, rgba(0,217,255,0.05) 70%, transparent 100%); }
.pcard-divider-pro { background: linear-gradient(90deg, rgba(139,92,246,0.5) 0%, rgba(139,92,246,0.06) 70%, transparent 100%); }
.pcard-features { position: relative; z-index: 1; list-style: none; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.pcard-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.93rem; color: var(--text-secondary); }
.pcard-check { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }
.pcard-check-ai { background: rgba(0,217,255,0.12); color: #00d9ff; border: 1px solid rgba(0,217,255,0.3); }
.pcard-check-pro { background: rgba(139,92,246,0.14); color: #a78bfa; border: 1px solid rgba(139,92,246,0.35); }
.pcard-btn { position: relative; z-index: 1; width: 100%; padding: 1rem 1.5rem; border: none; border-radius: 14px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; letter-spacing: 0.02em; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.pcard-btn-ai { background: linear-gradient(135deg, #00bcd4, #00d9ff); color: #050816; box-shadow: 0 6px 24px rgba(0,217,255,0.3); }
.pcard-btn-ai:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,217,255,0.5); background: linear-gradient(135deg, #00d9ff, #4ff7ff); }
.pcard-btn-pro { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: white; box-shadow: 0 6px 24px rgba(139,92,246,0.38); }
.pcard-btn-pro:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,246,0.58); background: linear-gradient(135deg, #8b5cf6, #c4b5fd); }
@media (max-width: 700px) { .pricing-grid-v2 { grid-template-columns: 1fr; gap: 1.2rem; } .pcard { padding: 1.8rem 1.4rem 1.6rem; } .pcard-amount { font-size: 2.5rem; } }

/* PRICING SECTION V2 */
.pricing-section-v2 { padding: 5rem 0; }
.pricing-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; max-width: 920px; margin: 0 auto; align-items: stretch; }
.pcard { position: relative; border-radius: 22px; padding: 2.2rem 2rem 2rem; display: flex; flex-direction: column; overflow: hidden; cursor: pointer; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }
.pcard:hover { transform: translateY(-8px); }
.pcard-ai { background: rgba(0,217,255,0.04); border: 1px solid rgba(0,217,255,0.2); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.pcard-ai:hover { border-color: rgba(0,217,255,0.45); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,217,255,0.12); }
.pcard-pro { background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.3); animation: pcardPulse 3s ease-in-out infinite; }
@keyframes pcardPulse { 0%,100% { box-shadow: 0 4px 30px rgba(0,0,0,0.3); } 50% { box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 35px rgba(139,92,246,0.22); } }
.pcard-pro:hover { border-color: rgba(139,92,246,0.55); box-shadow: 0 20px 60px rgba(0,0,0,0.4); animation: none; }
.pcard-glow-ai { position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(0,217,255,0.14) 0%, transparent 70%); pointer-events: none; }
.pcard-glow-pro { position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); pointer-events: none; }
.pcard-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #7c3aed, #a78bfa); color: white; font-size: 0.68rem; font-weight: 800; padding: 4px 16px; border-radius: 0 0 12px 12px; white-space: nowrap; }
.pcard-top-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.pcard-icon-wrap { font-size: 1.8rem; line-height: 1; }
.pcard-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.pcard-badge-ai { background: rgba(0,217,255,0.1); color: #00d9ff; border: 1px solid rgba(0,217,255,0.28); }
.pcard-badge-pro { background: rgba(139,92,246,0.14); color: #a78bfa; border: 1px solid rgba(139,92,246,0.35); }
.pcard-name { position: relative; z-index: 1; font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text-primary); margin: 0 0 0.3rem; }
.pcard-tagline { position: relative; z-index: 1; font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1.2rem; }
.pcard-price-row { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 3px; margin-bottom: 1.4rem; }
.pcard-currency { font-size: 1.3rem; font-weight: 700; }
.pcard-amount { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; }
.pcard-period { font-size: 0.82rem; color: var(--text-muted); margin-left: 4px; }
.ai-color { color: #00d9ff; }
.pro-color { color: #a78bfa; }
.pcard-divider { position: relative; z-index: 1; height: 1px; margin-bottom: 1.4rem; }
.pcard-divider-ai { background: linear-gradient(90deg, rgba(0,217,255,0.4), transparent); }
.pcard-divider-pro { background: linear-gradient(90deg, rgba(139,92,246,0.5), transparent); }
.pcard-features { position: relative; z-index: 1; list-style: none; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.pcard-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.93rem; color: var(--text-secondary); }
.pcard-check { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }
.pcard-check-ai { background: rgba(0,217,255,0.12); color: #00d9ff; border: 1px solid rgba(0,217,255,0.3); }
.pcard-check-pro { background: rgba(139,92,246,0.14); color: #a78bfa; border: 1px solid rgba(139,92,246,0.35); }
.pcard-btn { position: relative; z-index: 1; width: 100%; padding: 1rem 1.5rem; border: none; border-radius: 14px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.pcard-btn-ai { background: linear-gradient(135deg, #00bcd4, #00d9ff); color: #050816; box-shadow: 0 6px 24px rgba(0,217,255,0.3); }
.pcard-btn-ai:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,217,255,0.5); }
.pcard-btn-pro { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: white; box-shadow: 0 6px 24px rgba(139,92,246,0.38); }
.pcard-btn-pro:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,246,0.58); }
@media (max-width: 700px) { .pricing-grid-v2 { grid-template-columns: 1fr; } .pcard-amount { font-size: 2.5rem; } }
.pcard-check-cross { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.pcard-cross-text { color: rgba(255,255,255,0.35); text-decoration: line-through; }

.pcard-check-cross { background: rgba(220,38,38,0.18) !important; color: #ef4444 !important; border: 1.5px solid rgba(220,38,38,0.5) !important; box-shadow: 0 0 8px rgba(239,68,68,0.35) !important; font-size: 0.8rem !important; }

/* 
   HERO SINGLE CTA
    */
.hero-single-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.hero-price-hint { display: flex; align-items: center; gap: 0.7rem; }
.hph-item { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.hph-item strong { color: #fff; font-weight: 700; }
.hph-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }
.hero-cta-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(135deg,#00bcd4,#00d9ff); color: #050816; padding: 0.9rem 2rem; border-radius: 50px; font-family: 'Inter',sans-serif; font-size: 1.05rem; font-weight: 800; text-decoration: none; box-shadow: 0 6px 28px rgba(0,217,255,0.35); transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.hero-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,217,255,0.55); background: linear-gradient(135deg,#00d9ff,#4ff7ff); }
.hero-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin: 0; }

/* 
   PRICING SINGLE CTA
    */
.pricing-single-cta { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.psingle-pills { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.psingle-pill { display: flex; align-items: center; gap: 0.8rem; padding: 1.1rem 1.6rem; border-radius: 16px; }
.psingle-pill-ai { background: rgba(0,217,255,0.06); border: 1px solid rgba(0,217,255,0.22); }
.psingle-pill-pro { background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.28); }
.psingle-icon { font-size: 1.8rem; line-height: 1; }
.psingle-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 0.2rem; font-family: 'Inter', sans-serif; }
.psingle-price { font-family: 'Space Grotesk',sans-serif; font-size: 1.5rem; font-weight: 800; }
.psingle-period { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.psingle-divider { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 600; letter-spacing: 0.08em; }
.psingle-pop { font-size: 0.65rem; background: rgba(139,92,246,0.18); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); padding: 2px 8px; border-radius: 20px; margin-left: 6px; font-weight: 700; }
.psingle-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(135deg,#7c3aed,#a78bfa); color: white; padding: 1rem 2.4rem; border-radius: 50px; font-family: 'Inter',sans-serif; font-size: 1.05rem; font-weight: 800; text-decoration: none; box-shadow: 0 6px 28px rgba(139,92,246,0.38); transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.psingle-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(139,92,246,0.58); background: linear-gradient(135deg,#8b5cf6,#c4b5fd); }
.psingle-note { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
@media (max-width: 600px) { .psingle-pills { flex-direction: column; gap: 0.7rem; } .psingle-pill { width: 100%; } }
/* 
   LOGO — Glow Image + Styled Text
    */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75))
            drop-shadow(0 0 18px rgba(255, 255, 255, 0.45))
            drop-shadow(0 0 32px rgba(0, 217, 255, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.95))
            drop-shadow(0 0 28px rgba(255, 255, 255, 0.65))
            drop-shadow(0 0 48px rgba(0, 217, 255, 0.5));
}

.logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo-text-ai {
    background: linear-gradient(135deg, #00d9ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}
/* 
   LOGO TEXT — "Naksha AI" Style
    */
a.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

a.logo span {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 30%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    transition: opacity 0.2s ease;
}

a.logo:hover span {
    opacity: 0.85;
}