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

:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --primary-light: #33ff99;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #111118;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: #1f1f24;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-2: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
    --gradient-3: linear-gradient(135deg, #00ff88 0%, #33ff99 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 15px;
    letter-spacing: -0.01em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.cta-button {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    color: var(--text-primary) !important;
}

.cta-button:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
    font-weight: 500;
}

.language-selector-btn:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.language-selector-btn svg:first-child {
    width: 18px;
    height: 18px;
}

.current-language {
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--text-primary);
}

.language-option.active {
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-color);
}

.language-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.language-name {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Hero Clients Logos */
.hero-clients {
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 10rem;
    margin-bottom: 4rem;
    border-top: 1px solid var(--border-color);
    overflow: visible;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-clients-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-padding: 0 4rem;
}

.hero-clients-logos::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.hero-client-logo {
    opacity: 1;
    transition: all 0.3s ease;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: fit-content;
}

.hero-client-logo:hover {
    transform: scale(1.1);
}

.client-logo-img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: invert(1) brightness(2) contrast(1.5);
    opacity: 1;
    transition: filter 0.3s ease;
}

.client-logo-img:hover {
    filter: invert(1) brightness(2.2) contrast(1.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.ai-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--primary-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.black-box-graphic-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.black-box-graphic {
    position: relative;
    animation: floatBox3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    z-index: 2;
}

.black-box-svg {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes floatBox3D {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% { 
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    }
    50% { 
        transform: translateY(-15px) rotateX(0deg) rotateY(0deg) scale(1.08);
    }
    75% { 
        transform: translateY(-10px) rotateX(-5deg) rotateY(5deg) scale(1.05);
    }
}

.box-main {
    animation: boxPulse 3s ease-in-out infinite;
}

@keyframes boxPulse {
    0%, 100% { 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.9;
        filter: brightness(1.2);
    }
}

.box-inner {
    animation: innerGlow 2s ease-in-out infinite alternate;
}

@keyframes innerGlow {
    0% { 
        opacity: 0.3;
    }
    100% { 
        opacity: 0.7;
    }
}

.corner-dot {
    animation: cornerPulse 2s ease-in-out infinite;
}

.corner-1 {
    animation-delay: 0s;
}

.corner-2 {
    animation-delay: 0.5s;
}

.corner-3 {
    animation-delay: 1s;
}

.corner-4 {
    animation-delay: 1.5s;
}

@keyframes cornerPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.data-line {
    animation: dataFlow 3s ease-in-out infinite;
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 0.5s;
}

.line-3 {
    animation-delay: 1s;
}

@keyframes dataFlow {
    0% { 
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    50% { 
        stroke-dashoffset: -50;
        opacity: 1;
    }
    100% { 
        stroke-dashoffset: -100;
        opacity: 0.6;
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    flex: 1;
    min-width: 300px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-cta-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 600px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-website-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-website-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.hero-website-input::placeholder {
    color: var(--text-secondary);
}

/* Website Analysis Modal */
.website-analysis-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-in;
    align-items: center;
    justify-content: center;
}

.website-analysis-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.website-analysis-modal-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 100px rgba(255, 255, 255, 0.1),
                inset 0 0 50px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.analysis-loading-state {
    text-align: center;
}

.analysis-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.analysis-loading-state h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.analysis-loading-state p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.analysis-results-state {
    text-align: left;
}

.analysis-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.analysis-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.analysis-results-state h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-align: center;
}

.analysis-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span,
.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.info-item p {
    margin: 0.5rem 0 0 0;
}

.analysis-cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.analysis-cta-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

@media (max-width: 768px) {
    .website-analysis-modal-content {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .analysis-results-state h3 {
        font-size: 1.25rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.375rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 400;
}


/* Section Styles */
section {
    position: relative;
    padding: 60px 0;
}

.features {
    padding-top: 100px;
}

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

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.subtitle-line {
    display: block;
}

.features .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Features Slogan */
.features-slogan {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.slogan-line {
    display: block;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    text-align: center;
}

.slogan-line-primary {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.slogan-line-secondary {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    background: var(--bg-darker);
    padding-top: 100px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.25);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Infinity Graphic */
.infinity-graphic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -1rem 0 0 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.infinity-svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.infinity-svg .animated-particles circle,
.infinity-svg .small-particles circle {
    animation-timing-function: linear;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.how-it-works-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: howItWorksOrbFloat 20s ease-in-out infinite;
}

.how-it-works-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.how-it-works-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-2);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

@keyframes howItWorksOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.1); }
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.steps-connector {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00ff88 0%, #00cc6a 50%, #00ff88 100%);
    opacity: 0.3;
    z-index: 0;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 3rem 2rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    border-radius: 0;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.step-left {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    min-width: 80px;
    font-feature-settings: "tnum";
    letter-spacing: -0.02em;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.step-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.step-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-item:hover .step-graphic {
    opacity: 1;
    transform: scale(1.02);
}

.step-graphic svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.step-graphic-1 svg {
    max-width: 280px;
}

.step-graphic-2 svg {
    max-width: 200px;
}

.step-graphic-3 svg {
    max-width: 280px;
}

.step-graphic-4 svg {
    max-width: 200px;
}

.step-connector {
    display: none;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    animation: connectorPulse 2s ease-in-out infinite;
}

.step-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    animation: connectorPulse 2s ease-in-out infinite 0.5s;
}

@keyframes connectorPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateX(-50%) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1.3); 
    }
}


/* 24/7 Automation Section */
.automation-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.automation-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: automationOrbFloat 15s ease-in-out infinite;
}

.automation-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.automation-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-2);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

@keyframes automationOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.automation-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.automation-content {
    max-width: 1400px;
    margin: 0;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.automation-text {
    flex: 1;
    text-align: left;
}

.automation-text .physical-store-description {
    font-size: 1rem;
    line-height: 1.7;
}

.automation-header {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.automation-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.automation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.automation-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes iconGlow {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.automation-description {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.automation-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Budget Chart */
.budget-chart-container .time-period-container {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.time-period-container:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.clock-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    animation: clockTick 2s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.time-period-display {
    flex: 1;
}

.time-period-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.budget-chart-container {
    width: 100%;
    max-width: 510px;
    margin: 4rem 0 2.5rem 0;
    padding: 2.125rem;
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: scale(0.85);
    transform-origin: center;
}

.budget-chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.budget-chart-container:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 16px 48px rgba(0, 255, 136, 0.3),
                0 0 60px rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.budget-chart-container:hover::before {
    opacity: 1;
}

.budget-chart-container:hover .budget-bar-fill {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
    }
}

.budget-chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.budget-chart-container:hover .budget-chart-title {
    transform: scale(1.05);
}

.budget-chart {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.budget-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.budget-chart-container:hover .budget-bar-item {
    transform: translateX(4px);
}

.budget-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.budget-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.budget-change.positive {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.budget-change.negative {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.budget-amount {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

.budget-bar-wrapper {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.budget-bar {
    height: 100%;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.budget-bar-fill {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.budget-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.budget-total {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.budget-total strong {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.automation-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: center;
}

.section-description.highlight-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    margin-top: 2rem;
    position: relative;
    overflow: visible;
    text-align: left;
    line-height: 1.6;
}

.automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.automation-features > * {
    width: 100%;
    box-sizing: border-box;
}

.automation-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.automation-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.automation-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.automation-feature-item:hover::before {
    transform: scaleX(1);
}

.automation-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    flex-shrink: 0;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.automation-feature-item:hover .automation-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.automation-feature-text {
    text-align: center;
}

.automation-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.automation-feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Gamification Section */
.gamification-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.gamification-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: gamificationOrbFloat 18s ease-in-out infinite;
}

.gamification-orb.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--gradient-1);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.gamification-orb.orb-2 {
    width: 380px;
    height: 380px;
    background: var(--gradient-3);
    bottom: -120px;
    left: -100px;
    animation-delay: 7s;
}

@keyframes gamificationOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-40px, 40px) scale(1.1) rotate(120deg); }
    66% { transform: translate(40px, -40px) scale(0.9) rotate(240deg); }
}

.gamification-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
    animation-duration: 20s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.gamification-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gamification-header {
    margin-bottom: 2.5rem;
}

.gamification-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    animation: gamificationIconSpin 8s linear infinite;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.gamification-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes gamificationIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.gamification-description {
    margin-bottom: 3rem;
}

.gamification-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.gamification-visual {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.gamification-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gamification-image-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.01em;
    margin: 0;
}

.gamification-image-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin: 0.5rem 0 0.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gamification-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.gamification-image-wrapper:first-child .gamification-image {
    object-fit: cover;
}

.gamification-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.3);
    border-color: var(--primary-color);
}

.mobile-arcade-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mobile-arcade-link:hover {
    transform: translateY(-5px) scale(1.02);
}

.mobile-arcade-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-arcade-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.2));
    transition: filter 0.3s ease;
}

.mobile-arcade-link:hover .mobile-arcade-svg {
    filter: drop-shadow(0 30px 80px rgba(0, 255, 136, 0.4));
}

.tablet-wheel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 2rem 2rem 2rem;
}

.tablet-wheel-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.2));
}

