@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #252436;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 21px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e3e3e3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(123, 1, 247, 0.1);
    border-bottom: 1px solid rgba(123, 1, 247, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 35px;
}

.logo-text {
    color: #252436;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-text {
    font-size: 1.3rem;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #252436;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #7b01f7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7b01f7;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}

.btn-login {
    background: #f7f7f7;
    color: #252436;
    border: 2px solid #f7f7f7;
    padding: 12px 40px;
    border-radius: 94px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 500;
}

.btn-login:hover {
    background: #ffffff;
    border-color: #252436;
    color: #252436;
}

.btn-primary {
    background: #252436;
    color: #ffffff;
    border: 2px solid #252436;
    padding: 12px 40px;
    border-radius: 94px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #ffffff;
    color: #252436;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 1, 247, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: #f7f7f7;
    color: #252436;
    border: 2px solid #f7f7f7;
    padding: 12px 40px;
    border-radius: 94px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 94px;
    padding: 2px;
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: #252436;
    color: #252436;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 36, 54, 0.15);
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #252436;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(123, 1, 247, 0.05) 0%, rgba(192, 1, 247, 0.03) 50%, rgba(0, 137, 247, 0.05) 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    border-bottom: 1px solid rgba(123, 1, 247, 0.1);
}

.hero-no-border {
    border-bottom: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(123, 1, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 1, 247, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #252436;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-height: 200px; /* Prevent layout shift */
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title-line {
    display: block;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.hero-title-line:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-title-line {
        white-space: normal;
    }
}

.highlight {
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block;
}

.hero-description {
    font-size: 1.3rem;
    color: #6b6b7a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    min-width: 140px;
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(123, 1, 247, 0.1);
    border: 1px solid #e3e3e3;
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e3e3e3;
}

.dashboard-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e3e3e3;
}

.nav-dot:nth-child(1) { background: #ff5f57; }
.nav-dot:nth-child(2) { background: #ffbd2e; }
.nav-dot:nth-child(3) { background: #28ca42; }

.dashboard-content {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(123, 1, 247, 0.03) 0%, rgba(192, 1, 247, 0.02) 50%, rgba(0, 137, 247, 0.03) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #252436;
}

.section-header p {
    font-size: 1.1rem;
    color: #a8a8a8;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e3e3e3;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: #7b01f7;
    box-shadow: 0 8px 25px rgba(123, 1, 247, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientShift 3s ease-in-out infinite;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.feature-card-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #252436;
    line-height: 1.3;
}

.feature-card p {
    color: #6b6b7a;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Scan Targets Section */
.scan-targets {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.scan-targets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 1, 247, 0.15), transparent);
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.target-card {
    background: #f7f7f7;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    border-color: #7b01f7;
    box-shadow: 0 10px 30px rgba(123, 1, 247, 0.15);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: gradientShift 3s ease-in-out infinite;
}

.target-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.target-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #252436;
}

.target-card p {
    color: #a8a8a8;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Sellers Overview Section */
.sellers-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(123, 1, 247, 0.04) 0%, rgba(192, 1, 247, 0.02) 50%, rgba(0, 137, 247, 0.04) 100%);
    position: relative;
}

.sellers-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 1, 247, 0.2), transparent);
}

.sellers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sellers-text {
    max-width: 100%;
}

.sellers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.sellers-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #252436;
}

.sellers-text h2 .highlight {
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block;
}

.sellers-text p {
    font-size: 1.2rem;
    color: #6b6b7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sellers-features {
    list-style: none;
    margin-top: 2rem;
}

.sellers-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #6b6b7a;
}

.sellers-features i {
    color: #7b01f7;
    margin-right: 1rem;
    font-size: 1.1rem;
}


