/** Linkat classic landing — uses --pl-* from platform theme */
:root {
  --primary: var(--pl-primary);
  --primary-hover: var(--pl-secondary);
  --accent: var(--pl-accent);
  --accent-hover: var(--pl-accent);
  --dark: var(--pl-footer-bg);
  --text-dark: var(--pl-text-heading);
  --text-gray: var(--pl-text-body);
  --light-bg: #f7fafc;
  --white: #ffffff;
}

/* Override main-content for full-width landing page */
.main-content {
    margin-top: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Ensure all sections are visible */
section {
    display: block !important;
    visibility: visible !important;
}

body {
    overflow-x: hidden;
}

/* Prevent overflow on all elements */
img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Better text rendering on mobile */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 5% 6rem;
    overflow: hidden;
    background: linear-gradient(180deg, #fef8f8 0%, #ffffff 100%);
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-started {
    padding: 0.9rem 2rem;
    background: var(--pl-button-bg, var(--primary));
    border: none;
    border-radius: var(--pl-radius, 4px);
    color: var(--pl-button-text, #fff);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-started:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
    padding: 0.9rem 2rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--text-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image-container {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 200, 200, 0.3) 0%, rgba(255, 230, 230, 0.5) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-avatar {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff9dbb 100%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.marketplace-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.illustration-main {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2.5rem;
    width: 95%;
    position: relative;
    overflow: visible;
}

.illustration-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.illustration-person {
    width: 70px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8099 100%);
    border-radius: 35px 35px 0 0;
    position: relative;
}

.illustration-person::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.illustration-person.blue {
    background: linear-gradient(135deg, #6b7bf7 0%, #8b9dff 100%);
}

.illustration-screen {
    width: 160px;
    height: 110px;
    background: linear-gradient(135deg, #ff9494 0%, #ffb8b8 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.6rem;
}

.illustration-coins {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.coin {
    width: 45px;
    height: 14px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.store-badge {
    position: absolute;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.store-badge-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.store-badge.fashion {
    top: 5%;
    right: -5%;
}

.store-badge.fashion .store-badge-icon {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff9dbb 100%);
}

.store-badge.jewellery {
    top: 35%;
    right: -8%;
}

.store-badge.jewellery .store-badge-icon {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb570 100%);
}

.store-badge.electronics {
    top: 10%;
    left: -8%;
}

.store-badge.electronics .store-badge-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #7ee8e0 100%);
}

.store-badge.booking {
    bottom: 15%;
    left: -5%;
}

.store-badge.booking .store-badge-icon {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.decorative-circle-1 {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #b794f6 0%, #d4b5ff 100%);
    top: 25%;
    right: 15%;
}

.decorative-circle-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ecdc4 0%, #7ee8e0 100%);
    top: 10%;
    right: 25%;
    font-size: 1rem;
}

.decorative-circle-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42 0%, #ffb570 100%);
    bottom: 25%;
    right: 10%;
    font-size: 1.1rem;
}

.decorative-circle-4 {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    top: 20%;
    left: 20%;
    font-size: 1.1rem;
}

.decorative-circle-5 {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff9dbb 100%);
    bottom: 30%;
    left: 15%;
}

.decorative-element:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.decorative-element {
    transition: all 0.3s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.dashboard-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-text {
    animation: fadeInLeft 1s ease;
}

.dashboard-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.dashboard-text h2 .highlight {
    color: var(--accent);
}

.dashboard-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dashboard-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.dashboard-features li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dashboard-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.dashboard-image-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.dashboard-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Themes Section */
.themes-section {
    padding: 6rem 5%;
    background: white;
}

.themes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.themes-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.themes-header h2 .highlight {
    color: var(--accent);
}

.themes-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

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

.theme-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.theme-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.theme-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.theme-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-info {
    padding: 1.5rem;
}

.theme-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.theme-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.custom-theme-feature {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(255, 94, 125, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(0, 212, 170, 0.2);
    margin-top: 3rem;
}

.custom-theme-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-theme-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.custom-theme-text h3 .highlight {
    color: var(--primary);
}

.custom-theme-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.custom-theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.custom-theme-badge i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.custom-theme-badge span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.custom-theme-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-theme-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.custom-theme-features-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.custom-theme-visual {
    position: relative;
}

.upload-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 3px dashed var(--primary);
    text-align: center;
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.upload-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.upload-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.upload-box p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.upload-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.upload-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

/* Apps Section */
.apps-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.apps-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.apps-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.apps-header h2 .highlight {
    color: var(--accent);
}

.apps-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

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

.app-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.app-icon.ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.app-icon.ranking {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.app-icon.shipping {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.app-icon.payment {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.app-icon.analytics {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.app-icon.social {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.app-icon.marketing {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.app-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.app-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

.apps-cta {
    text-align: center;
    margin-top: 3rem;
}

.apps-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Automated Selling Section */
.automated-selling {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.automated-selling-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.automated-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.automated-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.automated-header h2 .highlight {
    color: var(--accent);
}

.automated-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.shamel-app-showcase {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(255, 94, 125, 0.1) 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(0, 212, 170, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.shamel-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.shamel-text h3 .highlight {
    color: var(--primary);
}

.shamel-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.shamel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.shamel-badge i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.shamel-badge span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.shamel-features {
    list-style: none;
    margin-bottom: 2rem;
}

.shamel-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.shamel-features li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.shamel-visual {
    position: relative;
}

.shamel-app-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.shamel-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.shamel-app-box h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.shamel-app-box p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.ai-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.marketing-channels {
    margin-top: 4rem;
}

.marketing-channels h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.marketing-channels p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.channel-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.channel-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
}

.channel-icon.social {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.channel-icon.search {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.channel-icon.email {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.channel-icon.influencer {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.channel-icon.content {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.channel-icon.retargeting {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.channel-icon.video {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.channel-icon.affiliate {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.channel-icon.mobile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.channel-icon.partnership {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.channel-icon.local {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.channel-icon.event {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.channel-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.channel-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 6rem 5%;
    background: white;
}

.payment-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.payment-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.payment-header h2 .highlight {
    color: var(--accent);
}

.payment-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.easy-integration {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(255, 94, 125, 0.05) 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(0, 212, 170, 0.2);
    text-align: center;
}

.easy-integration h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.easy-integration p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.integration-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.integration-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.step-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.arrow-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-method-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.payment-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.payment-logo.stc {
    background: linear-gradient(135deg, #00d4aa 0%, #00bfa0 100%);
}

.payment-logo.mada {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.payment-logo.click {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.payment-logo.myfatoorah {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.payment-logo.tap {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.payment-logo.paylink {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.payment-logo.paypal {
    background: linear-gradient(135deg, #003087 0%, #009cde 100%);
}

.payment-logo.stripe {
    background: linear-gradient(135deg, #635bff 0%, #0a2540 100%);
}

.payment-logo.visa {
    background: linear-gradient(135deg, #1a1f71 0%, #1434cb 100%);
}

.payment-logo.mastercard {
    background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%);
}

.payment-method-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.payment-method-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.payment-cta {
    text-align: center;
    margin-top: 3rem;
}

.payment-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 5%;
    background: white;
}

.pricing-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.pricing-header h2 .highlight {
    color: var(--accent);
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px rgba(255, 94, 125, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 40px rgba(255, 94, 125, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #ff4569 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 94, 125, 0.4);
    z-index: 10;
}

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

.plan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.pricing-card.featured .plan-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #ff4569 100%);
    box-shadow: 0 4px 15px rgba(255, 94, 125, 0.4);
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-right: 0.5rem;
}

.plan-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-button-wrapper {
    margin-bottom: 2rem;
    flex-shrink: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
    color: var(--accent);
}

.pricing-button-wrapper .pricing-button {
    width: 100%;
    margin-bottom: 0;
}

.pricing-button-wrapper form {
    width: 100%;
    margin-bottom: 0;
}

.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pricing-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
    color: white;
}

.pricing-card.featured .pricing-button {
    background: var(--accent);
}

.pricing-card.featured .pricing-button:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(255, 94, 125, 0.3);
}

/* Theme Customization Section */
.theme-customization {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.customization-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.customization-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.customization-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.customization-header h2 .highlight {
    color: var(--accent);
}

.customization-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.customization-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.customization-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.customization-text h3 .highlight {
    color: var(--primary);
}

.customization-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.click-to-edit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.click-to-edit-badge i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.click-to-edit-badge span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.customization-features {
    list-style: none;
    margin-bottom: 2rem;
}

.customization-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.customization-features li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.customization-visual {
    position: relative;
}

.customization-preview {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.preview-element {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(255, 94, 125, 0.1) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2px dashed var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.preview-element:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(255, 94, 125, 0.15) 100%);
    transform: scale(1.02);
}

.preview-element::before {
    content: '✏️';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-element:hover::before {
    opacity: 1;
}

.preview-element h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.preview-element p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.editable-indicator {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

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

.customizable-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.customizable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.item-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.customizable-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.customizable-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: white;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.faq-header h2 .highlight {
    color: var(--accent);
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(0, 212, 170, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 170, 0.03);
}

.faq-question.active {
    background: rgba(0, 212, 170, 0.05);
}

.faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(0, 212, 170, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-right: 2rem;
    list-style: none;
}

.faq-answer-content ul li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-answer-content ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 5% 3rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.2rem 1.2rem;
        font-size: 1rem;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stat-icon.success {
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
}

.stat-icon.downloads {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.stat-icon.marketplaces {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: #e2e8f0;
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h4 {
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 0.9rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

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

.newsletter-input::placeholder {
    color: #a0aec0;
}

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

.newsletter-button {
    padding: 0.9rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease both;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        border-width: 6px;
        padding: 3rem 2rem;
        min-height: 350px;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .illustration-main {
        width: 90%;
        padding: 3rem 2.5rem;
    }
    
    .dashboard-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dashboard-visual {
        order: 2;
    }
    
    .dashboard-text {
        order: 1;
        text-align: center;
    }
    
    .dashboard-image-container {
        border-width: 6px;
        padding: 1.5rem;
    }
    
    .custom-theme-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-theme-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Header Navigation */
    nav {
        padding: 0.5rem 3%;
    }
    
    .logo svg {
        height: 50px !important;
        width: auto !important;
        max-width: 150px;
    }
    
    .nav-links {
        gap: 1rem;
        padding-left: 0;
        justify-content: flex-end;
    }
    
    .nav-links a:not(.btn-primary):not(.user-avatar),
    .nav-links .nav-dropdown {
        display: none;
    }
    
    .nav-links.active a:not(.btn-primary):not(.user-avatar),
    .nav-links.active .nav-dropdown {
        display: block;
    }
    
    .nav-links.active .nav-dropdown {
        width: 100%;
    }
    
    .nav-links.active .nav-dropdown .dropdown {
        display: flex;
    }
    
    .nav-links .user-avatar-container,
    .nav-links > .btn-primary {
        position: static;
        margin: 0;
    }
    
    /* Mobile Dropdown Styles */
    .nav-links.active .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        background: rgba(0, 212, 170, 0.05);
        border-radius: 8px;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
    }
    
    .nav-links.active .nav-dropdown-menu.active {
        display: block;
    }
    
    .nav-links.active .nav-dropdown-menu::before {
        display: none;
    }
    
    .nav-links.active .nav-dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-links.active .nav-dropdown {
        width: 100%;
    }
    
    .nav-links.active .nav-dropdown .dropdown {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    .language-selector {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .user-avatar-container {
        margin-right: 0.5rem;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-avatar-placeholder {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .user-dropdown {
        left: auto;
        right: 0;
        min-width: 220px;
        max-width: calc(100vw - 2rem);
    }
    
    .user-dropdown::before {
        right: 15px;
    }
    
    /* Hero Section */
    .hero {
        padding: 7rem 3% 3rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .store-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .store-badge-icon {
        width: 25px;
        height: 25px;
        font-size: 0.85rem;
    }
    
    .hero-image-container {
        border-width: 4px;
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .illustration-main {
        flex-wrap: wrap;
        width: 95%;
        padding: 2.5rem 1.8rem;
        gap: 1.5rem;
    }
    
    .illustration-person {
        width: 50px;
        height: 70px;
    }
    
    .illustration-main > div[style*="width: 120px"] {
        width: 90px !important;
        height: 110px !important;
        padding: 0.8rem !important;
    }
    
    .illustration-screen {
        width: 120px;
        height: 90px;
    }
    
    .decorative-element {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .dashboard-preview {
        padding: 4rem 5% 3rem;
    }
    
    .dashboard-text h2 {
        font-size: 1.8rem;
    }
    
    .dashboard-image-container {
        border-width: 4px;
        padding: 1rem;
    }
    
    .dashboard-features {
        text-align: right;
    }
    
    .themes-section {
        padding: 4rem 5% 3rem;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .custom-theme-feature {
        padding: 2rem 1.5rem;
    }
    
    .custom-theme-text {
        text-align: center;
    }
    
    .upload-box {
        padding: 2rem 1.5rem;
    }
    
    .apps-section {
        padding: 4rem 5% 3rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .automated-selling {
        padding: 4rem 5% 3rem;
    }
    
    .shamel-app-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
    
    .shamel-visual {
        order: -1;
    }
    
    .shamel-text {
        text-align: center;
    }
    
    .channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .payment-methods-section {
        padding: 4rem 5% 3rem;
    }
    
    .easy-integration {
        padding: 2rem 1.5rem;
    }
    
    .integration-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }
    
    .theme-customization {
        padding: 4rem 5% 3rem;
    }
    
    .customization-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .customization-visual {
        order: -1;
    }
    
    .customization-text {
        text-align: center;
    }
    
    .customizable-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-section {
        padding: 4rem 5% 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    footer {
        padding: 3rem 3% 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.4rem;
    }
    
    .footer-logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .newsletter {
        padding: 1.5rem;
        text-align: center;
    }
    
    .newsletter h4 {
        font-size: 1.1rem;
    }
    
    .newsletter p {
        font-size: 0.85rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
    
    .newsletter-input {
        padding: 0.85rem 1rem;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .newsletter-button {
        padding: 0.85rem 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .newsletter {
        grid-column: 1 / -1;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Header */
    nav {
        padding: 0.4rem 2%;
    }
    
    .logo svg {
        height: 40px !important;
        max-width: 120px;
    }
    
    .language-selector {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 2% 2rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-image-container {
        padding: 1.5rem 1rem;
        min-height: 250px;
    }
    
    .illustration-main {
        padding: 1.5rem 1rem;
    }
    
    .store-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Sections */
    .dashboard-preview,
    .themes-section,
    .apps-section,
    .automated-selling,
    .payment-methods-section,
    .theme-customization,
    .pricing-section,
    .stats {
        padding: 2.5rem 2%;
    }
    
    /* Grids */
    .channels-grid,
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 2.5rem 2% 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .newsletter {
        padding: 1.25rem 1rem;
    }
    
    .newsletter h4 {
        font-size: 1rem;
    }
    
    .newsletter p {
        font-size: 0.8rem;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        gap: 1rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.active a:not(.btn-primary) {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: background 0.2s ease;
        text-decoration: none !important;
    }
    
    .nav-links.active a:not(.btn-primary):hover {
        background: rgba(0, 212, 170, 0.1);
        text-decoration: none !important;
    }
    
    .nav-links.active .btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .nav-links.active .user-avatar-container {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0 0 0;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Touch-friendly improvements */
    a, button, input, select {