.wheel-container {
    animation: spinWheelGame 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    transform-origin: 0 0;
}

@keyframes spinWheelGame {
    0% {
        transform: rotate(0deg);
    }
    2% {
        transform: rotate(360deg);
    }
    4% {
        transform: rotate(720deg);
    }
    6% {
        transform: rotate(1080deg);
    }
    8% {
        transform: rotate(1440deg);
    }
    10% {
        transform: rotate(1800deg);
    }
    12% {
        transform: rotate(2160deg);
    }
    14% {
        transform: rotate(2520deg);
    }
    16% {
        transform: rotate(2880deg);
    }
    18% {
        transform: rotate(3240deg);
    }
    20% {
        transform: rotate(3600deg);
    }
    25% {
        transform: rotate(3780deg);
    }
    30% {
        transform: rotate(3900deg);
    }
    35% {
        transform: rotate(3960deg);
    }
    40% {
        transform: rotate(3990deg);
    }
    45% {
        transform: rotate(4005deg);
    }
    50% {
        transform: rotate(4012deg);
    }
    52% {
        transform: rotate(4015deg);
    }
    54% {
        transform: rotate(4016deg);
    }
    56% {
        transform: rotate(4017deg);
    }
    58% {
        transform: rotate(4017.5deg);
    }
    60% {
        transform: rotate(4018deg);
    }
    62% {
        transform: rotate(4018deg);
    }
    64% {
        transform: rotate(4018deg);
    }
    66% {
        transform: rotate(4018deg);
    }
    68% {
        transform: rotate(4018deg);
    }
    70% {
        transform: rotate(4018deg);
    }
    72% {
        transform: rotate(4018deg);
    }
    74% {
        transform: rotate(4018deg);
    }
    76% {
        transform: rotate(4018deg);
    }
    78% {
        transform: rotate(4018deg);
    }
    80% {
        transform: rotate(4018deg);
    }
    82% {
        transform: rotate(4018deg);
    }
    84% {
        transform: rotate(4018deg);
    }
    86% {
        transform: rotate(4018deg);
    }
    88% {
        transform: rotate(4018deg);
    }
    90% {
        transform: rotate(4018deg);
    }
    92% {
        transform: rotate(4018deg);
    }
    94% {
        transform: rotate(4018deg);
    }
    96% {
        transform: rotate(4018deg);
    }
    98% {
        transform: rotate(4018deg);
    }
    100% {
        transform: rotate(4018deg);
    }
}

