/* 
   Ultimate Audit SaaS - Premium Style (Wope Inspired)
   Theme: Deep Purple Nebula & Glassmorphism
*/

:root {
    --bg-deep: #050014;
    --bg-card: rgba(13, 8, 33, 0.7);
    --bg-card-hover: rgba(23, 15, 55, 0.8);
    --primary-accent: #7c3aed;
    /* Electric Purple */
    --primary-glow: #8b5cf6;
    --secondary-accent: #db2777;
    /* Magenta/Pink hint */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(124, 58, 237, 0.15);
    --border-glow: rgba(139, 92, 246, 0.4);
    --glass-blur: blur(24px);
}

/* ========================================
   CRITICAL OVERRIDES - Force Dark Theme
   Must override main.css light defaults
======================================== */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg-deep) !important;
    background: var(--bg-deep) !important;
    color: var(--text-main) !important;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif !important;
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}

/* Override all heading colors for dark mode */
h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.hero h2,
.section-title,
.bento-title,
.step-head,
.plan-name,
.t-name,
.faq-q,
.cta-head {
    color: white !important;
}

/* Override paragraph and text colors */
p {
    color: var(--text-muted);
}

/* Override link colors for dark mode */
a {
    color: inherit;
}

a:hover {
    color: white;
}

/* Background Effects */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(88, 28, 135, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 15% 70%, rgba(219, 39, 119, 0.05) 0%, transparent 40%);
}

/* Subtle Grid Pattern */
.bg-blobs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.2;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    background: rgba(13, 8, 33, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.landing-nav.scrolled {
    background: rgba(5, 0, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    padding: 12px 24px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile menu dark override */
@media (max-width: 768px) {
    .nav-links {
        background: rgba(5, 0, 20, 0.98) !important;
        border-left: 1px solid var(--border-color) !important;
    }

    .nav-links .nav-link {
        color: var(--text-muted) !important;
    }

    .nav-links .nav-link:hover {
        background: rgba(124, 58, 237, 0.1) !important;
        color: white !important;
    }

    .nav-mobile-toggle span {
        background: white !important;
    }
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: white !important;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

/* The Horizon Glow effect behind text */
.hero::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: #c4b5fd;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
    /* Reduced from 40px */
}

.url-audit-form-wrapper {
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
}

.url-input-group {
    display: flex;
    align-items: center;
    background: rgba(13, 12, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.url-input-group:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(13, 12, 34, 0.8);
    transform: translateY(-2px);
}

.input-icon {
    padding-left: 20px;
    display: flex;
    align-items: center;
    color: #94a3b8;
}

.url-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 14px 16px;
    font-size: 16px;
    outline: none;
    min-width: 0;
    font-family: inherit;
}

.url-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.url-input-group button.btn {
    padding: 12px 28px !important;
    font-size: 15px !important;
    white-space: nowrap;
    border-radius: 50px !important;
    /* Ensure match */
    margin: 0 !important;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

/* Buttons - Override main.css */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    color: white !important;
}

.btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #6d28d9 100%) !important;
    border-color: var(--primary-accent) !important;
    color: white !important;
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, var(--primary-accent) 100%) !important;
    border-color: #a78bfa !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5) !important;
    transform: translateY(-2px);
    color: white !important;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
    color: white !important;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-benefits-accent {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
    backdrop-filter: blur(8px);
}

.btn-benefits-accent:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #34d399;
    color: white;
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* Hero Preview / Dashboard */
.hero-preview {
    margin-top: 60px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

/* Purple glow behind the image - intense burst */
.hero-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.25) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

/* Extra glow layer for intensity */
.hero-preview::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}


.hero-preview-inner {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #0d0821;
    overflow: hidden;
    box-shadow:
        0 0 120px 40px rgba(139, 92, 246, 0.35),
        0 0 60px 20px rgba(168, 85, 247, 0.25),
        0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

.hero-preview-inner img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Glowing Overlay Tint on Hero Image */
.hero-preview-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(219, 39, 119, 0.5) 0%, transparent 50%),
        linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(168, 85, 247, 0.25) 50%, rgba(236, 72, 153, 0.3) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.hero-preview:hover .hero-preview-inner::after {
    opacity: 1;
}

.hero-preview:hover .hero-preview-inner {
    box-shadow:
        0 0 150px 50px rgba(139, 92, 246, 0.45),
        0 0 80px 30px rgba(168, 85, 247, 0.3),
        0 40px 80px -25px rgba(0, 0, 0, 0.8);
}




.hero-stats-pill {
    display: inline-flex;
    background: rgba(13, 8, 33, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 16px 40px;
    border-radius: 100px;
    gap: 40px;
    margin-top: 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Features (Bento Grid) */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: #a78bfa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 20px;
}

.bento-card {
    background: rgba(13, 8, 33, 0.8) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: none !important;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-card:hover {
    border-color: var(--border-glow) !important;
    background: rgba(23, 15, 55, 0.9) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15) !important;
}

.bento-card:hover::before {
    opacity: 1;
}

/* Specific glows for bento cards to match image vibrancy */
.bento-card.bg-gradient {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.4) 0%, rgba(13, 8, 33, 0.9) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.bento-card.bg-dark {
    grid-column: span 1;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    z-index: 1;
}

.bento-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    z-index: 1;
}

/* Force Bento Icon Styles to match Benefits Icons exactly */
/* Force Bento Icon Styles to match Benefits Icons structure */
.bento-icon,
.bento-icon[class*="-glow"] {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: auto !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    /* Default fallback */
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Specific Category Colors */
.icon-bg-security {
    background: rgba(99, 102, 241, 0.1) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
}

.icon-bg-performance {
    background: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}

.icon-bg-seo,
.icon-bg-content-quality {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.icon-bg-database-optimization,
.icon-bg-advanced-schema {
    background: rgba(139, 92, 246, 0.1) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
}

.icon-bg-ux,
.icon-bg-core-web-vitals {
    background: rgba(236, 72, 153, 0.1) !important;
    border: 1px solid rgba(236, 72, 153, 0.3) !important;
}

.icon-bg-ssl-tls-security,
.icon-bg-compliance-privacy,
.icon-bg-e-commerce-security,
.icon-bg-api-security {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

.icon-bg-server-environment {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(20, 184, 166, 0.3) !important;
}

.bento-card:hover .bento-icon {
    transform: scale(1.05);
    background-color: inherit !important;
    /* Keep original color */
    filter: brightness(1.2);
    /* Brighten on hover just slightly */
}

.bento-icon img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Benefits Section */
.uas-benefits-section {
    padding: 120px 0;
}

.uas-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.uas-benefit-item {
    background: rgba(13, 8, 33, 0.7) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    box-shadow: none !important;
}

.uas-benefit-item:hover {
    border-color: var(--border-glow) !important;
    transform: translateY(-3px);
    background: rgba(23, 15, 55, 0.8) !important;
}

.uas-benefit-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Important: Constrain the icon image size and colorize */
.uas-benefit-icon-wrapper img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make white */
}

.uas-benefit-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    margin-top: 0;
}

.uas-benefit-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* CTA Box */
.uas-action-cta-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(13, 8, 33, 0.8) 100%) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 80px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.1) !important;
}

