/* ==========================================================================
   HYPERSTORE - MULTI-VENDOR & MULTI-THEME LANDING PAGE DESIGN SYSTEM
   DEFAULT THEME: LIGHT MODE
   ========================================================================== */

/* ==========================================================================
   ROOT VARIABLES & COLOR TOKENS
   ========================================================================== */

:root {
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;

    /* ============================================================
     LIGHT MODE — DEFAULT
     ============================================================ */
    --bg-main: #fffaf5;
    --bg-card: #ffffff;
    --bg-card-hover: #fff2e6;
    --bg-glass: rgba(255, 255, 255, 0.90);

    --border-color: rgba(15, 23, 42, 0.10);
    --border-highlight: rgba(253, 104, 9, 0.38);

    --text-main: #1f2937;
    --text-muted: #667085;
    --text-subtle: #98a2b3;

    --primary: #fd6809;
    --primary-hover: #e85d00;
    --primary-glow: rgba(253, 104, 9, 0.20);

    --gradient-primary: #fd6809;
    --gradient-card: #ffffff;

    --violet-primary: #fd6809;
    --emerald-primary: #10b981;
    --cyan-primary: #ff8a3d;
    --rose-primary: #f43f5e;
    --amber-primary: #fd6809;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.09);
    --shadow-glow: 0 0 32px rgba(253, 104, 9, 0.12);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --navbar-bg: rgba(255, 255, 255, 0.94);
    --navbar-bg-scrolled: rgba(255, 255, 255, 0.99);
}

/* ==========================================================================
   DARK MODE
   Add data-theme-mode="dark" to html/body to activate.
   ========================================================================== */

[data-theme-mode="dark"] {
    --bg-main: #0d0f12;
    --bg-card: #15191f;
    --bg-card-hover: #1b2027;
    --bg-glass: rgba(255, 255, 255, 0.05);

    --border-color: rgba(255, 255, 255, 0.09);
    --border-highlight: rgba(253, 104, 9, 0.42);

    --text-main: #f8fafc;
    --text-muted: #a7afb9;
    --text-subtle: #6f7782;

    --primary: #fd6809;
    --primary-hover: #e85d00;
    --primary-glow: rgba(253, 104, 9, 0.28);

    --gradient-primary: #fd6809;
    --gradient-card: #15191f;

    --violet-primary: #fd6809;
    --emerald-primary: #10b981;
    --cyan-primary: #ff8a3d;
    --rose-primary: #f43f5e;
    --amber-primary: #fd6809;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(253, 104, 9, 0.20);

    --navbar-bg: rgba(13, 15, 18, 0.82);
    --navbar-bg-scrolled: rgba(13, 15, 18, 0.96);
}

/* Explicit Light Mode */
[data-theme-mode="light"] {
    color-scheme: light;

    --bg-main: #fffaf5;
    --bg-card: #ffffff;
    --bg-card-hover: #fff2e6;
    --bg-glass: rgba(255, 255, 255, 0.90);

    --border-color: rgba(15, 23, 42, 0.10);
    --border-highlight: rgba(253, 104, 9, 0.38);

    --text-main: #1f2937;
    --text-muted: #667085;
    --text-subtle: #98a2b3;

    --primary: #fd6809;
    --primary-hover: #e85d00;
    --primary-glow: rgba(253, 104, 9, 0.20);

    --gradient-primary: #fd6809;
    --gradient-card: #ffffff;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.09);
    --shadow-glow: 0 0 32px rgba(253, 104, 9, 0.12);

    --navbar-bg: rgba(255, 255, 255, 0.94);
    --navbar-bg-scrolled: rgba(255, 255, 255, 0.99);
}


/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color-scheme: light;
    overflow-x: hidden;
    width: 100%;
}

html[data-theme-mode="dark"] {
    color-scheme: dark;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;

    transition:
        background-color var(--transition-normal),
        color var(--transition-normal);
}

/* Prevent horizontal overflow */
img,
svg,
video,
canvas,
iframe,
table {
    max-width: 100%;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ==========================================================================
   BACKGROUND BLUR SPHERES
   ========================================================================== */

.bg-blur-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blur-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatSphere 18s ease-in-out infinite alternate;
}

.sphere-1 {
    top: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: #fd6809;
}

.sphere-2 {
    top: 40%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: #ff8a3d;
}

.sphere-3 {
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #06b6d4;
}

@keyframes floatSphere {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, 40px) scale(1.1);
    }

    100% {
        transform: translate(-40px, 80px) scale(0.95);
    }
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.75rem 1.5rem;

    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;

    border-radius: var(--radius-pill);
    border: 1px solid transparent;

    cursor: pointer;
    text-decoration: none;

    transition: all var(--transition-fast);
    white-space: nowrap;

    background: #fd6809;
    color: #ffffff;
    border-color: #fd6809;
}

.btn-primary {
    background: #fd6809;
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: #e85d00;
    color: #ffffff;
}

.btn-glow {
    position: relative;
    background: #fd6809;
    color: #ffffff;
}

.btn-glow::after {
    content: '';

    position: absolute;
    inset: -2px;

    border-radius: var(--radius-pill);
    background: var(--gradient-primary);

    filter: blur(10px);
    opacity: 0.4;

    z-index: -1;

    transition: opacity var(--transition-fast);
}

.btn-glow:hover::after {
    opacity: 0.8;
}

.btn-secondary {
    background: #fd6809;
    color: #ffffff;
    border-color: #fd6809;
}

.btn-secondary:hover {
    background: #e85d00;
    color: #ffffff;
    border-color: #e85d00;
    transform: translateY(-2px);
}

.btn-light {
    background: #ffffff;
    color: #fd6809;
    border-color: #ffffff;
}

.btn-light:hover {
    background: #fff2e6;
    color: #e85d00;
}

.btn-large {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 100;

    padding: 1.1rem 0;

    background: var(--navbar-bg);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border-color);

    box-shadow: var(--shadow-sm);

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    text-decoration: none;
    min-width: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;

    border-radius: var(--radius-md);

    background: var(--gradient-primary);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 1.25rem;

    box-shadow: 0 4px 15px var(--primary-glow);

    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-title {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.35rem;

    color: var(--text-main);

    line-height: 1;
    white-space: nowrap;
}

.logo-title .highlight {
    color: var(--primary);
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 700;

    background: var(--bg-glass);
    color: var(--primary);

    padding: 2px 6px;

    border-radius: 4px;

    border: 1px solid var(--border-highlight);

    margin-top: 2px;
    width: fit-content;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-muted);

    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 500;

    transition: color var(--transition-fast);

    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-menu-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;

    margin-left: auto;

    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;

    flex-shrink: 0;
}

.theme-toggle-btn,
.mobile-toggle-btn {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #fff7f0;

    border: 1px solid rgba(253, 104, 9, 0.20);

    color: var(--primary);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;

    transition: all var(--transition-fast);

    flex-shrink: 0;
}

.theme-toggle-btn:hover,
.mobile-toggle-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.mobile-toggle-btn {
    display: none;
}


/* ==========================================================================
   DARK MODE NAVBAR / BUTTON OVERRIDES
   ========================================================================== */

[data-theme-mode="dark"] .theme-toggle-btn,
[data-theme-mode="dark"] .mobile-toggle-btn {
    background: var(--bg-glass);
    border-color: var(--border-color);
    color: var(--text-main);
}

[data-theme-mode="dark"] .theme-toggle-btn:hover,
[data-theme-mode="dark"] .mobile-toggle-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    color: var(--primary);
}