.wheel-segments text {
    pointer-events: none;
    user-select: none;
}

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

.gamification-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gamification-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gamification-feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gamification-feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.gamification-feature-item:hover::before {
    transform: scaleX(1);
}

.gamification-feature-item:hover::after {
    opacity: 1;
}

.gamification-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.gamification-feature-item:hover .gamification-feature-icon {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    border-color: var(--primary-color);
}

.gamification-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.gamification-feature-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Partners Section */
/* Agency Section */
.agency-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.agency-content {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-central-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 4rem;
    padding: 2rem;
}

.mac-window {
    background: #e8e8e8;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: fit-content;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.mac-window:hover {
    transform: scale(1.02);
}

.mac-window-titlebar {
    background: #e8e8e8;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
}

.mac-window-traffic-lights {
    display: flex;
    gap: 8px;
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.traffic-light-close {
    background: #ff5f57;
}

.traffic-light-minimize {
    background: #ffbd2e;
}

.traffic-light-maximize {
    background: #28ca42;
}

.mac-window-content {
    background: #fff;
    padding: 10px;
}

.agency-dashboard {
    width: fit-content;
    min-width: 100%;
    padding: 1.5rem;
    background: var(--bg-dark);
    overflow: visible;
}

.agency-dashboard::-webkit-scrollbar {
    width: 8px;
}

.agency-dashboard::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 4px;
}