.sellers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sellers-chart {
    width: 100%;
    max-width: 100%;
    height: 400px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 20px rgba(123, 1, 247, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.sellers-chart canvas {
    max-width: 100% !important;
    height: auto !important;
}

.sellers-chart:hover {
    box-shadow: 0 8px 30px rgba(123, 1, 247, 0.12);
    transform: translateY(-2px);
}

.sellers-gallery {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}

.gallery-item {
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 36, 54, 0.1);
    background: linear-gradient(145deg, #ffffff 0%, #f5f0ff 100%);
    box-shadow: 0 16px 40px rgba(123, 1, 247, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(123, 1, 247, 0.12);
}

.gallery-item.wide {
    grid-column: 1 / -1;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Amazon Stores Section */
.amazon-stores {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.amazon-stores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 1, 247, 0.15), transparent);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.store-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e3e3e3;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    color: #252436;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.store-item::first-line {
    font-size: 1.2em;
}

.store-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
    transition: background 0.3s ease;
}

.store-item:hover::after {
    background: rgba(255, 255, 255, 0.4);
}

.store-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 1, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.store-item:hover::before {
    left: 100%;
}

.store-item:hover {
    transform: translateY(-3px);
    border-color: #7b01f7;
    box-shadow: 0 8px 25px rgba(123, 1, 247, 0.15);
}

.store-item:hover::after {
    background: rgba(255, 255, 255, 0.7);
}

/* USA Flag Background */
.store-item[data-rank="1"] {
    border-color: #7b01f7;
    background-image: 
        linear-gradient(90deg, rgba(187, 19, 62, 0.45) 0%, rgba(187, 19, 62, 0.45) 33.33%, 
                        rgba(255, 255, 255, 0.35) 33.33%, rgba(255, 255, 255, 0.35) 66.66%, 
                        rgba(0, 38, 100, 0.45) 66.66%, rgba(0, 38, 100, 0.45) 100%);
}

/* UK Flag Background */
.store-item[data-rank="2"] {
    border-color: #c001f7;
    background-image: 
        linear-gradient(135deg, rgba(0, 36, 125, 0.45) 0%, rgba(207, 20, 43, 0.45) 50%, rgba(0, 36, 125, 0.45) 100%);
}

/* Germany Flag Background */
.store-item[data-rank="3"] {
    border-color: #c001f7;
    background-image: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 33.33%, 
                        rgba(221, 0, 0, 0.45) 33.33%, rgba(221, 0, 0, 0.45) 66.66%, 
                        rgba(255, 206, 0, 0.45) 66.66%, rgba(255, 206, 0, 0.45) 100%);
}

/* France Flag Background */
.store-item[data-rank="4"] {
    background-image: 
        linear-gradient(90deg, rgba(0, 35, 149, 0.45) 0%, rgba(0, 35, 149, 0.45) 33.33%, 
                        rgba(255, 255, 255, 0.35) 33.33%, rgba(255, 255, 255, 0.35) 66.66%, 
                        rgba(237, 41, 57, 0.45) 66.66%, rgba(237, 41, 57, 0.45) 100%);
}

/* Japan Flag Background */
.store-item[data-rank="5"] {
    background-image: 
        radial-gradient(circle at center, rgba(188, 0, 45, 0.5) 0%, rgba(255, 255, 255, 0.35) 30%);
}

/* Canada Flag Background */
.store-item[data-rank="6"] {
    background-image: 
        linear-gradient(90deg, rgba(255, 0, 0, 0.45) 0%, rgba(255, 0, 0, 0.45) 25%, 
                        rgba(255, 255, 255, 0.35) 25%, rgba(255, 255, 255, 0.35) 75%, 
                        rgba(255, 0, 0, 0.45) 75%, rgba(255, 0, 0, 0.45) 100%);
}

/* Australia Flag Background */
.store-item[data-rank="7"] {
    background-image: 
        linear-gradient(135deg, rgba(0, 43, 127, 0.45) 0%, rgba(255, 255, 255, 0.35) 50%);
}

/* Italy Flag Background */
.store-item[data-rank="8"] {
    background-image: 
        linear-gradient(90deg, rgba(0, 146, 70, 0.45) 0%, rgba(0, 146, 70, 0.45) 33.33%, 
                        rgba(255, 255, 255, 0.35) 33.33%, rgba(255, 255, 255, 0.35) 66.66%, 
                        rgba(206, 43, 55, 0.45) 66.66%, rgba(206, 43, 55, 0.45) 100%);
}

/* Spain Flag Background */
.store-item[data-rank="9"] {
    background-image: 
        linear-gradient(180deg, rgba(170, 21, 27, 0.45) 0%, rgba(170, 21, 27, 0.45) 25%, 
                        rgba(255, 209, 0, 0.45) 25%, rgba(255, 209, 0, 0.45) 50%, 
                        rgba(170, 21, 27, 0.45) 50%, rgba(170, 21, 27, 0.45) 75%, 
                        rgba(255, 209, 0, 0.45) 75%, rgba(255, 209, 0, 0.45) 100%);
}

/* India Flag Background */
.store-item[data-rank="10"] {
    background-image: 
        linear-gradient(180deg, rgba(255, 153, 51, 0.45) 0%, rgba(255, 153, 51, 0.45) 33.33%, 
                        rgba(255, 255, 255, 0.35) 33.33%, rgba(255, 255, 255, 0.35) 66.66%, 
                        rgba(19, 136, 8, 0.45) 66.66%, rgba(19, 136, 8, 0.45) 100%);
}

