/* ============================================
   RYCART LANDING PAGE - CORPORATE STYLES
   Colors: Orange #FF6B35, Cyan #00B4D8
   ============================================ */

:root {
    /* RyCart Brand Colors - Corporate Version */
    --rycart-orange: #FF6B35;
    --rycart-cyan: #0096c7;
    --rycart-dark: #1a1a1a;
    --rycart-gray: #6b7280;
    --rycart-light-gray: #f8f9fa;
    --rycart-border: #e5e7eb;
    
    /* Corporate Blues */
    --corporate-blue: #0077b6;
    --corporate-blue-light: #00b4d8;
    
    /* Gradients - More subtle */
    --gradient-primary: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
    --gradient-accent: linear-gradient(135deg, #0096c7 0%, #00b4d8 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--rycart-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* ============================================
   LANGUAGE TOGGLE - INTEGRATED IN HEADER
   ============================================ */
.lang-toggle {
    display: flex;
    gap: 0;
    background: white;
    border: 1px solid var(--rycart-border);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--rycart-gray);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid var(--rycart-border);
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn:hover {
    background: var(--rycart-light-gray);
    color: var(--rycart-dark);
}

.lang-btn.active {
    background: var(--corporate-blue);
    color: white;
}

/* ============================================
   DISCOUNT BANNER
   ============================================ */
.discount-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}

.discount-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.discount-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
}

.logo-circle::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--rycart-orange);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--rycart-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--corporate-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--corporate-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.btn-cta-header:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION - VISUAL WITH FLOATING RYCART
   ============================================ */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--corporate-blue);
    top: -100px;
    right: -100px;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--rycart-orange);
    bottom: -50px;
    left: -50px;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--corporate-blue-light);
    top: 50%;
    left: 10%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ============================================
   RYCART ROBOT FLOATING
   ============================================ */
.rycart-robot {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.rycart-robot img {
    width: 100%;
    height: auto;
    display: block;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

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

/* Robot Placeholder (CSS fallback) */
.rycart-placeholder {
    display: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.robot-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.robot-head {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    position: relative;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.robot-antenna {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 30px;
    background: #6b7280;
    border-radius: 6px;
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--rycart-orange);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.robot-eyes {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.robot-eye {
    width: 40px;
    height: 50px;
    background: var(--corporate-blue-light);
    border-radius: 20px;
    box-shadow: inset 0 2px 10px rgba(0, 180, 216, 0.3);
}

.robot-smile {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    border-bottom: 6px solid var(--corporate-blue-light);
    border-radius: 0 0 80px 80px;
}

.robot-torso {
    width: 200px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 4px solid var(--corporate-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--rycart-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--rycart-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rycart-dark);
    box-shadow: var(--shadow-sm);
}

.hero-right {
    display: flex;
    justify-content: center;
}

/* ============================================
   PRICING CARD - ENHANCED
   ============================================ */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--rycart-border);
    transition: all 0.3s ease;
    position: relative;
    max-width: 480px;
    width: 100%;
}

.pricing-card:hover {
    border-color: var(--corporate-blue);
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 150, 199, 0.15);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--rycart-light-gray);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--rycart-dark);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.price-original {
    font-size: 24px;
    color: var(--rycart-gray);
    text-decoration: line-through;
    display: none;
}

.price-original.show {
    display: block;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: var(--rycart-gray);
}

.price-note {
    font-size: 14px;
    color: var(--rycart-gray);
    margin-top: 8px;
}

/* ============================================
   PURCHASE FORM
   ============================================ */
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--rycart-dark);
    font-size: 14px;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--rycart-cyan);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-hint {
    font-size: 12px;
    color: var(--rycart-gray);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--rycart-cyan);
}

.btn-purchase {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 150, 199, 0.25);
}

.btn-purchase:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secure-note {
    text-align: center;
    font-size: 13px;
    color: var(--rycart-gray);
    margin-top: 12px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--rycart-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--rycart-gray);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--rycart-border);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--corporate-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.service-icon.web-dev {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--corporate-blue);
}

.service-icon.marketing {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--corporate-blue);
}

.service-icon.design {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--corporate-blue);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--rycart-dark);
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    padding-left: 24px;
    position: relative;
    color: var(--rycart-gray);
    font-size: 15px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--corporate-blue);
    font-weight: bold;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.benefit-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--rycart-dark);
}

.benefit-card p {
    color: var(--rycart-gray);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--rycart-dark);
}

.step-content p {
    color: var(--rycart-gray);
    font-size: 15px;
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--rycart-gray);
    margin: 0 16px;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--rycart-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--corporate-blue-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   LOADING OVERLAY
   ============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 9999;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--corporate-blue-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-overlay p {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .rycart-robot {
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .rycart-robot {
        max-width: 250px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .btn-cta-header {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}