/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Green Palette - Emerald Green */
    --primary-color: #10b981;
    --primary-dark: #047857;
    --primary-light: #34d399;
    --primary-lighter: #6ee7b7;
    --primary-lightest: #a7f3d0;

    /* Secondary Orange Palette - Amber Orange */
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    --secondary-lighter: #fde68a;
    --secondary-lightest: #fef3c7;

    /* Accent Colors */
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;

    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f0fdf4;
    --bg-muted: #f3f4f6;

    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --border-accent: #d1fae5;

    /* Shadow System */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Gradient System */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #047857 100%);
    --gradient-secondary: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%);
    --gradient-highlight: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-soft: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
    --gradient-warm: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
}

/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(5deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--gradient-soft);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.nav-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    background: var(--bg-muted);
    border-radius: 8px;
    padding: 0.2rem;
    gap: 0.2rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.lang-btn:hover:not(.active) {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-right: 1rem;
}

.mobile-nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 50%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Brands Section */
.brands-section {
    margin-bottom: 3rem;
}

.brands-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brands-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.brands-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

.brands-carousel {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}

.brands-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.brand-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Content */
.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Stats Section */
.hero-stats {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.stat-icon i {
    font-size: 1.2rem;
    color: white;
}

.stat-content {
    flex: 1;
    text-align: right;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.stat-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.2;
}

.stats-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Hero Visual Section */
.hero-visual-section {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-dots span:nth-child(1) {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background: #28ca42;
}

.dashboard-content {
    display: flex;
    min-height: 300px;
}

.dashboard-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    width: 200px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-item i {
    font-size: 1.1rem;
}

.dashboard-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    height: 120px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
}

.bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }

    to {
        height: var(--height);
    }
}

.dashboard-cards {
    display: flex;
    gap: 1rem;
}

.card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.card-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Store Types Section */
.store-types {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.store-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.store-type-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.store-type-card:hover::before {
    transform: scaleX(1);
}

.store-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
}

.store-type-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.store-type-card:hover .store-type-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.store-type-icon i {
    font-size: 2.5rem;
    color: white;
}

.store-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.store-type-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.store-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.store-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.store-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.store-examples a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #007bff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #007bff;
    transition: 0.2s;
}

.store-examples a:hover {
    background-color: #007bff;
    color: #fff;
}