/* Mexico Flag Background */
.store-item[data-rank="11"] {
    background-image: 
        linear-gradient(90deg, rgba(0, 102, 51, 0.45) 0%, rgba(0, 102, 51, 0.45) 33.33%, 
                        rgba(255, 255, 255, 0.35) 33.33%, rgba(255, 255, 255, 0.35) 66.66%, 
                        rgba(206, 17, 38, 0.45) 66.66%, rgba(206, 17, 38, 0.45) 100%);
}

/* Brazil Flag Background */
.store-item[data-rank="12"] {
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 156, 59, 0.5) 0%, rgba(255, 223, 0, 0.45) 40%, 
                        rgba(0, 39, 118, 0.45) 100%);
}

/* Netherlands Flag Background */
.store-item[data-rank="13"] {
    background-image: 
        linear-gradient(180deg, rgba(174, 28, 40, 0.45) 0%, rgba(174, 28, 40, 0.45) 33.33%, 
                        rgba(255, 255, 255, 0.35) 33.33%, rgba(255, 255, 255, 0.35) 66.66%, 
                        rgba(33, 70, 139, 0.45) 66.66%, rgba(33, 70, 139, 0.45) 100%);
}

/* Sweden Flag Background */
.store-item[data-rank="14"] {
    background-image: 
        linear-gradient(135deg, rgba(0, 106, 167, 0.5) 0%, rgba(254, 204, 0, 0.45) 45%, 
                        rgba(254, 204, 0, 0.45) 55%, rgba(0, 106, 167, 0.5) 100%);
}

/* Poland Flag Background */
.store-item[data-rank="15"] {
    background-image: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 50%, 
                        rgba(220, 20, 60, 0.45) 50%, rgba(220, 20, 60, 0.45) 100%);
}

/* Singapore Flag Background */
.store-item[data-rank="16"] {
    background-image: 
        linear-gradient(180deg, rgba(237, 41, 57, 0.45) 0%, rgba(237, 41, 57, 0.45) 50%, 
                        rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 100%);
}

/* UAE Flag Background */
.store-item[data-rank="17"] {
    background-image: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 25%, 
                        rgba(255, 255, 255, 0.35) 25%, rgba(255, 255, 255, 0.35) 50%, 
                        rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.45) 75%, 
                        rgba(0, 115, 47, 0.45) 75%, rgba(0, 115, 47, 0.45) 100%);
}

/* Turkey Flag Background */
.store-item[data-rank="18"] {
    background-image: 
        radial-gradient(circle at 25% 50%, rgba(227, 10, 23, 0.5) 0%, rgba(227, 10, 23, 0.45) 35%, 
                        rgba(227, 10, 23, 0.45) 100%);
}

/* World Map Styles */
.world-map-container {
    margin-top: 4rem;
    text-align: center;
}

.world-map-container h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #252436;
}

.world-map {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e3e3e3;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(123, 1, 247, 0.1);
    text-align: center;
}

.world-map-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    filter: contrast(1.1) brightness(1);
    transition: all 0.3s ease;
}

.world-map-image:hover {
    transform: scale(1.02);
    filter: contrast(1.2) brightness(1.05);
}

/* World map image responsive design */
@media (max-width: 768px) {
    .world-map {
        padding: 1rem;
    }
    
    .world-map-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .world-map {
        padding: 0.5rem;
    }
    
    .world-map-image {
        border-radius: 8px;
    }
}