.agency-dashboard::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    opacity: 0.5;
}

.agency-dashboard::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.dashboard-summary {
    display: flex;
    gap: 2rem;
}

.summary-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.summary-item strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 0.5rem;
}

.dashboard-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.campaigns-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.campaigns-table thead {
    background: var(--bg-darker);
    position: sticky;
    top: 0;
    z-index: 10;
}

.campaigns-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.campaigns-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.campaigns-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--primary-color);
}

.campaigns-table tbody tr:last-child {
    border-bottom: none;
}

.campaigns-table td {
    padding: 1rem;
    vertical-align: middle;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.campaign-item {
    display: table-row;
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facebook-icon {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.instagram-icon {
    background: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.google-icon {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.campaign-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.campaign-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.campaign-status {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.campaign-status.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

.table-stat {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.table-stat-value {
    color: var(--primary-color);
    font-weight: 700;
}

.table-chart {
    width: 120px;
    height: 40px;
    background: rgba(0, 255, 136, 0.03);
    border-radius: 4px;
    padding: 0.25rem;
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-svg polyline {
    filter: drop-shadow(0 1px 2px rgba(0, 255, 136, 0.3));
}

.table-chart .chart-svg {
    width: 100%;
    height: 100%;
}

.agency-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.agency-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.agency-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.agency-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.agency-feature-item:hover .agency-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

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

.agency-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* CRM Section */
.crm-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

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

.crm-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    order: 2;
}

.crm-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.crm-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.crm-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.2);
}

.crm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.crm-dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.crm-stats {
    display: flex;
    gap: 1rem;
}

.crm-stat-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.crm-stat-item strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 0.5rem;
}

.crm-leads-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.crm-leads-list::-webkit-scrollbar {
    width: 6px;
}

.crm-leads-list::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 4px;
}

.crm-leads-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    opacity: 0.5;
}

.crm-leads-list::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.crm-lead-item {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: slideInLead 0.4s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

.crm-lead-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.crm-lead-item.new {
    border-left: 4px solid var(--primary-color);
    background: rgba(0, 255, 136, 0.08);
}

.crm-lead-source {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.75rem;
}

.crm-lead-source.google {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
}

.crm-lead-source.meta {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    color: white;
}

.crm-lead-source.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 100%);
    color: white;
}

.crm-lead-info {
    flex: 1;
    min-width: 0;
}

.crm-lead-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.crm-lead-details {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.crm-lead-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
    white-space: nowrap;
}

.crm-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    order: 1;
}

.crm-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.crm-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.crm-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.crm-feature-item:hover .crm-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.crm-feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .crm-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 576px) {
    .crm-dashboard {
        padding: 1.5rem;
    }

    .crm-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .crm-stats {
        width: 100%;
        justify-content: space-between;
    }
}