.uas-action-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.uas-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.uas-cta-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

.uas-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.uas-cta-features li {
    color: #e2e8f0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.uas-cta-features li span {
    color: var(--primary-accent);
    font-weight: bold;
}

.uas-cta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uas-cta-shield {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
}

.uas-pulse-ring {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .uas-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .uas-benefits-grid,
    .uas-action-cta-box {
        grid-template-columns: 1fr;
    }

    .uas-action-cta-box {
        padding: 40px 24px;
        text-align: center;
    }

    .uas-cta-features {
        justify-content: center;
    }

    .uas-cta-visual {
        margin-top: 40px;
    }
}

/* How It Works (3 Simple Steps) */
.how-it-works {
    padding: 100px 0;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

/* Hide the arrow divs */
.step-arrow {
    display: none;
}

.step-card {
    background: rgba(13, 8, 33, 0.7) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    text-align: left;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.step-card:hover {
    border-color: var(--border-glow) !important;
    transform: translateY(-5px);
    background: rgba(23, 15, 55, 0.8) !important;
}

.step-num {
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.4) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.step-head {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
}

.step-body {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing - Vertical Dark Cards */
.pricing-preview {
    padding: 120px 0;
}

/* Pricing Grid - 4 Columns Support */
.pricing-cards-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

/* Dark Pricing Card */
.pricing-card-full {
    background-color: #0b0a1d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto;
    transition: all 0.3s;
    backdrop-filter: blur(0);
    /* Remove blur to see solid bg */
    box-shadow: none !important;

    /* Grid Pattern */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    background-position: -1px -1px !important;
}

/* Hover Effect */
.pricing-card-full:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Highlighted Plan (Popular) */
.pricing-card-full.popular {
    border: 1px solid #7c3aed !important;
    box-shadow: 0 0 0 1px #7c3aed, 0 20px 50px -20px rgba(124, 58, 237, 0.3) !important;
    background-color: #0f0c29 !important;
    /* Slightly distinct bg */
}

/* Badge for popular card */
.pricing-card-full.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Typography */
.plan-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    margin-top: 16px;
    /* Space for badge */
}

.plan-price {
    margin: 24px 0 0 0;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.plan-price-period {
    color: var(--text-muted);
    font-size: 14px;
}

/* Buttons */
.plan-cta-wrapper {
    margin-top: 32px;
    width: 100%;
}

.pricing-card-full .btn {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent !important;
    color: white !important;
    margin-top: 0;
    /* Handled by wrapper */
    transition: all 0.3s;
    box-shadow: none !important;
}

/* Popular Card Button Highlight */
.pricing-card-full.popular .btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    border-color: #7c3aed !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

.pricing-card-full .btn:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05) !important;
}

.pricing-card-full.popular .btn:hover {
    background: #6d28d9 !important;
    transform: translateY(-2px);
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    padding: 24px 0 0 0;
    margin: 32px 0 32px 0;
    flex-grow: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    margin-bottom: 16px;
    font-size: 14px;
}

.plan-features li .check {
    color: var(--primary-accent);
    width: 20px;
}

.plan-cta .btn {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-full.popular .plan-cta .btn {
    background: var(--primary-accent);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.pricing-card-full.popular .plan-cta .btn:hover {
    background: #8b5cf6;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t-card {
    background: rgba(13, 8, 33, 0.7) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.t-card:hover {
    border-color: var(--border-glow) !important;
    background: rgba(23, 15, 55, 0.8) !important;
    transform: translateY(-5px);
}

.t-content {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #6d28d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
}

.t-name {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.t-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Banner - Full Width Dark Style */
.cta-banner {
    padding: 120px 24px 150px;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* Purple ambient glow at bottom */
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 400px;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.2) 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Stars/sparkle effect */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 10% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.cta-box {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: none !important;
    max-width: 700px;
    margin: 0 auto;
}

.cta-head {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Input Group - similar to hero */
.cta-input-group {
    display: flex;
    align-items: center;
    background: rgba(13, 12, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px;
    max-width: 480px;
    margin: 0 auto 24px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

@media (max-width: 480px) {
    .cta-input-group {
        padding: 12px;
        border-radius: 20px;
    }

    .cta-input-group input {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin-bottom: 8px;
        /* Space between input and button */
    }

    .cta-input-group button.btn {
        width: 100% !important;
        margin-top: 5px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.cta-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    outline: none;
}

.cta-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-input-group button {
    padding: 12px 28px !important;
    border-radius: 50px !important;
    white-space: nowrap;
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-features span::before {
    content: '✦';
    color: var(--primary-accent);
}

.btn-white {
    background: white;
    color: var(--primary-accent);
    border: none;
    padding: 16px 40px;
    font-weight: 700;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4);
}

/* Global Section Label Badge */
.section-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FAQ */
.faq {
    padding: 120px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-box {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 32px 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-box:hover .faq-q {
    color: var(--primary-accent) !important;
}

.faq-q {
    font-size: 20px;
    font-weight: 600;
    color: white !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-q::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: #6b7280;
    /* Grey plus icon */
    transition: all 0.3s ease;
}

.faq-box:hover .faq-q::after {
    color: white;
}

.faq-a {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
    display: none;
    max-width: 90%;
}

/* Footer */
.landing-footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border-color);
    background: #02000a;
    overflow-x: hidden;
}

.landing-footer>.container {
    max-width: 1100px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 100%;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Newsletter Form in Footer */
#newsletter-form input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
}

#newsletter-form input::placeholder {
    color: var(--text-muted);
}

#newsletter-form input:focus {
    border-color: var(--primary-accent) !important;
    outline: none;
}

#newsletter-form button {
    background: var(--primary-accent) !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

#newsletter-form button:hover {
    background: #8b5cf6 !important;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

/* Back to Top Button - Dark Theme Override */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-accent) !important;
    color: white !important;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #8b5cf6 !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    margin-top: 24px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active {
    color: white;
}

#billing-switch {
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all 0.3s ease;
}

#billing-switch::after {
    display: none;
}

#toggle-knob {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #8b5cf6;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: block !important;
}

#billing-switch.yearly #toggle-knob {
    transform: translateX(28px);
    background: #8b5cf6;
}

#billing-switch.yearly {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

#toggle-yearly {
    display: flex;
    align-items: center;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.toggle-save-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-cards-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .bento-grid,
    .pricing-cards-full,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .uas-benefits-grid {
        grid-template-columns: 1fr;
    }

    .uas-action-cta-box {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }

    .uas-cta-features {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-pill {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        border-radius: 16px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-head {
        font-size: 32px;
    }

    .cta-box {
        padding: 60px 24px;
        border-radius: 24px;
    }
}