:root {
    --brand-primary: #635bff;
    --brand-dark: #0a2540;
    --brand-light: #f6f9fc;
    --text-main: #425466;
    --text-heading: #0a2540;
    --white: #ffffff;
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-soft: 0 15px 35px 0 rgba(10, 37, 64, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.03);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Global Wrapper */
.wrapper-page {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Section Spacing */
.section,
.wf-section {
    padding: 120px 0;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Base Section Elements */
.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.section-title.w {
    color: var(--white);
}

.paragraph {
    font-size: 18px;
    color: var(--text-main);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.title-wrapper.nm {
    margin-bottom: 0;
}

/* Enhanced Navigation */
.nav-top {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--brand-dark);
}

.logo-symbol {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--brand-primary);
}

/* Premium Button */
.btn,
.w-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: none;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn.primary {
    background-color: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(99, 91, 255, 0.4);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.3);
    filter: brightness(1.1);
}

.btn.secondary {
    background: var(--white);
    color: var(--brand-dark);
    border: 1px solid rgba(10, 37, 64, 0.1);
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn.outline:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.nav-cta {
    background: var(--brand-primary);
    color: var(--white) !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* Mega Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    padding: 10px 20px;
    color: var(--brand-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
}

.nav-dropdown-toggle:hover {
    color: var(--brand-primary);
}

.nav-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    min-width: 320px;
    padding: 24px;
    display: none;
    z-index: 3000;
    border: 1px solid rgba(10, 37, 64, 0.05);
    margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown-list {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    margin-bottom: 4px;
}

.dropdown-link:hover {
    background: var(--brand-light);
    transform: translateX(5px);
}

.dropdown-icon-box {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.05);
    font-size: 20px;
    flex-shrink: 0;
}

.dropdown-title {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 2px;
    display: block;
    line-height: 1.2;
}

.dropdown-description {
    font-size: 12px;
    color: var(--text-main);
    display: block;
    line-height: 1.4;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
    margin: 0 15px;
}

.language-button {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 50px;
    padding: 10px 18px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.language-button:hover {
    background: var(--white);
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.1);
}

.language-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
    min-width: 220px;
    overflow: hidden;
    margin-top: 10px;
    z-index: 3000;
    display: none;
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.language-dropdown-content.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
    font-size: 14px;
}

.language-option:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
}

/* Hero Section */
.hero-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(99, 91, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(99, 91, 255, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--white) 0%, #f9fafb 100%);
    padding: 180px 0 120px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.03);
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--brand-dark) 60%, var(--brand-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-p {
    font-size: 20px;
    color: var(--text-main);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 91, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-text {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.competitive-bar {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.03);
    width: fit-content;
}

.competitive-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.competitive-icon {
    font-size: 16px;
    color: var(--brand-primary);
}

.competitive-text {
    font-weight: 700;
    font-size: 13px;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-main {
    font-weight: 800;
    color: var(--brand-dark);
    font-size: 18px;
}

.pricing-comparison {
    color: var(--text-main);
    font-size: 14px;
    padding-left: 15px;
    border-left: 2px solid var(--brand-primary);
}

.trust-indicators {
    display: flex;
    gap: 20px;
}

.trust-item {
    font-size: 12px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item::before {
    content: "🛡️";
    font-size: 14px;
}

/* Image & Phone Mockup */
.hero-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(10, 37, 64, 0.15));
    transition: var(--transition);
}

.phone-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.hero-phone-mockup:hover .phone-overlay {
    opacity: 1;
    transform: translate(-50%, -60%);
}

.play-button {
    width: 30px;
    height: 30px;
    background: var(--brand-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.overlay-text {
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 14px;
}

/* Product Showcase */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pos-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.pos-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.15);
}

.pos-img-wrapper {
    background: #f8f9fc;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    position: relative;
}

.pos-img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.pos-product-card:hover .pos-img {
    transform: scale(1.05);
}

.pos-details {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pos-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.pos-desc {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pos-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pos-features-list li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pos-features-list i {
    color: var(--brand-primary);
}

.pos-tag {
    background: var(--brand-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--brand-primary);
    font-size: 13px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 60px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--brand-dark);
    color: var(--white);
    padding: 30px;
    font-weight: 700;
    text-align: center;
    align-items: center;
}

.comparison-feature-col {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    align-items: center;
    text-align: left;
}

.comparison-row.highlight {
    background: #f0f4f8;
}

.sumup-feature,
.shoppi-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--brand-dark);
}

.competitor-logo,
.our-logo {
    height: 24px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts - Benefits, Industries, Testimonials */
.industries-grid,
.solutions-grid,
.benefits-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.industry-card,
.solution-card,
.benefit-card,
.testimonial-card,
.pricing-card,
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(10, 37, 64, 0.05);
    height: 100%;
}

.industry-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.15);
}