[data-theme-mode="dark"] .btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border-color: var(--border-color);
}

[data-theme-mode="dark"] .btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    color: var(--text-main);
}

[data-theme-mode="dark"] .btn-light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme-mode="dark"] .btn-light:hover {
    background: rgba(255, 255, 255, 0.25);
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;

    padding-top: 6.5rem;
    padding-bottom: 2.5rem;

    z-index: 1;
}

.hero-container {
    display: grid;

    grid-template-columns: 1fr 1.1fr;

    gap: 3.5rem;

    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 0.6rem;

    padding: 0.4rem 1rem;

    border-radius: var(--radius-pill);

    background: var(--bg-glass);

    border: 1px solid var(--border-highlight);

    font-size: 0.85rem;
    font-weight: 600;

    color: var(--text-main);

    margin-bottom: 1.25rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #10b981;

    box-shadow: 0 0 10px #10b981;

    animation: pulse 2s infinite;

    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 3.2rem;

    letter-spacing: -0.02em;

    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;

    color: var(--text-muted);

    margin-bottom: 1.75rem;

    max-width: 90%;
}

.tech-pills {
    display: flex;

    flex-wrap: wrap;

    gap: 0.6rem;

    margin-bottom: 2rem;
}

.tech-pill {
    padding: 0.35rem 0.85rem;

    border-radius: var(--radius-pill);

    background: var(--bg-card);

    border: 1px solid var(--border-color);

    font-size: 0.8rem;
    font-weight: 600;

    display: flex;
    align-items: center;

    gap: 0.4rem;
}

.color-flutter {
    color: #54c5f8;
}

.color-laravel {
    color: #ff2d20;
}

.color-rtl {
    color: #fd6809;
}

.color-security {
    color: #10b981;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    margin-bottom: 2.25rem;
}

.hero-trust {
    display: flex;

    align-items: center;

    gap: 0.8rem;

    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .avatar {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: var(--gradient-primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.75rem;

    color: #fff;

    border: 2px solid var(--bg-main);

    margin-left: -8px;
}

.trust-avatars .avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ==========================================================================
   HERO MOCKUP
   ========================================================================== */

.hero-mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    min-width: 0;
}

.mockup-selector-tabs {
    display: flex;

    gap: 0.4rem;

    background: var(--bg-card);

    padding: 0.35rem;

    border-radius: var(--radius-pill);

    border: 1px solid var(--border-color);

    margin-bottom: 1.25rem;

    backdrop-filter: blur(12px);

    max-width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.mockup-selector-tabs::-webkit-scrollbar {
    display: none;
}

.mock-tab {
    background: transparent;

    border: none;

    color: var(--text-muted);

    padding: 0.45rem 0.95rem;

    border-radius: var(--radius-pill);

    font-family: var(--font-primary);

    font-size: 0.82rem;
    font-weight: 600;

    cursor: pointer;

    transition: all var(--transition-fast);

    white-space: nowrap;

    flex-shrink: 0;
}

.mock-tab:hover {
    color: var(--text-main);
}

.mock-tab.active {
    background: var(--gradient-primary);

    color: #ffffff;

    box-shadow: 0 4px 12px var(--primary-glow);
}


/* ==========================================================================
   DEVICE FRAME
   ========================================================================== */

.device-frame {
    position: relative;

    width: 320px;
    max-width: 84vw;

    height: 640px;
    max-height: 78vh;

    background: #000000;

    border-radius: 40px;

    padding: 12px;

    border: 4px solid #2a2d3d;

    box-shadow:
        var(--shadow-md),
        0 0 50px var(--primary-glow);

    transition: all var(--transition-normal);
}

.device-notch {
    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: 110px;
    height: 22px;

    background: #000;

    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;

    z-index: 10;
}

#heroDeviceFrame {
    width: 300px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.device-screen {
    width: 100%;
    height: 100%;

    border-radius: inherit;

    overflow: hidden;

    position: relative;

    font-size: 0.8rem;
}

.screen-mock-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease-in-out, visibility 0.18s ease-in-out;
}

.screen-mock-item.active {
    position: absolute;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.screen-mock-item img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.screen-mock-content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.app-screen-header {
    padding: 0.8rem 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(18, 20, 32, 0.9);

    color: #fff;
}

.app-title-bar {
    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-weight: 700;
    font-size: 0.9rem;
}

.app-screen-body {
    padding: 0.8rem;

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 0.8rem;
}

.mock-banner {
    background: var(--gradient-primary);

    border-radius: 12px;

    padding: 1rem;

    color: #fff;

    position: relative;

    overflow: hidden;
}

.mock-banner h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.mock-banner p {
    font-size: 0.75rem;
    opacity: 0.9;
}

.mock-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0.6rem;
}

.mock-product-card {
    background: rgba(255, 255, 255, 0.05);

    border-radius: 10px;

    padding: 0.6rem;

    border: 1px solid rgba(255, 255, 255, 0.05);

    color: #fff;
}

.product-img-box {
    height: 70px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;

    margin-bottom: 0.4rem;

    color: var(--primary);
}

.product-title-mock {
    font-size: 0.75rem;

    font-weight: 600;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.product-price-mock {
    font-size: 0.7rem;

    color: var(--primary);

    font-weight: 700;
}

.bottom-nav-mock {
    display: flex;

    justify-content: space-around;

    padding: 0.6rem;

    background: #121420;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.7rem;

    color: #9ca3af;
}

.bottom-nav-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 2px;
}

.bottom-nav-item.active {
    color: var(--primary);
}


/* ==========================================================================
   STATS
   ========================================================================== */

.stats-bar {
    background: var(--bg-card);

    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);

    padding: 2rem 0;

    position: relative;

    z-index: 2;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2rem;

    text-align: center;
}

.stat-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    min-width: 0;
}

.stat-icon {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--bg-glass);

    border: 1px solid var(--border-highlight);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;

    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--font-secondary);

    font-size: 2.2rem;

    font-weight: 800;

    color: var(--text-main);

    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;

    color: var(--text-muted);
}


/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */

.section {
    padding: 3rem 0;

    position: relative;
}

.section-header {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;

    font-size: 0.85rem;

    font-weight: 700;

    color: var(--primary);

    text-transform: uppercase;

    letter-spacing: 0.08em;

    margin-bottom: 0.35rem;
}

.section-title {
    font-size: 2.35rem;

    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 1rem;

    color: var(--text-muted);

    max-width: 650px;

    margin: 0 auto;
}


/* ==========================================================================
   ECOSYSTEM
   ========================================================================== */

.ecosystem-tabs {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1rem;

    margin-bottom: 1.75rem;
}

.eco-tab {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    padding: 1rem;

    display: flex;

    align-items: center;

    gap: 1rem;

    cursor: pointer;

    text-align: left;

    transition: all var(--transition-fast);

    min-width: 0;
}

.eco-tab:hover {
    background: var(--bg-card-hover);

    border-color: var(--border-highlight);
}

.eco-tab.active {
    background: var(--bg-card-hover);

    border-color: var(--primary);

    box-shadow: 0 4px 20px var(--primary-glow);
}

.eco-tab-icon {
    width: 44px;
    height: 44px;

    border-radius: var(--radius-sm);

    background: var(--gradient-primary);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 1.2rem;

    flex-shrink: 0;
}

.eco-tab-info {
    min-width: 0;
}

.eco-tab-info h4 {
    font-size: 0.95rem;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.eco-tab-info span {
    font-size: 0.75rem;

    color: var(--text-muted);
}

.ecosystem-display {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-lg);

    padding: 2.5rem;

    backdrop-filter: blur(12px);
}