/* Agency Tabs */
.agency-tabs-container {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.agency-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.agency-tab {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: -2px;
}

.agency-tab:hover {
    color: var(--text-primary);
}

.agency-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.agency-tab svg {
    width: 20px;
    height: 20px;
}

.agency-tab-content {
    position: relative;
    min-height: 400px;
}

.agency-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.agency-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agency-tab-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.agency-tab-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.agency-tab-feature:hover .agency-tab-icon {
    transform: scale(1.1);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.agency-tab-feature h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-tab-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.agency-tab-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.agency-tab-features-list li {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    position: relative;
    padding-left: 2.5rem;
}

.agency-tab-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .agency-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .agency-tab {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }
    
    .agency-tab-feature {
        padding: 2rem 1.5rem;
    }
    
    .agency-tab-feature h3 {
        font-size: 1.5rem;
    }
    
    .agency-tab-features-list {
        grid-template-columns: 1fr;
    }
}

/* Loyalty Analytics Section */
.loyalty-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
}

.loyalty-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.loyalty-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-graph-container {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 2rem;
}

.loyalty-graph-svg {
    width: 100%;
    height: auto;
}

.loyalty-line {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.loyalty-node {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.loyalty-analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.loyalty-analytic-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.loyalty-analytic-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15);
    transform: translateY(-3px);
}

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

.analytic-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.loyalty-radar-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.radar-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.loyalty-bar-chart {
    padding: 1rem 0;
}

.loyalty-unified-store-graphic {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unified-store-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.bar-chart-svg {
    width: 100%;
    height: auto;
}

.loyalty-sources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.source-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.source-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 24px;
}

.source-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.source-info {
    flex: 1;
}