/* Responsive stores grid */
@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .store-item {
        padding: 1.25rem 0.75rem;
        min-height: 90px;
        font-size: 0.95rem;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .store-item::first-line {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .store-item {
        padding: 1.5rem 1rem;
        min-height: 85px;
        font-size: 1rem;
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .store-item::first-line {
        font-size: 1.15em;
    }
}

/* Authentication Pages Styles */
.auth-section {
    padding: 120px 0 80px;
    background: #f7f7f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.auth-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 20px 40px rgba(123, 1, 247, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.auth-header p {
    color: #a8a8a8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #252436;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #7b01f7;
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: #f7f7f7;
    border: 2px solid #e3e3e3;
    border-radius: 8px;
    color: #252436;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #7b01f7;
    box-shadow: 0 0 0 3px rgba(123, 1, 247, 0.1);
    background: #ffffff;
}

.input-group input::placeholder {
    color: #a8a8a8;
}

.input-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: #f7f7f7;
    border: 2px solid #e3e3e3;
    border-radius: 8px;
    color: #252436;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.input-group textarea:focus {
    outline: none;
    border-color: #7b01f7;
    box-shadow: 0 0 0 3px rgba(123, 1, 247, 0.1);
    background: #ffffff;
}

.input-group textarea::placeholder {
    color: #a8a8a8;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #a8a8a8;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #7b01f7;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #333333;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 25%;
    background: #dc3545;
}

.strength-fill.fair {
    width: 50%;
    background: #ffc107;
}

.strength-fill.good {
    width: 75%;
    background: #17a2b8;
}

.strength-fill.strong {
    width: 100%;
    background: #28a745;
}

.strength-text {
    font-size: 0.8rem;
    color: #cccccc;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #a8a8a8;
    font-size: 0.9rem;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #f7f7f7;
    border: 2px solid #e3e3e3;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    border-color: #7b01f7;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: #7b01f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #c001f7;
}

.forgot-password {
    color: #7b01f7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #c001f7;
}

.btn-full {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary.loading .btn-text {
    opacity: 0;
}

.btn-primary.loading .btn-loading {
    display: block;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e3e3e3;
}

.auth-divider span {
    background: #ffffff;
    padding: 0 1rem;
    color: #a8a8a8;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e3e3e3;
    border-radius: 8px;
    background: #f7f7f7;
    color: #252436;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn:hover {
    border-color: #7b01f7;
    background: rgba(123, 1, 247, 0.05);
    transform: translateY(-2px);
}

.google-btn:hover {
    border-color: #db4437;
    background: rgba(219, 68, 55, 0.05);
}

.facebook-btn:hover {
    border-color: #4267B2;
    background: rgba(66, 103, 178, 0.05);
}

.auth-footer {
    text-align: center;
    color: #a8a8a8;
}

.auth-footer a {
    color: #7b01f7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #c001f7;
}

.auth-info {
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    padding: 3rem;
    border-radius: 16px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.auth-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.info-features {
    margin-bottom: 2rem;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.info-feature i {
    width: 20px;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-actions .active {
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    color: #ffffff;
    border-color: #7b01f7;
}

.nav-actions .active:hover {
    background: linear-gradient(135deg, #6a01d7, #a001d7);
    border-color: #6a01d7;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .auth-info {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-login {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-info {
        padding: 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 2rem;
    }
    
    .info-content h2 {
        font-size: 1.5rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(123, 1, 247, 0.03) 0%, rgba(192, 1, 247, 0.02) 50%, rgba(0, 137, 247, 0.03) 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 1, 247, 0.15), transparent);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e3e3e3;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    border-color: #7b01f7;
    box-shadow: 0 8px 25px rgba(123, 1, 247, 0.12);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    background-size: 200% 200%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    animation: gradientShift 3s ease-in-out infinite;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #252436;
    line-height: 1.3;
}

.step-content p {
    color: #6b6b7a;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(123, 1, 247, 0.03) 0%, rgba(192, 1, 247, 0.02) 50%, rgba(0, 137, 247, 0.03) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 1, 247, 0.2), transparent);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(420px, 1fr));
    gap: 3rem;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 80px;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 20px;
    border: 2px solid #e3e3e3;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border-color: #7b01f7;
    box-shadow: 0 20px 60px rgba(123, 1, 247, 0.25);
    transform: scale(1.06);
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 80px rgba(123, 1, 247, 0.35);
}

.pricing-card-placeholder {
    opacity: 0.6;
    border-style: dashed;
    border-color: #d1d5db;
    background: #f9fafb;
    pointer-events: none;
    position: relative;
}

.pricing-card-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(123, 1, 247, 0.03) 10px,
        rgba(123, 1, 247, 0.03) 20px
    );
    border-radius: 20px;
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 94px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(123, 1, 247, 0.3);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: #252436;
}

.pricing-original {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #252436;
    font-size: 1rem;
    padding-left: 0;
    position: relative;
}

.pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative;
}

.pricing-features li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 1px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-features i {
    display: none;
}

.pricing-note {
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #7b01f7;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    font-size: 1.2rem;
}

.pricing-duration {
    display: inline-flex;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(123, 1, 247, 0.12);
    color: #7b01f7;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.pricing-subtext {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-card .btn-large {
    margin-top: auto;
}

@media (max-width: 1350px) {
    .pricing-cards {
        grid-template-columns: repeat(3, minmax(320px, 1fr));
        gap: 2.25rem;
        max-width: 1320px;
        padding: 0 40px;
    }
}

@media (max-width: 1100px) {
    .pricing-cards {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        padding: 0 30px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #252436;
}

.pricing-header p {
    color: #a8a8a8;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #252436;
    font-size: 1rem;
}

.feature-item i {
    color: #7b01f7;
    margin-right: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item.placeholder {
    margin-bottom: 0.75rem;
}

.feature-item.placeholder span {
    display: block;
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: #252436;
    line-height: 1;
}

.price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.5em;
    font-weight: 600;
}

.price-new {
    color: #7b01f7;
}

.period {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
    margin-left: 0.25rem;
}

.pricing-price.placeholder {
    margin: 2rem 0;
}

.price-placeholder {
    display: block;
    width: 120px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: shimmer 1.5s infinite;
}

.pricing-card-placeholder .pricing-header h3 {
    color: #9ca3af;
    font-weight: 600;
}


/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: #ffffff;
    color: #7b01f7;
    border-color: #ffffff;
    animation: none;
}

.cta .btn-primary:hover {
    background: #f7f7f7;
    color: #7b01f7;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    animation: none;
}

.cta .btn-secondary::before {
    background: #ffffff;
    animation: none;
}

.cta .btn-secondary:hover {
    background: #ffffff;
    color: #7b01f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    padding: 50px 0 25px;
    background: linear-gradient(135deg, #1a1a2e 0%, #252436 100%);
    border-top: 1px solid rgba(123, 1, 247, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 1, 247, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #a8a8a8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: #7b01f7;
    transform: translateX(3px);
}

.footer-column ul li a i {
    font-size: 0.85rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(123, 1, 247, 0.1);
    border: 1px solid rgba(123, 1, 247, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8a8a8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #7b01f7, #c001f7);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 1, 247, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 1, 247, 0.1);
    color: #6b7280;
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 2.5rem;
        padding: 0 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        border-bottom: 1px solid rgba(123, 1, 247, 0.1);
        padding-bottom: 1.5rem;
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
}

/* Logo hover effect */
.nav-logo:hover .logo-img {
    transform: scale(1.1);
}

.nav-logo:hover .logo-text {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero .container {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 160px 0 80px;
        min-height: 80vh;
    }
    
    .hero .container {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        min-height: 180px;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .hero-actions {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 600px;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 600px;
    }
    
    .step {
        padding: 1.25rem;
    }
    
    .sellers-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sellers-text {
        text-align: center;
    }
    
    .sellers-text h2 {
        font-size: 2.4rem;
    }
    
    .sellers-chart {
        height: 350px;
        padding: 1.5rem;
        overflow-x: auto;
    }
    
    .sellers-chart canvas {
        max-width: 100% !important;
    }
    
    .sellers-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        grid-template-columns: none;
        padding: 0 20px;
        gap: 1rem;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        gap: 0.3rem;
        order: 1;
    }
    
    .nav-actions {
        order: 2;
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: 70vh;
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        min-height: auto;
        align-items: center;
        padding: 0 15px;
        margin-bottom: 1.5rem;
        gap: 0.2rem;
    }
    
    .hero-title-line {
        font-size: inherit;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 2rem;
        padding: 0 15px;
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0 20px;
        gap: 0.75rem;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .pricing-card-placeholder {
        display: none;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .sellers-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sellers-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .sellers-text h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .sellers-text p {
        font-size: 1.1rem;
    }
    
    .sellers-visual {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0 10px;
    }
    
    .sellers-gallery {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        padding: 1.1rem;
    }
    
    .sellers-chart {
        width: 100%;
        max-width: 100%;
        height: 300px;
        padding: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .sellers-chart canvas {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.05rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .step {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.05rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 50px;
        min-height: 65vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 10px;
        margin-bottom: 1.2rem;
        gap: 0.15rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .hero-actions {
        max-width: 100%;
        padding: 0 15px;
        gap: 0.6rem;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .sellers-content {
        gap: 2rem;
    }
    
    .sellers-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .sellers-text p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .sellers-features {
        padding: 0 10px;
    }
    
    .sellers-features li {
        font-size: 0.9rem;
    }
    
    .sellers-visual {
        padding: 0 5px;
    }
    
    .sellers-chart {
        height: 250px;
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sellers-chart canvas {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .store-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pricing-card {
        padding: 1.75rem;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .targets-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .store-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f7f7f7;
}

::-webkit-scrollbar-thumb {
    background: #7b01f7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c001f7;
}
