@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;600&family=Noto+Sans+Arabic:wght@400;700&display=swap');

:root {
    /* Shopify Clean Default Themes */
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Accent Colors */
    --accent-optical: #10b981;
    --accent-electronics: #fbbf24;
    --accent-fashion: #ec4899;
    --accent-grocery: #10b981;
    --accent-books: #f59e0b;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --grad-hologram: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);

    /* Shadows & Glows */
    --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.3);
    --glow-cyan: 0 0 15px rgba(16, 185, 129, 0.3);
    --glow-purple: 0 0 15px rgba(236, 72, 153, 0.3);
}

/* Light Theme Overrides (Shopify Polaris Vibe) */
body.light-mode {
    --bg-dark: #f6f6f7;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6d7175;

    --accent-optical: #008060; /* Shopify Green */
    --accent-electronics: #b8860b;
    --accent-fashion: #9c27b0;
    --accent-grocery: #008060; /* Shopify Green */
    --accent-books: #d97706;

    --grad-primary: linear-gradient(135deg, #008060 0%, #004c3f 100%);
    --grad-hologram: linear-gradient(135deg, rgba(0, 128, 96, 0.05) 0%, rgba(0, 76, 63, 0.05) 100%);

    --shadow-float: 0 4px 12px rgba(0, 0, 0, 0.05);
    --glow-cyan: 0 0 15px rgba(0, 128, 96, 0.15);
    --glow-purple: 0 0 15px rgba(156, 39, 176, 0.15);
}

body.light-mode .nav-links .dropdown-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-links .dropdown-content a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .nav-links .dropdown-content a:hover {
    background: rgba(0, 0, 0, 0.05);
}

body {
    transition: background-color 0.5s ease, color 0.5s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
    filter: blur(80px);
}

.glass {
    transition: background 0.5s ease, border-color 0.5s ease;
}

body.light-mode .glass {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Holographic Effect */
.hologram {
    position: relative;
    overflow: hidden;
}

.hologram::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 55%);
    animation: hologram-sweep 3s infinite;
}