.source-domain {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.source-title {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.loyalty-reports-graphic {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reports-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.loyalty-citation-report {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.citation-entries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.citation-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
}

.citation-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.citation-info {
    flex: 1;
}

.citation-url {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.citation-title {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.top-brands {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.top-brands-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.brands-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-item {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-rank {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 24px;
}

@media (max-width: 968px) {
    .loyalty-analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-header {
        margin-bottom: 3rem;
    }
    
    .loyalty-graph-container {
        margin-bottom: 3rem;
    }
}

/* Physical Store Section */
.physical-store-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.physical-store-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Physical Store Visual */
.physical-store-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.physical-store-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.physical-store-header {
    margin-bottom: 0;
}

.physical-store-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.physical-store-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    margin: 0;
}

.physical-store-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
}

.radius-animation-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radius-animation-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.radius-circle {
    animation: expandRadius 6s ease-in-out infinite;
    transform-origin: 250px 250px;
}

.radius-1 {
    animation-delay: 0s;
}

.radius-2 {
    animation-delay: 1s;
}

.radius-3 {
    animation-delay: 2s;
}

.radius-4 {
    animation-delay: 3s;
}

@keyframes expandRadius {
    0% {
        r: 50;
        opacity: 0.2;
    }
    50% {
        r: 220;
        opacity: 0.05;
    }
    100% {
        r: 50;
        opacity: 0.2;
    }
}

.store-center-group {
    position: relative;
    z-index: 10;
}

.store-center {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
}

.store-label {
    pointer-events: none;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.person {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.9));
    transition: transform 0.1s ease-out;
    transform-origin: center;
}

.physical-store-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.physical-store-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.physical-store-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.physical-store-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.physical-store-feature-item:hover .physical-store-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.physical-store-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.physical-store-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Automation Ads Section */
.automation-ads-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.automation-ads-content {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.automation-ads-content .mac-window {
    background: #e8e8e8;
    border-radius: 10px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.6),
        0 0 100px rgba(0, 255, 136, 0.4),
        0 0 140px rgba(0, 255, 136, 0.2);
    overflow: hidden;
    max-width: 84%;
    margin: 0 auto;
    transform: scale(0.84);
    transform-origin: top center;
    border: 1px solid rgba(0, 255, 136, 0.5);
}

.automation-ads-content .mac-window-titlebar {
    background: #e8e8e8;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
}

.automation-ads-content .mac-window-content {
    background: var(--bg-dark);
    padding: 2rem;
    min-height: 850px;
    height: auto;
    position: relative;
}

.ai-loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.ai-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ai-loading-icon {
    color: var(--primary-color);
    animation: aiLoadingSpin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

@keyframes aiLoadingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ai-loading-pulse {
    animation: aiLoadingPulse 1.5s ease-in-out infinite;
}

@keyframes aiLoadingPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.ai-loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ai-loading-label {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.ai-loading-status {
    font-size: 1rem;
    color: var(--text-secondary);
    animation: aiLoadingTextPulse 2s ease-in-out infinite;
}

@keyframes aiLoadingTextPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.url-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

.url-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: not-allowed;
}

.url-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.url-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.url-input[readonly] {
    background: var(--bg-darker);
    opacity: 0.8;
}

.auto-click-btn {
    white-space: nowrap;
    padding: 1rem 2rem;
    position: relative;
    transition: all 0.2s ease;
    background: transparent !important;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: not-allowed;
}

.auto-click-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auto-click-btn:active,
.auto-click-btn.auto-clicking {
    transform: scale(0.95);
    background: var(--primary-color) !important;
    color: #000 !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

@keyframes buttonClick {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
}

.ads-preview-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.ad-post {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: popupEffect 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
}

@keyframes popupEffect {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ad-post:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.ad-image-placeholder {
    width: 100%;
    height: 250px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ad-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.ad-content {
    padding: 1.5rem;
}

.ad-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.ad-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Eshops Section */
.eshops-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.eshops-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.eshop-integration-visual {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eshop-feature-left {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    justify-content: flex-end;
}

.eshop-feature-left .eshops-feature-item,
.eshop-feature-right .eshops-feature-item {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 50px 50px 50px 10px;
    padding: 2rem;
    position: relative;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.08);
    border: none;
}

.eshop-feature-right .eshops-feature-item {
    border-radius: 50px 50px 10px 50px;
}

.eshop-feature-left .eshops-feature-item::before,
.eshop-feature-right .eshops-feature-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: none;
    border-radius: 50%;
    opacity: 0.4;
}

.eshop-feature-left .eshops-feature-item::before {
    right: -10px;
    top: 30px;
}

.eshop-feature-right .eshops-feature-item::before {
    left: -10px;
    top: 30px;
}

.eshop-feature-left .eshops-feature-item::after,
.eshop-feature-right .eshops-feature-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(0, 255, 136, 0.08);
    border: none;
    border-radius: 50%;
    opacity: 0.3;
}

.eshop-feature-left .eshops-feature-item::after {
    right: -5px;
    top: 60px;
}

.eshop-feature-right .eshops-feature-item::after {
    left: -5px;
    top: 60px;
}

.eshop-center-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.eshop-feature-right {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
}

.eshop-feature-bottom {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.eshop-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    width: 100%;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 150px;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.connection-line {
    position: absolute;
    bottom: -2rem;
    width: 3px;
    height: 2rem;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
    animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.ai-plugin-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 10;
}

.plugin-icon-wrapper {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.plugin-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.plugin-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.output-platforms {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.output-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 150px;
}

.output-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.google-card:hover {
    border-color: #4285F4;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.meta-card:hover {
    border-color: #1877F2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.connection-line-output {
    position: absolute;
    top: -2rem;
    width: 3px;
    height: 2rem;
    background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
    animation: pulseLine 2s ease-in-out infinite;
}

.platform-icons-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.eshops-features-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
}

.eshops-feature-text-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.eshops-feature-text-item:last-child {
    border-bottom: none;
}

.eshops-feature-text-item:hover {
    padding-left: 1rem;
}

.eshops-feature-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-color);
    flex-shrink: 0;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.eshops-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.eshops-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 0;
}

.ai-plugin-visualization {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.ai-plugin-svg {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.data-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.data-packet {
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.8));
}

.flow-path {
    stroke-dasharray: 10, 5;
    animation: flowAnimation 2s linear infinite;
}

@keyframes flowAnimation {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 15;
    }
}

.ai-plugin-core {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    }
}

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

.eshops-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.eshops-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.eshops-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.eshops-feature-item:hover .eshops-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

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

.eshops-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Partnerships Section */
.partnerships-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partnerships-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partnerships-text {
    margin-bottom: 2.5rem;
}

.partnerships-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.partnerships-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners {
    background: var(--bg-dark);
}

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

.partner-logo {
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    transition: all 0.3s;
    box-shadow: none !important;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: transparent !important;
    box-shadow: none !important;
}

.logo-placeholder {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.partner-logo:hover .partner-logo-img {
    filter: brightness(0) invert(1) brightness(1.2);
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: pricingOrbFloat 18s ease-in-out infinite;
}

.pricing-orb.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--gradient-1);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.pricing-orb.orb-2 {
    width: 380px;
    height: 380px;
    background: var(--gradient-2);
    bottom: -120px;
    right: -100px;
    animation-delay: 7s;
}

@keyframes pricingOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.25);
}

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

.pricing-card-featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.pricing-card-featured::before {
    transform: scaleX(1);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Start On Your Own Section */
.start-on-your-own-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.start-on-your-own-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.start-on-your-own-content .section-title {
    margin-bottom: 2rem;
}

.start-on-your-own-text {
    margin-bottom: 3rem;
}

.start-on-your-own-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.start-on-your-own-description strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.start-text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.start-text-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-color);
}