.eco-panel-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3rem;

    align-items: center;
}

.eco-details h3 {
    font-size: 1.8rem;

    margin-bottom: 1rem;
}

.eco-details p {
    color: var(--text-muted);

    margin-bottom: 1.5rem;
}

.feature-checklist {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

    margin-bottom: 2rem;
}

.feature-checklist li {
    display: flex;

    align-items: center;

    gap: 0.75rem;

    font-size: 0.95rem;
}

.feature-checklist li i {
    color: #10b981;
}

.eco-graphic-box {
    background: var(--bg-main);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    padding: 1.5rem;

    display: flex;

    flex-direction: column;

    gap: 1rem;
}


/* ==========================================================================
   MULTI-THEME ENGINE
   ========================================================================== */

.theme-engine-section {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.theme-selector-wrapper {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 0.8rem;

    margin-bottom: 1.25rem;
}

.theme-btn {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    color: var(--text-main);

    padding: 0.6rem 1.25rem;

    border-radius: var(--radius-pill);

    font-family: var(--font-primary);

    font-weight: 600;

    font-size: 0.9rem;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 0.6rem;

    transition: all var(--transition-fast);
}

.theme-btn:hover {
    border-color: var(--border-highlight);
}

.theme-btn.active {
    background: var(--bg-card-hover);

    border-color: var(--primary);

    box-shadow: 0 4px 15px var(--primary-glow);
}

.color-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    flex-shrink: 0;
}

.dot-violet {
    background: var(--violet-primary);
}

.dot-emerald {
    background: var(--emerald-primary);
}

.dot-cyan {
    background: var(--cyan-primary);
}

.dot-rose {
    background: var(--rose-primary);
}

.dot-amber {
    background: var(--amber-primary);
}

/* ==========================================================================
   ANDROID RECENT APPS / PHOTO ALBUM 3D CAROUSEL STACK
   ========================================================================== */

.recent-apps-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 1rem auto 0;
    padding: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    user-select: none;
    -webkit-user-select: none;
}

.recent-apps-stack {
    position: relative;
    width: 680px;
    height: 420px;
    transform-style: preserve-3d;
}

.recent-app-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    transform-origin: center center;
    user-select: none;
}

/* 3D Stack Positioning Classes for Landscape Cards */
.recent-app-card.card-active {
    transform: translateX(0) scale(1) translateZ(0) rotateY(0deg);
    opacity: 1;
    z-index: 10;
    border-color: var(--primary);
    box-shadow: 0 25px 60px var(--primary-glow), 0 0 0 1px var(--primary);
}

.recent-app-card.card-prev-1 {
    transform: translateX(-40%) scale(0.85) translateZ(-100px) rotateY(18deg);
    opacity: 0.85;
    z-index: 6;
    filter: brightness(0.92);
}

.recent-app-card.card-prev-2 {
    transform: translateX(-75%) scale(0.72) translateZ(-200px) rotateY(30deg);
    opacity: 0.50;
    z-index: 3;
    filter: brightness(0.80);
}

.recent-app-card.card-next-1 {
    transform: translateX(40%) scale(0.85) translateZ(-100px) rotateY(-18deg);
    opacity: 0.85;
    z-index: 6;
    filter: brightness(0.92);
}

.recent-app-card.card-next-2 {
    transform: translateX(75%) scale(0.72) translateZ(-200px) rotateY(-30deg);
    opacity: 0.50;
    z-index: 3;
    filter: brightness(0.80);
}

/* Recent App Card Mouse Hover Disabled for Stability */
.recent-app-card:hover:not(.card-active) {
    /* Kept stable without transform shifting on hover */
}