.benefit-card {
    text-align: left;
    padding: 32px;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 14px;
    color: var(--text-main);
}

/* Feature Cards */
.feature-card.premium {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 16px;
    margin-bottom: 24px;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.highlight-item,
.industry-feature {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.feature-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    display: inline-block;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--brand-primary);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-plan {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-dark);
}

.pricing-period {
    color: var(--text-main);
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-feature {
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    font-size: 14px;
}

/* Testimonials */
.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--brand-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-main);
}

/* Footer Section */
.footer {
    background: var(--brand-dark);
    color: var(--white);
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Utils & Animations */
.section.dark {
    background: var(--brand-dark);
    color: var(--white);
}

.section.alt {
    background: #f8f9fc;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Overrides */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-h1 {
        font-size: 48px;
    }

    .hero-p {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .comparison-table {
        overflow-x: auto;
    }
}

/* Logos & Partners */
.wrapper-logos {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 37, 64, 0.05);
    display: flex;
    justify-content: flex-start;
}

.logo-sp {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.logo-sp:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Modal Overlay & Container */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-main);
}

.modal-content {
    padding: 30px;
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Screenshot Grid in Modal */
.screenshots-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.screenshot-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-footer {
    padding: 30px;
    border-top: 1px solid rgba(10, 37, 64, 0.05);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Mobile Nav Toggle */
.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-light);
    cursor: pointer;
}

@media (max-width: 991px) {
    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Footer & Brand Classes */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.logo-item.w {
    color: var(--white);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Section Utilities */
.section.security {
    background: #fcfcfd;
    border-top: 1px solid rgba(10, 37, 64, 0.05);
}

.section.marketplace {
    background: var(--brand-dark);
    color: var(--white);
}

.marketplace-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.marketplace-text {
    flex: 1;
    min-width: 300px;
}

.marketplace-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.marketplace-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marketplace-img-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.marketplace-mockup {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

/* Modal Enhancements */
.overview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-section h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.comparison-table.modal-style {
    margin-top: 0;
    box-shadow: none;
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.comparison-table.modal-style .comparison-header {
    padding: 20px;
    background: var(--brand-light);
    color: var(--brand-dark);
}

.comparison-table.modal-style .comparison-row {
    padding: 15px 20px;
}

/* Pricing Enhancements */
.pricing-note {
    margin-top: 20px;
    text-align: center;
    color: var(--text-main);
    font-size: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Industry enhancements */
.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.industry-icon {
    margin: 0 auto 20px;
    background: var(--brand-light);
    color: var(--brand-primary);
    width: 64px;
    height: 64px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Hero enhancements */
.hero-content.st {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Added Responsive Styles */
/* Added Responsive Styles */
@media (max-width: 991px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.w--open {
        display: flex;
    }

    .nav-link,
    .nav-dropdown-toggle {
        padding: 20px;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown-list {
        position: static;
        width: 100%;
        min-width: unset;
        box-shadow: none;
        border: none;
        background: #f8f9fc;
        padding: 10px 20px;
        display: none;
        animation: none;
    }

    /* Show dropdown list on click/hover logic can be handled via JS or keeping hover for simplicity if acceptable, 
       but for mobile a simple "always open" or "click to open" is better. 
       For now, let's ensure it doesn't float weirdly. */
    .nav-dropdown:hover .nav-dropdown-list {
        display: block;
    }

    .language-switcher {
        margin: 20px;
        display: block;
        text-align: left;
    }

    .language-button {
        width: 100%;
        justify-content: space-between;
    }

    .language-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-h1 {
        font-size: 42px;
    }

    .section,
    .wf-section {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-header,
    .comparison-row {
        min-width: 600px;
        /* Force scroll on small screens */
    }
}

@media (max-width: 479px) {
    .hero-h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .pricing-cards,
    .product-grid,
    .industries-grid,
    .solutions-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 20px;
    }
}