@keyframes hologram-sweep {
    0% {
        transform: translate(-30%, -30%) rotate(0deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(0deg);
    }
}

/* Redesign Styles - New Additions */

/* Premium Hero Extends */
.hero-dashboard-mockup {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 620px;
    height: 380px;
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    z-index: 1;
    opacity: 0.98;
    pointer-events: auto;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-left: auto;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

body.light-mode .btn-outline {
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: var(--text-primary) !important;
}

body.light-mode .btn-outline:hover {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-buttons button {
        width: 100%;
        padding: 15px 20px !important;
        font-size: 16px !important;
    }
}

/* 9 Grid Features */
.features-grid-9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card-minimal {
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

body.light-mode .feature-card-minimal {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.feature-card-minimal:hover {
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(16, 185, 129, 0.12);
}

body.light-mode .feature-card-minimal:hover {
    background: white;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 25px rgba(16, 185, 129, 0.1);
}

.feature-card-minimal .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.feature-card-minimal:hover .icon-box {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

/* Vertical Showcase Section */
.verticals-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.vertical-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vertical-row:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-float);
}

.vertical-row.reverse {
    direction: rtl;
}

.vertical-row.reverse>* {
    direction: ltr;
}

.vertical-visual {
    height: 350px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-domain-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* Modern Pricing Table */
.pricing-table-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-tier {
    padding: 50px 40px;
    background: var(--bg-card);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-float);
}

.pricing-tier.popular {
    border-color: var(--accent-optical);
    transform: scale(1.05);
}

.pricing-tier.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin: 20px 0;
}

.price-amount span {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-features-list li i {
    color: var(--accent-grocery);
}

/* Trust Section Metrics */
.trust-metrics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    padding: 60px;
    background: var(--bg-card);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .hero-mockup-content {
        justify-content: center !important;
    }

    .hero-dashboard-mockup {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) !important;
        max-width: 520px;
        margin: 0 auto;
    }

    .vertical-row {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .vertical-row.reverse {
        direction: ltr;
    }

    .pricing-table-3col {
        grid-template-columns: 1fr;
    }

    .pricing-tier.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-dashboard-mockup {
        display: none !important;
    }
}

/* Buttons */
.btn-glow {
    background: var(--grad-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

body.light-mode .btn-glow {
    box-shadow: 0 4px 12px rgba(0, 128, 96, 0.15) !important;
}

body.light-mode .btn-glow[style*="background: transparent"] {
    color: var(--text-primary) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

.btn-glow:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

body.light-mode .btn-glow:hover {
    box-shadow: 0 6px 16px rgba(0, 128, 96, 0.25) !important;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Dropdown Styles */
.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    background: var(--bg-card);
    min-width: 160px;
    box-shadow: var(--shadow-float);
    z-index: 1000;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 100%;
    left: 0;
    padding: 10px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-links .dropdown-content a {
    color: var(--text-primary) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links .dropdown-content a:last-child {
    border-bottom: none;
}

.nav-links .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-optical) !important;
    text-shadow: var(--glow-cyan) !important;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Hamburger Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Global Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .mobile-only-toggle {
        display: block !important;
    }

    .desktop-only-toggle {
        display: none !important;
    }

    .navbar.glass {
        transition: background 0.3s ease, border-radius 0.3s ease;
    }

    .navbar:has(.nav-links.active) {
        background: rgba(10, 15, 25, 0.98);
        border-radius: 0 0 20px 20px;
    }

    body.light-mode .navbar:has(.nav-links.active) {
        background: rgba(248, 250, 252, 0.98);
    }

    .nav-content {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .nav-links,
    .nav-content>div[style*="display: flex"] {
        display: none !important;
        flex-direction: column;
        width: 100%;
        flex-basis: 100%;
    }

    .nav-links {
        padding-top: 30px;
        gap: 5px;
        text-align: center;
    }

    .nav-links .dropdown {
        display: block;
        width: 100%;
    }

    .nav-links .dropdown>a {
        justify-content: center;
    }

    .nav-links .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent !important;
        border: none !important;
        padding: 0;
    }

    .nav-links.active,
    .nav-content>div[style*="display: flex"].active {
        display: flex !important;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-links a {
        font-size: 16px;
        width: 100%;
        display: block;
        padding: 6px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    body.light-mode .nav-links a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-content>div[style*="display: flex"] {
        padding-top: 15px;
        padding-bottom: 20px;
        gap: 15px !important;
        align-items: center;
        justify-content: center;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-title {
        font-size: 42px !important;
    }

    .saas-hero {
        padding-top: 180px;
        text-align: center;
    }

    .feature-block {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px !important;
    }

    .feature-block ul {
        text-align: left;
    }

    .feature-block.reversed {
        direction: ltr;
    }

    .feature-block.reversed>* {
        direction: ltr;
    }

    .contact-grid,
    .team-grid,
    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .lead-capture-form {
        flex-direction: column;
    }

    .logo-grid {
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
    }

    footer .container>div {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
        gap: 40px;
    }

    footer ul {
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .price-card.popular {
        transform: scale(1) !important;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Moved from index.html internal style */
/* Base Nav Styles from before */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-radius: 0px !important;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-optical);
    text-shadow: var(--glow-cyan);
}

/* Lead Gen Funnel Styles */
.saas-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top center, rgba(16, 185, 129, 0.12) 0%, var(--bg-dark) 70%);
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    z-index: 5;
}

.hero-text-content {
    text-align: left;
    max-width: 650px;
    z-index: 10;
}

.hero-mockup-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 5;
}

.hero-title {
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.lead-capture-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 20px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-optical);
    box-shadow: var(--glow-cyan);
}

.social-proof-bar {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0.5;
    filter: grayscale(1);
}

.feature-block {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-block.reversed {
    direction: rtl;
}

.feature-block.reversed>* {
    direction: ltr;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.vertical-card {
    padding: 40px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vertical-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.vertical-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.price-card.popular {
    border-color: var(--accent-optical);
    transform: scale(1.05);
    z-index: 2;
}

.price-tag {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: 'âœ“';
    color: var(--accent-grocery);
    position: absolute;
    left: 0;
}

/* Fix option tag visibility */
select.form-control option {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* Form Grid System */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .form-grid .form-group {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .form-grid .subdomain-input,
    .subdomain-input {
        width: 100% !important;
    }
}

/* ==========================================
   PREMIUM SaaS DESIGN ENHANCEMENTS (Digital Ibtida)
   ========================================== */

/* 1. Aurora Background Light Orbs */
.aurora-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: aurora-float 20s infinite alternate ease-in-out;
}

.aurora-orb-1 {
    top: -10%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-optical) 0%, transparent 80%);
}

.aurora-orb-2 {
    bottom: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-fashion) 0%, transparent 80%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.aurora-orb-3 {
    top: 40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-books) 0%, transparent 80%);
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes aurora-float {
    0% {
        transform: translate(0px, 0px) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, 80px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-40px, 60px) scale(0.95) rotate(240deg);
    }
    100% {
        transform: translate(0px, 0px) scale(1) rotate(360deg);
    }
}

/* 2. Premium Card Styles */
.vertical-row, .pricing-tier, .card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(15px);
    border-radius: 24px;
}

.vertical-row:hover, .pricing-tier:hover, .card:hover {
    transform: translateY(-8px) scale(1.005);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(16, 185, 129, 0.12);
}

.pricing-tier.popular {
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-tier.popular:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.18);
}

/* Light Theme overrides for cards to prevent muddy grey backgrounds */
body.light-mode .vertical-row, 
body.light-mode .pricing-tier, 
body.light-mode .card {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

body.light-mode .vertical-row:hover, 
body.light-mode .pricing-tier:hover, 
body.light-mode .card:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 25px rgba(16, 185, 129, 0.08) !important;
}

body.light-mode .pricing-tier.popular {
    border-color: rgba(180, 83, 9, 0.25) !important;
}

body.light-mode .pricing-tier.popular:hover {
    border-color: rgba(180, 83, 9, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 30px rgba(180, 83, 9, 0.12) !important;
}

body.light-mode .vertical-visual {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .vertical-domain-badge {
    background: rgba(0, 0, 0, 0.04) !important;
    color: var(--text-primary) !important;
}

/* 3. Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 4. Mockup UI Dynamic Tab Transitions */
.mockup-tab-content {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.mockup-tab-content.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.mockup-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mockup-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.mockup-tab-btn.active {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* 5. Shopify style Lead capture form styling */
.shopify-lead-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 580px;
    margin-top: 30px;
}

.shopify-lead-form input {
    flex: 1;
    padding: 16px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
    outline: none;
    background: rgba(15, 23, 42, 0.6);
    color: white;
    font-family: inherit;
    transition: all 0.2s ease;
}

body.light-mode .shopify-lead-form input {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    color: #1a1a1a !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.shopify-lead-form input:focus {
    border-color: var(--accent-grocery) !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.15);
}

/* 6. Form Inputs & Alert Notice overrides for Onboarding Form (create-store.html) */
.subdomain-input, select.subdomain-input, .form-control {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important; /* Premium subtle green border for dark mode */
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    text-align: left !important;
}

body.light-mode .subdomain-input, 
body.light-mode select.subdomain-input,
body.light-mode .form-control {
    background: #ffffff !important;
    border: 1px solid rgba(0, 128, 96, 0.35) !important; /* Premium subtle green border for light mode */
    color: #1a1a1a !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01) !important;
}

/* Input Focus Glows */
.subdomain-input:focus, select.subdomain-input:focus, .form-control:focus, .mobile-no-container:focus-within {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25) !important;
}

body.light-mode .subdomain-input:focus, 
body.light-mode select.subdomain-input:focus,
body.light-mode .form-control:focus,
body.light-mode .mobile-no-container:focus-within {
    border-color: #008060 !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.2) !important;
}

select.subdomain-input, select.form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 18px !important;
    padding-right: 40px !important;
    color: white !important;
}

body.light-mode select.subdomain-input,
body.light-mode select.form-control {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%231a1a1a" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important;
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 18px !important;
}

select.subdomain-input option, select.form-control option {
    color: white !important;
    background: #1e293b !important;
}

body.light-mode select.subdomain-input option,
body.light-mode select.form-control option {
    color: #1a1a1a !important;
    background: #ffffff !important;
}

/* Tel Input Flex Container */
.mobile-no-container {
    display: flex;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.3) !important; /* Premium subtle green border for dark mode */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    align-items: stretch;
    transition: all 0.2s ease;
}

body.light-mode .mobile-no-container {
    background: #ffffff !important;
    border: 1px solid rgba(0, 128, 96, 0.35) !important; /* Premium subtle green border for light mode */
}

.mobile-no-prefix {
    padding: 12px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

body.light-mode .mobile-no-prefix {
    background: #f3f4f6 !important;
    border-right: 1px solid #c9cccf !important;
    color: #4b5563 !important;
}

.mobile-no-input {
    background: transparent !important;
    border: none !important;
    padding: 12px 15px !important;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    outline: none !important;
    color: white !important;
    font-size: 15px !important;
}

body.light-mode .mobile-no-input {
    color: #1a1a1a !important;
}

/* Alert Notice styling */
.alert-notice {
    margin-top: 30px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.08) !important;
    border-radius: 12px;
    border-left: 4px solid var(--accent-optical) !important;
    border-top: 1px solid rgba(16, 185, 129, 0.1) !important;
    border-right: 1px solid rgba(16, 185, 129, 0.1) !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1) !important;
}