.start-on-your-own-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .start-on-your-own-section {
        padding: 60px 0;
    }
    
    .start-on-your-own-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* CTA Section */
.cta-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-form input {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 24px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .language-selector-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8125rem;
    }
    
    .language-selector-btn svg:first-child {
        width: 16px;
        height: 16px;
    }
    
    .current-language {
        min-width: 28px;
    }
    
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 160px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .black-box-graphic {
        order: -1;
    }
    
    .black-box-svg {
        width: 80px;
        height: 80px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .physical-store-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .step-left {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .step-graphic {
        order: -1;
    }
    
    .steps-connector {
        display: none;
    }
    
    .step-icon-wrapper {
        margin: 0 auto;
    }
    
    .step-number {
        width: auto;
        display: inline-block;
    }
    
    .step-content {
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .agency-central-image {
        margin: 2rem 0 3rem;
        padding: 1rem;
    }
    
    .agency-dashboard {
        padding: 1rem;
    }
    
    .campaign-item {
        padding: 1rem;
    }
    
    .campaign-header {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .campaign-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .campaign-chart {
        height: 60px;
    }
    
    .mac-window-titlebar {
        padding: 8px 12px;
    }
    
    .traffic-light {
        width: 10px;
        height: 10px;
    }
    
    .agency-features {
        grid-template-columns: 1fr;
    }
    
    .physical-store-features {
        grid-template-columns: 1fr;
    }
    
    .physical-store-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .physical-store-text {
        max-width: 100%;
        text-align: center;
    }
    
    .physical-store-header .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .physical-store-header .section-subtitle {
        text-align: center;
    }
    
    .physical-store-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .radius-animation-container {
        max-width: 100%;
    }
    
    .radius-animation-svg {
        max-width: 100%;
        height: auto;
    }
    
    .automation-ads-content .mac-window-content {
        padding: 1.5rem;
    }
    
    .url-input-container {
        flex-direction: column;
    }
    
    #generate-ads-btn {
        width: 100%;
    }
    
    .ads-preview-container {
        grid-template-columns: 1fr;
    }
    
    .gamification-image-wrapper:first-child {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Support for mobile browsers */
        z-index: 9999 !important;
        background: var(--bg-dark) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .gamification-image-wrapper:first-child .gamification-image-title {
        position: absolute !important;
        top: 2rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10000 !important;
        background: rgba(10, 10, 15, 0.9) !important;
        padding: 1rem 2rem !important;
        border-radius: 12px !important;
        border: 2px solid rgba(0, 255, 136, 0.3) !important;
        margin: 0 !important;
    }
    
    .gamification-image-wrapper:first-child .gamification-image {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Support for mobile browsers */
        object-fit: cover !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .ads-preview-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1025px) {
        .ads-preview-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .agency-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .agency-features {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title-wrapper {
        gap: 1rem;
    }
    
    .black-box-svg {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-clients {
        margin-top: 2rem;
        padding-top: 2rem;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-clients-logos {
        gap: 1.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 1.5rem;
        scroll-padding: 0 1.5rem;
    }
    
    .hero-client-logo {
        height: 30px;
    }
    
    .client-logo-img {
        max-height: 30px;
        max-width: 100px;
    }
    
    .features {
        padding-top: 60px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .automation-features {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
    }
    
    .automation-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .automation-text {
        text-align: left;
    }
    
    .automation-text .physical-store-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .automation-header {
        width: 100%;
    }
    
    .budget-chart-container {
        margin: 2rem 0;
        padding: 1.25rem;
        max-width: 100%;
        transform: scale(1);
    }
    
    .budget-chart-container .time-period-container {
        padding: 1rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .time-period-text {
        font-size: 1.25rem;
    }
    
    .clock-icon {
        width: 48px;
        height: 48px;
    }
    
    .clock-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .budget-chart-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .budget-chart {
        gap: 1.25rem;
    }
    
    .budget-bar-wrapper {
        height: 32px;
    }
    
    .budget-bar-label {
        font-size: 0.875rem;
    }
    
    .budget-amount {
        font-size: 0.9375rem;
    }
    
    .budget-total {
        font-size: 0.9375rem;
        padding-top: 1.25rem;
    }
    
    .budget-total strong {
        font-size: 1.0625rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .eshops-content {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .eshop-integration-visual {
        width: 100%;
        padding: 1rem;
    }
    
    .eshops-features-text {
        width: 100%;
    }
    
    .eshops-feature-text-item {
        padding: 1.25rem 0;
    }
    
    .eshops-feature-title {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .eshops-feature-description {
        padding-left: 0;
        margin-top: 0.5rem;
        font-size: 0.9375rem;
    }
    
    .gamification-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .gamification-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Knowledge Base Styles */
.knowledge-hero {
    background: var(--bg-darker);
    padding: 120px 0 80px;
    text-align: center;
}

.knowledge-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.knowledge-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.knowledge-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.knowledge-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.knowledge-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.knowledge-search .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.knowledge-content {
    padding: 60px 0;
    background: var(--bg-dark);
}

.knowledge-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.knowledge-category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.knowledge-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.knowledge-category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 600;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.knowledge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.knowledge-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.knowledge-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.knowledge-badge.getting-started {
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-color);
}

.knowledge-badge.ads {
    background: rgba(66, 133, 244, 0.15);
    color: #4285F4;
}

.knowledge-badge.loyalty {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.knowledge-badge.reports {
    background: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
}

.knowledge-badge.integrations {
    background: rgba(255, 87, 34, 0.15);
    color: #FF5722;
}

.knowledge-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.knowledge-type svg {
    width: 14px;
    height: 14px;
}

.knowledge-video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.knowledge-video-thumbnail::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"><rect fill="%23000" width="100" height="100"/><path fill="%2300ff88" d="M20 20h60v60H20z"/></svg>') center/cover;
    opacity: 0.1;
}

.video-play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.knowledge-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.knowledge-card-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.knowledge-card-link {
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.knowledge-card-link:hover {
    gap: 0.75rem;
    color: var(--primary-light);
}

.nav-menu a.active {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .knowledge-category-btn {
        flex-shrink: 0;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.video-modal-player {
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    max-height: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        padding: 1rem;
    }
    
    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-player {
        height: 60vh;
        border-radius: 8px;
    }
}