/* App Card Header (Android Task Switcher Top Bar) */
.app-card-header {
    background: rgba(15, 23, 42, 0.04);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

[data-theme-mode="dark"] .app-card-header {
    background: rgba(255, 255, 255, 0.05);
}

.app-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.violet-icon {
    background: linear-gradient(135deg, #fd6809, #ff8a3d);
}

.emerald-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.cyan-icon {
    background: linear-gradient(135deg, #06b6d4, #0284c7);
}

.rose-icon {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.amber-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.app-title-group {
    display: flex;
    flex-direction: column;
}

.app-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.app-category {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.active-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.recent-app-card:not(.card-active) .active-badge {
    opacity: 0.6;
}

/* App Card Body with Direct Landscape Theme Images */
.app-card-body {
    padding: 8px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-main);
}

.theme-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: block;
    background: var(--bg-card);
    transition: transform var(--transition-normal);
    -webkit-user-drag: none;
    user-drag: none;
}

.mock-header-bar {
    background: var(--bg-card);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.mock-brand {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-main);
}

.mock-search {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg-main);
    padding: 3px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mock-hero-banner {
    padding: 12px 14px;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.violet-banner {
    background: linear-gradient(135deg, #fd6809 0%, #ff8a3d 100%);
}

.emerald-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.cyan-banner {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
}

.rose-banner {
    background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
}

.amber-banner {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.mock-hero-banner h4 {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
}

.mock-hero-banner p {
    font-size: 0.68rem;
    opacity: 0.9;
}

.mock-btn {
    font-size: 0.68rem;
    font-weight: 700;
    background: #ffffff;
    color: #1f2937;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.mock-categories {
    display: flex;
    gap: 6px;
    overflow-x: auto;
}

.cat-pill {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.cat-pill.active {
    background: var(--text-main);
    color: var(--bg-main);
    border-color: var(--text-main);
}

.mock-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.mock-prod-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prod-img-placeholder {
    height: 70px;
    background: var(--bg-main);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.prod-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-price {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
}

/* Card Footer */
.app-card-footer {
    background: var(--bg-card);
    padding: 8px 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-footer-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-activate-theme {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px var(--primary-glow);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.recent-app-card.card-active .btn-activate-theme {
    background: #10b981;
}

/* Responsive adjustments for Landscape 3D stack */
@media (max-width: 992px) {
    .recent-apps-stack {
        width: 500px;
        height: 320px;
    }

    .recent-app-card.card-prev-1 {
        transform: translateX(-35%) scale(0.85) translateZ(-80px) rotateY(16deg);
    }

    .recent-app-card.card-next-1 {
        transform: translateX(35%) scale(0.85) translateZ(-80px) rotateY(-16deg);
    }

    .recent-app-card.card-prev-2 {
        transform: translateX(-68%) scale(0.7) translateZ(-160px) rotateY(25deg);
    }

    .recent-app-card.card-next-2 {
        transform: translateX(68%) scale(0.7) translateZ(-160px) rotateY(-25deg);
    }
}

@media (max-width: 640px) {
    .recent-apps-stack {
        width: 320px;
        height: 230px;
    }

    .recent-app-card.card-prev-1 {
        transform: translateX(-22%) scale(0.84) translateZ(-60px) rotateY(12deg);
    }

    .recent-app-card.card-next-1 {
        transform: translateX(22%) scale(0.84) translateZ(-60px) rotateY(-12deg);
    }

    .recent-app-card.card-prev-2,
    .recent-app-card.card-next-2 {
        opacity: 0;
        pointer-events: none;
    }
}

.preview-theme-canvas {
    display: flex;

    flex-direction: column;

    gap: 1.5rem;
}

.theme-banner-box {
    padding: 2rem;

    border-radius: var(--radius-md);

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.theme-products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1rem;
}

.theme-product-card {
    background: var(--bg-main);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    padding: 1rem;

    display: flex;

    flex-direction: column;

    gap: 0.5rem;
}


/* ==========================================================================
   KEY FEATURES
   ========================================================================== */

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    padding: 1.75rem;

    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);

    background: var(--bg-card-hover);

    border-color: var(--border-highlight);

    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 50px;
    height: 50px;

    border-radius: var(--radius-sm);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    margin-bottom: 1.25rem;
}

.icon-violet {
    background: rgba(253, 104, 9, 0.12);
    color: #fd6809;
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.icon-rose {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
}

.icon-amber {
    background: rgba(253, 104, 9, 0.12);
    color: #fd6809;
}

.icon-purple {
    background: rgba(253, 104, 9, 0.12);
    color: #fd6809;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.icon-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.feature-card h3 {
    font-size: 1.15rem;

    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;

    color: var(--text-muted);
}


/* ==========================================================================
   LIVE DEMO HUB — MODERN CARD UI
   ========================================================================== */

.demo-cards-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;

    align-items: stretch;
}

.demo-card {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-lg);

    padding: 1.6rem;

    display: flex;

    flex-direction: column;

    gap: 1rem;

    position: relative;

    overflow: hidden;

    transition: all var(--transition-normal);

    box-shadow: var(--shadow-sm);
}

.demo-card::before {
    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: var(--gradient-primary);

    opacity: 0;

    transition: opacity var(--transition-fast);
}

.demo-card:hover {
    transform: translateY(-6px);

    border-color: var(--border-highlight);

    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08), 0 0 24px var(--primary-glow);
}

.demo-card:hover::before {
    opacity: 1;
}

.demo-card-top {
    display: flex;

    align-items: center;

    gap: 0.9rem;
}

.demo-role-icon {
    width: 48px;

    height: 48px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.35rem;

    color: #fff;

    flex-shrink: 0;
}

.icon-admin {
    background: linear-gradient(135deg, #fd6809 0%, #ff8a3d 100%);

    box-shadow: 0 4px 14px rgba(253, 104, 9, 0.35);
}

.icon-vendor {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);

    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.icon-customer {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);

    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.icon-rider {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);

    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.demo-title-group {
    display: flex;

    flex-direction: column;

    gap: 0.2rem;

    min-width: 0;
}

.demo-title-group h3 {
    font-size: 1.1rem;

    font-weight: 700;

    color: var(--text-main);

    line-height: 1.25;

    margin: 0;
}

.demo-platform-badges {
    display: flex;

    gap: 0.35rem;

    flex-wrap: wrap;

    margin-bottom: 2px;
}

.platform-badge {
    font-size: 0.65rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    padding: 2px 7px;

    border-radius: var(--radius-pill);

    display: inline-flex;

    align-items: center;

    gap: 4px;
}

.badge-web {
    background: rgba(59, 130, 246, 0.1);

    color: #2563eb;

    border: 1px solid rgba(59, 130, 246, 0.22);
}

.badge-app {
    background: rgba(16, 185, 129, 0.1);

    color: #059669;

    border: 1px solid rgba(16, 185, 129, 0.22);
}

[data-theme-mode="dark"] .badge-web {
    color: #60a5fa;
}

[data-theme-mode="dark"] .badge-app {
    color: #34d399;
}

.demo-desc {
    font-size: 0.86rem;

    color: var(--text-muted);

    line-height: 1.5;

    margin: 0;

    flex: 1;
}

.demo-access-links {
    display: flex;

    flex-direction: column;

    gap: 0.5rem;

    margin-top: auto;
}

.demo-link-btn {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0.65rem 0.85rem;

    border-radius: var(--radius-md);

    text-decoration: none;

    transition: all var(--transition-fast);

    border: 1px solid var(--border-color);

    background: var(--bg-main);

    color: var(--text-main);
}

.demo-link-btn:hover {
    background: var(--bg-card-hover);

    border-color: var(--primary);

    transform: translateX(2px);
}

.link-btn-left {
    display: flex;

    align-items: center;

    gap: 0.65rem;

    min-width: 0;
}

.link-btn-left i {
    font-size: 1.15rem;

    flex-shrink: 0;
}

.web-launch .link-btn-left i {
    color: #3b82f6;
}

.app-launch .link-btn-left i {
    color: #10b981;
}

.link-btn-text {
    display: flex;

    flex-direction: column;

    line-height: 1.2;

    min-width: 0;
}

.link-platform {
    font-size: 0.82rem;

    font-weight: 700;

    color: var(--text-main);
}

.link-action {
    font-size: 0.7rem;

    color: var(--text-muted);

    font-weight: 500;
}

.launch-arrow {
    font-size: 0.75rem;

    opacity: 0.5;

    color: var(--text-muted);

    transition: all var(--transition-fast);

    flex-shrink: 0;
}

.demo-link-btn:hover .launch-arrow {
    opacity: 1;

    color: var(--primary);

    transform: translate(2px, -2px);
}

.demo-cred-panel {
    background: rgba(15, 23, 42, 0.03);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    padding: 0.75rem 0.85rem;

    display: flex;

    flex-direction: column;

    gap: 0.45rem;
}

[data-theme-mode="dark"] .demo-cred-panel {
    background: rgba(255, 255, 255, 0.03);
}

.cred-header-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 0.72rem;

    font-weight: 700;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.cred-title {
    display: flex;

    align-items: center;

    gap: 4px;
}

.cred-quick-copy {
    background: transparent;

    border: 1px solid var(--border-color);

    color: var(--primary);

    font-size: 0.72rem;

    font-weight: 700;

    padding: 2px 7px;

    border-radius: var(--radius-pill);

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 3px;

    transition: all var(--transition-fast);
}

.cred-quick-copy:hover {
    background: var(--primary);

    color: #fff;

    border-color: var(--primary);
}

.cred-items-grid {
    display: flex;

    flex-direction: column;

    gap: 0.3rem;
}

.cred-field {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 0.5rem;
}

.cred-name {
    color: var(--text-muted);

    font-weight: 600;

    font-size: 0.78rem;
}

.cred-data {
    font-family: monospace;

    font-weight: 700;

    color: var(--primary);

    background: rgba(253, 104, 9, 0.08);

    padding: 1px 6px;

    border-radius: 4px;

    font-size: 0.8rem;

    word-break: break-all;
}


/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-section .container {
    max-width: 1360px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.85rem 1.35rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    z-index: 1;
    overflow: hidden;
    flex: 0 0 340px;
    width: 340px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scaleX(0.3);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Default featured card state */
.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 35px var(--primary-glow);
}

.price-card.featured::before {
    opacity: 1;
    transform: scaleX(1);
}

/* Stable Pricing Card Styles (Mouse Hover Transform Disabled) */
.price-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 35px var(--primary-glow);
}

.price-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.price-card.featured:hover {
    /* No additional transform to keep size same */
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px var(--primary-glow);
    white-space: nowrap;
    z-index: 2;
}

.price-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: rgba(100, 116, 139, 0.10);
    color: var(--text-muted);
    border: 1px solid rgba(100, 116, 139, 0.20);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.price-tag-pill.app-pill {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme-mode="dark"] .price-tag-pill.app-pill {
    color: #34d399;
}

.price-tag-pill.multivendor-pill {
    background: rgba(253, 104, 9, 0.12);
    color: var(--primary);
    border-color: rgba(253, 104, 9, 0.3);
}

.price-tag-pill.custom-pill {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme-mode="dark"] .price-tag-pill.custom-pill {
    color: #a5b4fc;
}

.price-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.price-header h3 {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-main);
    line-height: 1.25;
}

.price-header h3 .sub-name {
    display: inline;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
}

.price-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
    min-height: 2.3em;
}

.price-pricing {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.price-original {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.old-price {
    font-family: var(--font-secondary);
    font-size: 1.28rem;
    font-weight: 800;
    color: #64748b;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 3px;
    letter-spacing: -0.5px;
    line-height: 1;
}

[data-theme-mode="dark"] .old-price {
    color: #94a3b8;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.discount-badge i {
    font-size: 0.72rem;
}

.discount-badge.discount-featured {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    box-shadow: 0 3px 12px rgba(255, 65, 108, 0.45);
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.price-amount span {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(253, 104, 9, 0.12);
    border: 1px solid rgba(253, 104, 9, 0.28);
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-card.featured .price-amount {
    color: var(--primary);
}

.price-card.featured .price-amount span {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.price-custom-box {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    min-height: 58px;
}

.custom-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(253, 104, 9, 0.12);
    border: 1px solid rgba(253, 104, 9, 0.28);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    width: fit-content;
}

.custom-price-tag i {
    font-size: 0.7rem;
}

.custom-price-text {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.price-features li {
    font-size: 0.86rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.25;
}

.price-features li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

.price-features li i.fa-xmark {
    color: #ef4444;
}

.price-features li.disabled {
    color: var(--text-subtle);
    opacity: 0.7;
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-accordion {
    max-width: 800px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition: all var(--transition-fast);
}

.faq-question {
    width: 100%;

    background: transparent;

    border: none;

    padding: 1.25rem 1.5rem;

    color: var(--text-main);

    font-family: var(--font-primary);

    font-size: 1.05rem;

    font-weight: 600;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 1rem;

    cursor: pointer;

    text-align: left;
}

.faq-question i {
    transition: transform var(--transition-fast);

    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;

    padding: 0 1.5rem;

    color: var(--text-muted);

    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--border-highlight);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;

    padding: 0 1.5rem 1.25rem 1.5rem;
}


/* ==========================================================================
   CTA
   ========================================================================== */

.cta-banner {
    background: #fd6809;

    padding: 3rem 0;

    position: relative;

    overflow: hidden;
}

.cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

    position: relative;

    z-index: 2;
}

.cta-content h2 {
    font-size: 2.2rem;

    color: #fff;

    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);

    font-size: 1.1rem;
}

.cta-actions {
    display: flex;

    gap: 1rem;

    flex-wrap: wrap;
}

.cta-banner .btn-light {
    background: #ffffff;

    color: #fd6809;

    border-color: #ffffff;
}

.cta-banner .btn-light:hover {
    background: #fff2e6;

    color: #e85d00;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #17120e;

    border-top: 1px solid var(--border-color);

    padding-top: 3.5rem;

    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.6fr;

    gap: 2.5rem;

    margin-bottom: 2.5rem;
}

.brand-col p {
    color: #a7afb9;

    font-size: 0.9rem;

    margin: 1.25rem 0;
}

.social-links {
    display: flex;

    gap: 0.6rem;

    flex-wrap: wrap;
}

.social-links a {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.09);

    color: #a7afb9;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);

    color: #fff;

    border-color: var(--primary);
}

.footer-col h4 {
    font-size: 1.05rem;

    margin-bottom: 1.25rem;

    color: #ffffff;
}

.footer-col ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 0.6rem;
}

.footer-col ul li a {
    color: #a7afb9;

    text-decoration: none;

    font-size: 0.9rem;

    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 0.75rem;

    margin-bottom: 1rem;
}

.contact-entry {
    display: flex;

    align-items: flex-start;

    gap: 0.75rem;

    font-size: 0.86rem;

    color: #a7afb9;

    line-height: 1.45;
}

.contact-entry .contact-icon {
    color: var(--primary);

    font-size: 1rem;

    margin-top: 3px;

    flex-shrink: 0;
}

.contact-text {
    display: flex;

    flex-direction: column;

    gap: 1px;
}

.contact-text strong {
    color: #ffffff;

    font-size: 0.78rem;

    text-transform: uppercase;

    letter-spacing: 0.4px;
}

.contact-text a {
    color: #a7afb9;

    text-decoration: none;

    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary);
}

.footer-map-box {
    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-md);

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: all var(--transition-fast);
}

.footer-map-box:hover {
    border-color: var(--border-highlight);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.footer-map-iframe-wrapper {
    width: 100%;

    height: 125px;

    background: #111;

    overflow: hidden;

    position: relative;
}

.footer-map-iframe-wrapper iframe {
    width: 100%;

    height: 100%;

    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);

    transition: filter var(--transition-fast);
}

.footer-map-box:hover .footer-map-iframe-wrapper iframe {
    filter: none;
}

.footer-map-btn {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    padding: 0.55rem 0.85rem;

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;

    font-size: 0.78rem;

    font-weight: 700;

    text-decoration: none;

    transition: all var(--transition-fast);

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-map-btn i.fa-map-location-dot {
    color: var(--primary);
}

.footer-map-btn:hover {
    background: var(--primary);

    color: #ffffff;
}

.footer-map-btn:hover i.fa-map-location-dot {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);

    padding-top: 1.75rem;

    font-size: 0.85rem;

    color: #a7afb9;
}

.footer-bottom-flex {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 1.25rem;

    flex-wrap: wrap;
}

.copyright-main {
    font-size: 0.88rem;

    color: #a7afb9;

    margin: 0;
}

.copyright-main strong {
    color: #ffffff;
}

.copyright-sub {
    font-size: 0.85rem;

    color: #a7afb9;

    margin: 0;

    letter-spacing: 0.3px;
}

.copyright-sub a {
    color: var(--primary);

    text-decoration: none;

    transition: all var(--transition-fast);
}

.copyright-sub a:hover {
    color: #ffffff;

    text-decoration: underline;
}

.footer-terms {
    display: flex;

    gap: 1.5rem;

    flex-wrap: wrap;
}

.footer-terms a {
    color: #a7afb9;

    text-decoration: none;

    transition: color var(--transition-fast);
}

.footer-terms a:hover {
    color: var(--primary);
}


/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(16px);

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 1.5rem;

    opacity: 0;

    pointer-events: none;

    transition: opacity var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;

    pointer-events: auto;
}

.modal-container {
    background: var(--bg-card);

    border: 1px solid var(--border-highlight);

    border-radius: var(--radius-lg);

    width: 100%;

    box-shadow: var(--shadow-md);

    overflow: hidden;

    transform: translateY(20px);

    transition: transform var(--transition-fast);

    max-height: 90vh;

    display: flex;

    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.demo-modal-box {
    max-width: 950px;

    height: 650px;

    display: flex;

    flex-direction: column;
}

.inquiry-modal-box {
    max-width: 600px;
}

.modal-header {
    padding: 1rem 1.5rem;

    background: var(--bg-main);

    border-bottom: 1px solid var(--border-color);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;

    flex-shrink: 0;
}

.modal-title {
    font-family: var(--font-secondary);

    font-weight: 700;

    font-size: 1.1rem;

    display: flex;

    align-items: center;

    gap: 0.6rem;

    min-width: 0;

    color: var(--text-main);
}

.modal-close {
    background: transparent;

    border: none;

    color: var(--text-muted);

    font-size: 1.5rem;

    cursor: pointer;

    flex-shrink: 0;

    line-height: 1;

    padding: 0.25rem;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;

    flex: 1;

    overflow-y: auto;
}


/* ==========================================================================
   DEMO MODAL
   ========================================================================== */

.demo-frame-bar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    background: var(--bg-main);

    padding: 0.6rem 1rem;

    border-radius: var(--radius-sm);

    margin-bottom: 1rem;

    gap: 0.75rem;

    flex-wrap: wrap;
}

.demo-tabs-switch {
    display: flex;

    gap: 0.4rem;

    flex-wrap: wrap;
}

.demo-frame-tab {
    background: transparent;

    border: 1px solid var(--border-color);

    color: var(--text-muted);

    padding: 0.4rem 0.8rem;

    border-radius: var(--radius-pill);

    font-size: 0.8rem;

    font-weight: 600;

    cursor: pointer;
}

.demo-frame-tab.active {
    background: var(--primary);

    color: #fff;

    border-color: var(--primary);
}

.demo-cred-hint {
    font-size: 0.8rem;

    color: var(--text-muted);

    word-break: break-word;
}

.demo-canvas-viewport {
    height: 480px;

    background: var(--bg-main);

    border-radius: var(--radius-sm);

    border: 1px solid var(--border-color);

    padding: 1rem;

    overflow-y: auto;
}


/* ==========================================================================
   INQUIRY FORM
   ========================================================================== */

.inquiry-form {
    display: flex;

    flex-direction: column;

    gap: 1rem;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1rem;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 0.4rem;

    min-width: 0;
}

.form-group label {
    font-size: 0.85rem;

    font-weight: 600;

    color: var(--text-main);
}

.form-control {
    background: var(--bg-main);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-sm);

    padding: 0.7rem 1rem;

    color: var(--text-main);

    font-family: var(--font-primary);

    font-size: 0.9rem;

    outline: none;

    transition: border-color var(--transition-fast);

    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(253, 104, 9, 0.10);
}

.form-control::placeholder {
    color: var(--text-subtle);
}

.form-success-msg {
    display: none;

    text-align: center;

    padding: 2rem 0;
}

.success-icon {
    font-size: 3rem;

    color: #10b981;

    margin-bottom: 1rem;
}

.quote-modal-pkg-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: rgba(253, 104, 9, 0.12);
    color: var(--primary);
    border: 1px solid rgba(253, 104, 9, 0.3);
    margin-left: auto;
    white-space: normal;
    text-align: right;
}