body.light-mode .alert-notice {
    background: #f0fdf4 !important;
    border-top-color: #bbf7d0 !important;
    border-right-color: #bbf7d0 !important;
    border-bottom-color: #bbf7d0 !important;
    color: #166534 !important;
}

body.light-mode .alert-notice p {
    color: #166534 !important;
}

body.light-mode .alert-notice li {
    color: #1b4332 !important;
}

/* ==========================================
   PREMIUM SaaS FOOTER STYLING
   ========================================== */
.premium-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 40px 0;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
    border-radius: 0px !important;
}

body.light-mode .premium-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-optical);
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .footer-col ul li a:hover {
        transform: translateY(-2px);
    }
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .footer-social-links {
        justify-content: center;
    }
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

body.light-mode .footer-social-links a {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-social-links a:hover {
    background: var(--grad-primary);
    color: white !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.footer-newsletter h4 {
    margin-bottom: 20px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

body.light-mode .footer-newsletter-form input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

.footer-newsletter-form input:focus {
    border-color: var(--accent-optical);
    box-shadow: var(--glow-cyan);
}

.footer-newsletter-form button {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background: var(--grad-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   LIGHT MODE HERO DASHBOARD MOCKUP OVERRIDES
   ========================================== */
body.light-mode .hero-dashboard-mockup {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06), 0 0 40px rgba(0, 128, 96, 0.05) !important;
}

body.light-mode .hero-dashboard-mockup div[style*="background: rgba(10, 15, 30, 0.5)"] {
    background: #f8fafc !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .hero-dashboard-mockup .mockup-tab-btn {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
    color: var(--text-secondary) !important;
}

body.light-mode .hero-dashboard-mockup .mockup-tab-btn:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    color: var(--text-primary) !important;
}

body.light-mode .hero-dashboard-mockup .mockup-tab-btn.active {
    background: var(--grad-primary) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 0 15px rgba(0, 128, 96, 0.25) !important;
}

body.light-mode .hero-dashboard-mockup h4 {
    color: var(--text-primary) !important;
}

body.light-mode .hero-dashboard-mockup div[style*="background: rgba(255,255,255,0.08)"] {
    background: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .hero-dashboard-mockup div[style*="background: rgba(255,255,255,0.04)"] {
    background: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .hero-dashboard-mockup div[style*="background: rgba(16, 185, 129, 0.08)"] {
    background: rgba(0, 128, 96, 0.05) !important;
    border-color: rgba(0, 128, 96, 0.15) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="color: var(--accent-grocery)"] {
    color: var(--accent-grocery) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="color: white"] {
    color: var(--text-primary) !important;
}

body.light-mode .hero-dashboard-mockup div[style*="background: rgba(255,255,255,0.02)"] {
    background: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .hero-dashboard-mockup strong[style*="color: white"] {
    color: var(--text-primary) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="color: white"] {
    color: var(--text-primary) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="color: var(--text-primary)"] {
    color: var(--text-primary) !important;
}

body.light-mode .hero-dashboard-mockup path[fill*="rgba(16, 185, 129, 0.08)"] {
    fill: rgba(0, 128, 96, 0.04) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="background: rgba(16, 185, 129, 0.15)"] {
    background: rgba(0, 128, 96, 0.08) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="background: rgba(244, 63, 94, 0.15)"] {
    background: rgba(244, 63, 94, 0.08) !important;
}

body.light-mode .hero-dashboard-mockup span[style*="background: rgba(255, 255, 255, 0.05)"] {
    background: rgba(0, 128, 96, 0.08) !important;
    color: var(--accent-grocery) !important;
}

/* ==========================================
   PREMIUM ROAD SYSTEM TIMELINE ANIMATION
   ========================================== */
.roadmap-road-path {
    position: absolute;
    top: 65px;
    left: 15%;
    right: 15%;
    height: 6px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 12px, transparent 12px, transparent 24px);
    z-index: 1;
    border-radius: 3px;
}

body.light-mode .roadmap-road-path {
    background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08) 12px, transparent 12px, transparent 24px);
}

.roadmap-road-active {
    position: absolute;
    top: 65px;
    left: 15%;
    width: 0%;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--accent-optical), var(--accent-optical) 12px, transparent 12px, transparent 24px);
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-optical);
    transition: width 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: road-flow 6s infinite linear;
    border-radius: 3px;
}

@keyframes road-flow {
    0% { background-position: 0px 0; }
    100% { background-position: 240px 0; }
}

.reveal-on-scroll.revealed .roadmap-road-active {
    width: 70%;
}

.roadmap-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 3;
    padding-top: 35px;
}

@media (max-width: 900px) {
    .roadmap-steps-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        padding-top: 60px;
    }
    .roadmap-road-path, .roadmap-road-active {
        display: none;
    }
}

.roadmap-step-card {
    padding: 50px 30px 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(16, 185, 129, 0.12) !important;
}

body.light-mode .roadmap-step-card:hover {
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 25px rgba(16, 185, 129, 0.08) !important;
}

.roadmap-icon-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: -80px auto 25px auto;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    border: 4px solid var(--bg-dark);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.light-mode .roadmap-icon-node {
    border-color: #ffffff;
}

.roadmap-step-card:hover .roadmap-icon-node {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.7);
}