.store-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.example-tag {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.example-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Trusted Partners Section */
.trusted-partners {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.partner-icon i {
    font-size: 2rem;
    color: white;
}

.partner-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.partner-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.step-icon i {
    font-size: 1.2rem;
    color: white;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.footer-logo .logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-logo .logo-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-right: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-accent);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.2rem;
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .nav-link span {
        display: none;
    }

    .nav-link i {
        font-size: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .store-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .language-switcher {
        display: none;
    }

    .nav-actions .btn span {
        display: none;
    }

    .nav-actions .btn {
        padding: 0.75rem;
        min-width: auto;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.2rem;
    }

    .hero-container {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .stat-content {
        text-align: center;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .trust-indicators {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-visual-section {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .dashboard-preview {
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .dashboard-sidebar {
        width: 120px;
        padding: 1rem 0.5rem;
    }

    .sidebar-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .sidebar-item span {
        display: none;
    }

    .dashboard-main {
        padding: 1rem;
    }

    .chart-container {
        height: 100px;
    }

    .dashboard-cards {
        flex-direction: column;
        gap: 0.75rem;
    }

    .card {
        padding: 0.75rem;
    }

    .card-value {
        font-size: 1rem;
    }

    .card-label {
        font-size: 0.75rem;
    }

    /* Store Types Mobile */
    .store-types {
        padding: 4rem 0;
    }

    .store-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .store-type-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .store-type-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .store-type-icon i {
        font-size: 2rem;
    }

    .store-type-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .store-type-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Partners Mobile */
    .trusted-partners {
        padding: 3rem 0;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .partner-item {
        padding: 1.5rem;
    }

    .partner-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .partner-icon i {
        font-size: 1.8rem;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 4rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        margin-top: 1rem;
    }

    /* Pricing Mobile */
    .pricing-preview {
        padding: 4rem 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .pricing-card.featured {
        transform: none;
        margin: 0 1rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    /* Features Mobile */
    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    /* Section Headers Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .logo-icon i {
        font-size: 1rem;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
        border-radius: 0.5rem;
    }

    .stat-content {
        text-align: center;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .stat-icon i {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-description {
        font-size: 0.7rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .hero-visual-section {
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }

    .dashboard-preview {
        border-radius: 0.5rem;
    }

    .dashboard-sidebar {
        width: 100px;
        padding: 0.75rem 0.25rem;
    }

    .sidebar-item {
        padding: 0.4rem;
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .dashboard-main {
        padding: 0.75rem;
    }

    .chart-container {
        height: 80px;
        padding: 0.5rem;
    }

    .dashboard-cards {
        gap: 0.5rem;
    }

    .card {
        padding: 0.5rem;
    }

    .card i {
        font-size: 1.2rem;
    }

    .card-value {
        font-size: 0.9rem;
    }

    .card-label {
        font-size: 0.7rem;
    }

    /* Store Types Small Mobile */
    .store-types {
        padding: 3rem 0;
    }

    .store-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .store-type-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 1rem;
    }

    .store-type-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .store-type-icon i {
        font-size: 1.8rem;
    }

    .store-type-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .store-type-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .store-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .example-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    /* Partners Small Mobile */
    .trusted-partners {
        padding: 2.5rem 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-item {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    .partner-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .partner-icon i {
        font-size: 1.6rem;
    }

    .partner-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .partner-item p {
        font-size: 0.9rem;
    }

    /* How It Works Small Mobile */
    .how-it-works {
        padding: 3rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-top: 0.75rem;
    }

    .step-icon i {
        font-size: 1rem;
    }

    /* Pricing Small Mobile */
    .pricing-preview {
        padding: 3rem 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .pricing-card {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    .pricing-card.featured {
        transform: none;
        margin: 0 0.5rem;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .amount {
        font-size: 2rem;
    }

    .currency {
        font-size: 1rem;
    }

    .period {
        font-size: 0.9rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    .pricing-features i {
        font-size: 0.8rem;
    }

    /* Features Small Mobile */
    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .feature-icon i {
        font-size: 1.6rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Section Headers Small Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .partners-title {
        font-size: 1.6rem;
    }

    .partners-subtitle {
        font-size: 0.9rem;
    }

    /* Footer Small Mobile */
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
        justify-content: center;
    }

    .newsletter-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-input {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .newsletter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .copyright p {
        font-size: 0.85rem;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .legal-link {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.4rem 0.75rem;
        min-height: 55px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo-icon i {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }

    .hero-container {
        padding: 0 0.25rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.05;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 0.25rem;
    }

    .btn-large {
        max-width: 260px;
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        padding: 0.75rem;
        margin-top: 1rem;
    }

    .stat-item {
        padding: 0.6rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
    }

    .stat-icon i {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-description {
        font-size: 0.65rem;
    }

    .dashboard-sidebar {
        width: 80px;
        padding: 0.5rem 0.2rem;
    }

    .sidebar-item {
        padding: 0.3rem;
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .dashboard-main {
        padding: 0.5rem;
    }

    .chart-container {
        height: 70px;
        padding: 0.4rem;
    }

    .card {
        padding: 0.4rem;
    }

    .card i {
        font-size: 1rem;
    }

    .card-value {
        font-size: 0.8rem;
    }

    .card-label {
        font-size: 0.65rem;
    }

    .store-type-card {
        padding: 1.25rem 0.75rem;
        margin: 0 0.25rem;
    }

    .store-type-icon {
        width: 50px;
        height: 50px;
    }

    .store-type-icon i {
        font-size: 1.6rem;
    }

    .store-type-card h3 {
        font-size: 1.1rem;
    }

    .store-type-card p {
        font-size: 0.85rem;
    }

    .store-features li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    .example-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .partner-item {
        padding: 1rem;
        margin: 0 0.25rem;
    }

    .partner-icon {
        width: 50px;
        height: 50px;
    }

    .partner-icon i {
        font-size: 1.4rem;
    }

    .partner-item h3 {
        font-size: 1rem;
    }

    .partner-item p {
        font-size: 0.85rem;
    }

    .step-item {
        padding: 1rem;
        margin: 0 0.25rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
    }

    .step-icon i {
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 1rem;
        margin: 0 0.25rem;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .currency {
        font-size: 0.9rem;
    }

    .period {
        font-size: 0.8rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .feature-card {
        padding: 1rem;
        margin: 0 0.25rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 0 0.25rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .partners-title {
        font-size: 1.4rem;
    }

    .partners-subtitle {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .newsletter-section {
        padding: 1.25rem;
    }

    .newsletter-text h3 {
        font-size: 1.2rem;
    }

    .newsletter-text p {
        font-size: 0.85rem;
    }

    .newsletter-input {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }

    .newsletter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .copyright p {
        font-size: 0.8rem;
    }

    .legal-link {
        font-size: 0.8rem;
    }
}