.btn-submit-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.82rem 1.25rem;
    font-size: 0.96rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--primary-glow);
    margin-top: 0.35rem;
}

.btn-submit-lead i {
    font-size: 1.1rem;
}

.modal-wa-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.85rem 0;
    color: var(--text-subtle);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.65px;
}

.modal-wa-divider::before,
.modal-wa-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.modal-wa-divider span {
    padding: 0 0.75rem;
}

.whatsapp-instant-banner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.28);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

[data-theme-mode="dark"] .whatsapp-instant-banner {
    background: rgba(37, 211, 102, 0.11);
    border-color: rgba(37, 211, 102, 0.32);
}

.whatsapp-instant-banner:hover {
    background: rgba(37, 211, 102, 0.16);
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.22);
}

.wa-banner-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.38);
}

.wa-banner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.wa-banner-info strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
}

.wa-banner-info span {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.wa-banner-arrow {
    font-size: 0.85rem;
    color: #25d366;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.whatsapp-instant-banner:hover .wa-banner-arrow {
    transform: translateX(4px);
}


/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
    position: fixed;

    bottom: 24px;
    right: 24px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.8rem;

    text-decoration: none;

    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);

    z-index: 999;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);

    animation: whatsappPulse 2.4s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);

    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
    0% {
        box-shadow:
            0 6px 20px rgba(37, 211, 102, 0.5),
            0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow:
            0 6px 20px rgba(37, 211, 102, 0.5),
            0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 6px 20px rgba(37, 211, 102, 0.5),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
    position: fixed;

    bottom: 96px;

    right: 20px;
    left: 20px;

    z-index: 2000;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 0.5rem;

    pointer-events: none;
}

.toast {
    background: var(--bg-card);

    border: 1px solid var(--border-highlight);

    border-radius: var(--radius-md);

    padding: 0.75rem 1.25rem;

    color: var(--text-main);

    font-size: 0.85rem;

    display: flex;

    align-items: center;

    gap: 0.6rem;

    box-shadow: var(--shadow-md);

    animation: slideInToast 0.3s ease;

    max-width: 100%;
}

@keyframes slideInToast {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */


/* ---- Tablet Landscape <=1024px ---- */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 1.75rem auto;
    }

    .tech-pills,
    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-mockup-wrapper {
        margin-top: 1rem;
    }

    .features-grid,
    .demo-cards-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 1.1rem;
    }

    .theme-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-tabs {
        display: flex;

        grid-template-columns: none;

        overflow-x: auto;

        gap: 0.85rem;

        padding-bottom: 0.5rem;

        margin-bottom: 2rem;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .ecosystem-tabs::-webkit-scrollbar {
        display: none;
    }

    .eco-tab {
        flex: 0 0 auto;

        width: 230px;
    }

    .pricing-grid {
        gap: 1.5rem;
        max-width: 860px;
        margin: 0 auto;
    }

    .price-card {
        flex: unset;
        min-width: 0;
    }

    .price-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eco-panel-content {
        grid-template-columns: 1fr;

        gap: 2rem;
    }

    .nav-menu {
        gap: 1.1rem;
    }
}


/* ---- Tablet Portrait <=900px ---- */

@media (max-width: 900px) {
    .nav-menu {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 100%);

        overflow-y: auto;

        background: var(--navbar-bg-scrolled);

        backdrop-filter: blur(20px);

        -webkit-backdrop-filter: blur(20px);

        flex-direction: column;

        align-items: flex-start;

        gap: 0.25rem;

        padding: 1rem 1.5rem 1.5rem;

        border-bottom: 1px solid var(--border-color);

        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        width: 100%;

        padding: 0.75rem 0.25rem;

        border-bottom: 1px solid var(--border-color);
    }

    .mobile-toggle-btn {
        display: flex;
    }

    .nav-menu-actions {
        margin-left: 0;

        width: 100%;

        margin-top: 0.5rem;

        padding-top: 1rem;

        border-top: 1px solid var(--border-color);
    }

    .nav-menu-actions #openDemoModalNav {
        flex: 1;
    }

    .nav-menu-actions .btn-label {
        display: inline;
    }

    .nav-actions {
        gap: 0.6rem;
    }
}


/* ---- Large Phones / Small Tablets <=768px ---- */

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero-section {
        padding-top: 7.5rem;

        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;

        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.78rem;

        text-align: left;
    }

    .device-frame {
        width: 280px;

        height: 560px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 1.85rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .features-grid,
    .demo-cards-grid {
        grid-template-columns: 1fr;

        gap: 1rem;
    }

    .feature-card {
        padding: 1.35rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;

        font-size: 1.25rem;

        margin-bottom: 1rem;
    }

    .eco-tab {
        width: 210px;
    }

    .theme-products-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 0.75rem;
    }

    .theme-banner-box {
        flex-direction: column;

        align-items: flex-start;

        gap: 1.25rem;

        padding: 1.5rem;
    }

    .theme-banner-box h2 {
        font-size: 1.4rem;
    }

    .theme-preview-content {
        padding: 1.25rem;

        min-height: unset;
    }

    .theme-preview-header {
        padding: 0.6rem 0.85rem;
    }

    .browser-address {
        order: 3;

        flex-basis: 100%;

        text-align: center;
    }

    .ecosystem-display {
        padding: 1.5rem;
    }

    .eco-details h3 {
        font-size: 1.35rem;
    }

    .eco-details>div[style*="display:flex"] {
        flex-direction: column;
    }

    .pricing-grid {
        max-width: 480px;
        margin: 0 auto;
        gap: 1.35rem;
    }

    .price-card {
        padding: 1.6rem 1.35rem;
        width: 100%;
        max-width: 100%;
    }

    .price-header {
        margin-bottom: 1.1rem;
        padding-bottom: 1.1rem;
    }

    .price-features {
        gap: 0.65rem;
        margin-bottom: 1.35rem;
    }

    .price-amount {
        font-size: 2.2rem;
        margin-top: 0.3rem;
    }

    .cta-banner {
        padding: 3rem 0;
    }

    .cta-container {
        flex-direction: column;

        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-actions {
        justify-content: center;

        width: 100%;
    }

    .cta-actions .btn {
        flex: 1 1 auto;
    }

    .footer {
        padding-top: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 2.25rem;

        margin-bottom: 2.5rem;
    }

    .footer-bottom-flex {
        flex-direction: column;

        text-align: center;

        gap: 0.35rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .demo-modal-box {
        height: 85vh;
    }

    .demo-canvas-viewport {
        height: auto;

        max-height: 55vh;
    }

    .modal-body {
        padding: 1.1rem;
    }
}


/* ---- Phones <=600px ---- */

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;

        height: 50px;

        font-size: 1.55rem;

        bottom: 16px;

        right: 16px;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .device-frame {
        width: 250px;

        height: 500px;

        border-width: 3px;

        padding: 10px;
    }

    .mockup-selector-tabs {
        justify-content: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 1.25rem;
    }

    .stat-icon {
        width: 38px;

        height: 38px;

        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .eco-tab {
        padding: 0.85rem;

        gap: 0.75rem;
    }

    .theme-selector-wrapper {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 0.25rem;

        -webkit-overflow-scrolling: touch;
    }

    .theme-btn {
        flex-shrink: 0;
    }

    .theme-products-grid {
        grid-template-columns: 1fr 1fr;

        gap: 0.6rem;
    }

    .features-grid,
    .demo-cards-grid {
        gap: 0.85rem;
    }

    .feature-card {
        padding: 1.15rem;
    }

    .feature-icon {
        width: 40px;

        height: 40px;

        font-size: 1.15rem;

        margin-bottom: 0.85rem;
    }

    .feature-card h3 {
        font-size: 1.05rem;

        margin-bottom: 0.4rem;
    }

    .pricing-grid {
        gap: 1.15rem;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
        padding: 1.35rem 1.15rem;
    }

    .price-header {
        margin-bottom: 0.95rem;
        padding-bottom: 0.95rem;
    }

    .price-header p {
        min-height: unset;
    }

    .price-features {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .demo-card-header {
        padding: 1rem;
    }

    .demo-actions {
        flex-direction: column;
    }

    .demo-actions .btn {
        width: 100%;
    }

    .credential-box {
        font-size: 0.75rem;
    }

    .modal-overlay {
        padding: 0.75rem;
    }

    .inquiry-modal-box {
        max-width: 100%;
        max-height: 94vh;
    }

    .btn-submit-lead {
        padding: 0.78rem 1rem;
        font-size: 0.94rem;
    }

    .whatsapp-instant-banner {
        padding: 0.65rem 0.85rem;
        gap: 0.75rem;
    }

    .wa-banner-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .wa-banner-info strong {
        font-size: 0.88rem;
    }

    .wa-banner-info span {
        font-size: 0.72rem;
    }

    .modal-title {
        font-size: 1rem;
    }

    .demo-frame-bar {
        flex-direction: column;

        align-items: flex-start;
    }

    .demo-tabs-switch {
        width: 100%;
    }

    .demo-frame-tab {
        flex: 1;

        text-align: center;
    }

    .toast-container {
        bottom: 78px;

        right: 12px;

        left: 12px;

        align-items: stretch;
    }

    .toast {
        justify-content: center;
    }
}


/* ---- Small Phones <=420px ---- */

@media (max-width: 420px) {
    .container {
        padding: 0 1rem;
    }

    .logo-title {
        font-size: 1.15rem;
    }

    .logo-badge {
        display: none;
    }

    .hero-section {
        padding-top: 6.5rem;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .hero-badge span:last-child {
        font-size: 0.72rem;
    }

    .tech-pills {
        gap: 0.4rem;
    }

    .tech-pill {
        font-size: 0.72rem;

        padding: 0.3rem 0.7rem;
    }

    .device-frame {
        width: 220px;

        height: 440px;

        border-radius: 30px;
    }

    .device-screen {
        border-radius: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mock-grid {
        grid-template-columns: 1fr 1fr;
    }

    .theme-products-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 1.25rem 1rem;
    }

    .price-amount {
        font-size: 1.95rem;
    }

    .old-price {
        font-size: 1.15rem;
    }

    .discount-badge {
        font-size: 0.72rem;
        padding: 2px 7px;
    }

    .price-features li {
        font-size: 0.83rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;

        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.1rem 1.1rem 1.1rem;
    }

    .modal-header {
        padding: 0.85rem 1rem;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .quote-modal-pkg-badge {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.2rem;
        font-size: 0.72rem;
    }

    .modal-body {
        padding: 0.9rem;
    }

    .inquiry-modal-box .form-control {
        font-size: 16px;
        padding: 0.65rem 0.8rem;
    }
}


/* ==========================================================================
   LIGHT MODE FINAL OVERRIDES
   ========================================================================== */

[data-theme-mode="light"] body,
[data-theme-mode="light"] .hero-section,
[data-theme-mode="light"] .section,
[data-theme-mode="light"] .stats-bar {
    background-color: #fffaf5;

    color: #1f2937;
}

[data-theme-mode="light"] h1,
[data-theme-mode="light"] h2,
[data-theme-mode="light"] h3,
[data-theme-mode="light"] h4,
[data-theme-mode="light"] h5,
[data-theme-mode="light"] h6,
[data-theme-mode="light"] .logo-title,
[data-theme-mode="light"] .stat-number,
[data-theme-mode="light"] .faq-question,
[data-theme-mode="light"] .theme-btn {
    color: #1f2937;
}

[data-theme-mode="light"] .hero-subtitle,
[data-theme-mode="light"] .section-description,
[data-theme-mode="light"] .feature-card p,
[data-theme-mode="light"] .demo-card-body p,
[data-theme-mode="light"] .price-header p,
[data-theme-mode="light"] .faq-answer,
[data-theme-mode="light"] .stat-label,
[data-theme-mode="light"] .trust-text,
[data-theme-mode="light"] .footer-col p {
    color: #667085;
}


/* ==========================================================================
   LIGHT MODE NAVBAR
   ========================================================================== */

[data-theme-mode="light"] .navbar-header {
    background: rgba(255, 255, 255, 0.94);

    border-bottom-color: rgba(15, 23, 42, 0.08);

    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

[data-theme-mode="light"] .nav-link {
    color: #475467;
}

[data-theme-mode="light"] .nav-link:hover,
[data-theme-mode="light"] .nav-link.active {
    color: #fd6809;
}


/* ==========================================================================
   LIGHT MODE CARDS
   ========================================================================== */

[data-theme-mode="light"] .feature-card,
[data-theme-mode="light"] .demo-card,
[data-theme-mode="light"] .price-card,
[data-theme-mode="light"] .faq-item,
[data-theme-mode="light"] .ecosystem-display,
[data-theme-mode="light"] .theme-preview-box,
[data-theme-mode="light"] .eco-tab,
[data-theme-mode="light"] .mockup-selector-tabs {
    background: #ffffff;

    border-color: rgba(15, 23, 42, 0.09);

    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

[data-theme-mode="light"] .feature-card:hover,
[data-theme-mode="light"] .demo-card:hover,
[data-theme-mode="light"] .price-card:hover,
[data-theme-mode="light"] .eco-tab:hover,
[data-theme-mode="light"] .faq-item:hover {
    background: #fffaf5;

    border-color: rgba(253, 104, 9, 0.32);
}

[data-theme-mode="light"] .eco-tab.active,
[data-theme-mode="light"] .theme-btn.active {
    background: #fff2e6;

    border-color: #fd6809;
}


/* ==========================================================================
   LIGHT MODE INPUTS
   ========================================================================== */

[data-theme-mode="light"] .form-control {
    background: #ffffff;

    color: #1f2937;

    border-color: rgba(15, 23, 42, 0.12);
}

[data-theme-mode="light"] .form-control:focus {
    background: #ffffff;

    color: #1f2937;

    border-color: #fd6809;

    box-shadow: 0 0 0 3px rgba(253, 104, 9, 0.10);
}

[data-theme-mode="light"] .form-control::placeholder {
    color: #98a2b3;
}


/* ==========================================================================
   LIGHT MODE MODALS
   ========================================================================== */

[data-theme-mode="light"] .modal-container {
    background: #ffffff;

    color: #1f2937;

    border-color: rgba(253, 104, 9, 0.20);

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
}

[data-theme-mode="light"] .modal-header {
    background: #fffaf5;

    color: #1f2937;

    border-bottom-color: rgba(15, 23, 42, 0.08);
}


/* ==========================================================================
   LIGHT MODE DEMO SURFACES
   ========================================================================== */

[data-theme-mode="light"] .demo-frame-bar,
[data-theme-mode="light"] .demo-canvas-viewport,
[data-theme-mode="light"] .credential-box,
[data-theme-mode="light"] .eco-graphic-box {
    background: #fff7f0;

    border-color: rgba(253, 104, 9, 0.12);
}


/* ==========================================================================
   LIGHT MODE PRICING
   ========================================================================== */

[data-theme-mode="light"] .price-card.featured {
    border-color: #fd6809;

    box-shadow: 0 12px 36px rgba(253, 104, 9, 0.14);
}


/* ==========================================================================
   LIGHT MODE MOBILE MENU
   ========================================================================== */

@media (max-width: 900px) {
    [data-theme-mode="light"] .nav-menu {
        background: rgba(255, 255, 255, 0.99);

        border-bottom-color: rgba(15, 23, 42, 0.08);

        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    }

    [data-theme-mode="light"] .nav-menu .nav-link {
        color: #475467;

        border-bottom-color: rgba(15, 23, 42, 0.07);
    }

    [data-theme-mode="light"] .nav-menu .nav-link:hover,
    [data-theme-mode="light"] .nav-menu .nav-link.active {
        color: #fd6809;
    }

    [data-theme-mode="light"] .nav-menu-actions {
        border-top-color: rgba(15, 23, 42, 0.08);
    }
}


/* ==========================================================================
   DEVICE MOCKUP ALWAYS DARK
   ========================================================================== */

.device-frame,
.device-notch {
    background-color: #000000;
}



/* ==========================================================================
   DARK MODE SPECIFIC COMPONENT OVERRIDES
   ========================================================================== */

[data-theme-mode="dark"] .footer {
    background: #06070a;
}

[data-theme-mode="dark"] .footer-col h4 {
    color: #ffffff;
}

[data-theme-mode="dark"] .footer-col ul li a,
[data-theme-mode="dark"] .footer-col p,
[data-theme-mode="dark"] .footer-bottom,
[data-theme-mode="dark"] .footer-terms a,
[data-theme-mode="dark"] .brand-col p {
    color: #a7afb9;
}

[data-theme-mode="dark"] .footer-col ul li a:hover,
[data-theme-mode="dark"] .footer-terms a:hover {
    color: #fd6809;
}

[data-theme-mode="dark"] .theme-preview-header {
    background: rgba(0, 0, 0, 0.4);
}

[data-theme-mode="dark"] .browser-address {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme-mode="dark"] .demo-frame-bar,
[data-theme-mode="dark"] .demo-canvas-viewport,
[data-theme-mode="dark"] .credential-box,
[data-theme-mode="dark"] .eco-graphic-box {
    background: var(--bg-main);
}

[data-theme-mode="dark"] .form-control {
    background: var(--bg-main);
    color: var(--text-main);
}

[data-theme-mode="dark"] .modal-header {
    background: rgba(0, 0, 0, 0.4);
}

.explore-btn a {
    color: #ffffff;
}

/* Why Choose Us Section */
.why-choose-section .section-header {
    margin-bottom: 2.5rem;
}

/* Client Logo Marquee */
.why-choose-section .client-marquee-wrapper {
    margin-bottom: 2rem;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.why-choose-section .logo-marquee-track {
    display: flex;
    width: max-content;
}

.why-choose-section .logo-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 3rem;
    padding-right: 3rem;
    animation: marquee-scroll 30s linear infinite;
}

.why-choose-section .client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 60px;
    padding: 0 0.5rem;
}

.why-choose-section .client-logo-item img {
    height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.why-choose-section .client-logo-item img:hover {
    opacity: 0.85;
    transform: scale(1.2);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.why-choose-section .client-marquee-wrapper:hover .logo-marquee-group {
    animation-play-state: paused;
}

/* Bottom Text */
.why-choose-bottom-text {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   CUSTOMER SUMMARY & VISITING CARD MODAL STYLES
   ========================================================================== */
.lead-summary-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1rem 0 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    text-align: left;
}

[data-theme-mode="light"] .lead-summary-card {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.lead-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lead-summary-item .summary-label {
    font-size: 0.75rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 600;
}

.lead-summary-item .summary-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main, #0f172a);
    word-break: break-word;
}

.visiting-card-section {
    margin-top: 1.25rem;
    text-align: left;
}

.visiting-card-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.visiting-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(253, 104, 9, 0.06));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.visiting-card:hover {
    transform: translateY(-3px);
    border-color: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(253, 104, 9, 0.12));
}

.visiting-card-avatar-box {
    position: relative;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 50% !important;
    flex-shrink: 0;
}

.visiting-card-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #25D366;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: block;
}

.visiting-card-avatar-box .online-indicator {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
}

.visiting-card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}

.visiting-card-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main, #0f172a);
    margin: 0;
    line-height: 1.2;
}

.visiting-card-designation {
    font-size: 0.76rem;
    color: var(--primary, #fd6809);
    font-weight: 600;
    line-height: 1.2;
}

.visiting-card-phone {
    font-size: 0.82rem;
    font-weight: 700;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.visiting-card-action {
    flex-shrink: 0;
}

.visiting-card-action .wa-badge {
    background: #25D366;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease;
}

.visiting-card:hover .wa-badge {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .visiting-card {
        flex-direction: row !important;
        text-align: left !important;
        padding: 0.75rem 0.9rem !important;
    }

    .visiting-card-info {
        align-items: flex-start !important;
    }
}

/* ==========================================================================
   END OF HYPERSTORE DESIGN SYSTEM
   ========================================================================== */