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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1A202C;
    background-color: #FFFFFF !important;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A202C;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border-radius: 2px;
}

/* Delivery Banner */
.delivery-banner {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    position: relative;
    z-index: 999;
}

.delivery-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.delivery-icon {
    font-size: 16px;
    animation: bounce 2s infinite;
}

.klarna-delivery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.klarna-icon-img {
    width: 30px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Modern Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-secondary:hover {
    background-color: #0066CC;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.btn-hero {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    min-height: 64px;
    border-radius: 16px;
}

.btn-contact {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    border: 2px solid transparent;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #2F855A 0%, #276749 100%);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.3);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.price-highlight {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    min-height: 64px;
}

.btn-full {
    width: 100%;
}

/* Stripe Payment Buttons */
.stripe-payment-btn {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.stripe-payment-btn:hover {
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.popular-btn {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.3);
}

.popular-btn:hover {
    background: linear-gradient(135deg, #2F855A 0%, #276749 100%);
    box-shadow: 0 10px 30px rgba(56, 161, 105, 0.4);
}

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

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

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Header - Modern Design */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .header {
        position: relative;
        top: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header.scrolled {
        position: fixed;
        top: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0066CC;
    margin: 0;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

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

.nav-link {
    color: #1A202C;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0066CC;
    background-color: #E6F2FF;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1A202C;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Modern Design */
.hero {
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 50%, #D6EFFF 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(56, 161, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1A202C;
    line-height: 1.1;
    background: linear-gradient(135deg, #1A202C 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Before/After Section - Enhanced */
.before-after {
    padding: 100px 0;
    background-color: white;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-box {
    background-color: #F4F8FB;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.comparison-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.comparison-box.before {
    border-color: #DC2626;
}

.comparison-box.after {
    border-color: #0066CC;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.comparison-header h3 {
    margin: 0;
    font-weight: 600;
}

.before h3 {
    color: #DC2626;
}

.after h3 {
    color: #0066CC;
}

.quality-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.quality-badge.poor {
    background-color: #FEE2E2;
    color: #DC2626;
}

.quality-badge.excellent {
    background-color: #E6F2FF;
    color: #0066CC;
}

.text-sample {
    font-style: italic;
    line-height: 1.6;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: white;
    border-left: 4px solid;
}

.before-text {
    border-left-color: #DC2626;
}

.after-text {
    border-left-color: #0066CC;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #0066CC;
    font-weight: bold;
}

.arrow-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-symbol {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

/* Services Section - Enhanced */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #0066CC;
}

.service-card.featured {
    border-color: #38A169;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 0;
}

.service-badge {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    color: #1A202C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    font-size: 14px;
    color: #666;
    padding: 4px 0;
}

.service-btn {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Why Us Section - Enhanced */
.why-us {
    padding: 100px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: #F4F8FB;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #0066CC;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #1A202C;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-highlight {
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F8FF 100%);
    color: #0066CC;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Testimonials Section - Enhanced */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #0066CC;
}

.testimonial-card.featured {
    border-color: #38A169;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.3rem;
}

.verified-badge {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1A202C;
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

/* Text Editor Section */
.text-editor-section {
    padding: 100px 0;
    background-color: white;
}

.editor-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F4F8FB;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.editor-toolbar {
    display: flex;
    gap: 8px;
    padding: 1.5rem;
    background-color: white;
    border-bottom: 1px solid #E2E8F0;
    flex-wrap: wrap;
}

.editor-btn {
    padding: 10px 16px;
    border: 1px solid #E2E8F0;
    background-color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.editor-btn:hover {
    background-color: #E6F2FF;
    border-color: #0066CC;
    transform: translateY(-2px);
}

.separator {
    width: 1px;
    background-color: #E2E8F0;
    margin: 0 8px;
}

.clear-btn {
    margin-left: auto;
    background-color: #FEE2E2;
    color: #DC2626;
}

.clear-btn:hover {
    background-color: #FECACA;
}

.editor-content {
    min-height: 200px;
    padding: 2rem;
    background-color: white;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
}

.editor-content:empty:before {
    content: attr(placeholder);
    color: #999;
}

.editor-stats {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: #F4F8FB;
    font-size: 14px;
    color: #666;
}

/* Discount Banner - Enhanced */
.discount-banner {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(56, 161, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.discount-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.discount-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.discount-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.discount-timer {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.timer-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.timer-value {
    font-size: 16px;
    font-weight: 700;
}

/* Pricing Section - Enhanced */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
}

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

.pricing-card {
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #0066CC;
}

.pricing-card.popular {
    border: 3px solid #0066CC;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-icon {
    font-size: 16px;
}

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

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #1A202C;
    font-size: 1.4rem;
}

.delivery-time {
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F8FF 100%);
    color: #0066CC;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.price {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0066CC;
    line-height: 1;
}

.currency {
    font-size: 1.4rem;
    color: #666;
    margin-left: 4px;
}

.savings {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features li {
    padding: 10px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #F4F8FB;
}

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

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background-color: white;
    border-top: 1px solid #E2E8F0;
}

.payment-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

.payment-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.payment-icon {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F8FB;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 8px;
}

.payment-icon:hover {
    background-color: #E6F2FF;
    border-color: #0066CC;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.payment-icon svg {
    width: 100%;
    height: 100%;
    color: #666;
    transition: color 0.3s ease;
}

.payment-icon:hover svg {
    color: #0066CC;
}

.klarna-icon {
    width: 60px;
    background-color: #FFB3C7 !important;
    border: 2px solid #FF6B9D !important;
}

.klarna-icon:hover {
    background-color: #FF6B9D !important;
    border-color: #FF1744 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

.klarna-payment-icon {
    width: 100%;
    height: auto;
    max-width: 40px;
    border-radius: 4px;
    background-color: white !important;
    padding: 2px;
    object-fit: contain;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #F4F8FB;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border: 1px solid #E2E8F0;
}

.security-icon {
    font-size: 16px;
}

/* Process Section - Compact and Clean */
.process {
    padding: 60px 0;
    background-color: white;
}

.process-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.process-intro h2 {
    font-size: 1.8rem;
    color: #1A202C;
    margin-bottom: 0.5rem;
}

.process-intro p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.process-step:hover {
    background: linear-gradient(135deg, #E6F2FF 0%, #D6EFFF 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
    border-color: #0066CC;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: #1A202C;
    font-size: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
}

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

.faq-item {
    background-color: white;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1A202C;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F4F8FB;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: #0066CC;
    font-size: 1.2rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1A202C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 18px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.file-upload-area {
    border: 2px dashed #E2E8F0;
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.file-upload-area:hover {
    border-color: #0066CC;
    background-color: #E6F2FF;
    transform: translateY(-2px);
}

.file-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.file-info {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #E6F2FF;
    border-radius: 12px;
    color: #0066CC;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #0066CC;
    border-color: #0066CC;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Payment Integration Styles */
.payment-option {
    background: linear-gradient(135deg, #E6F2FF 0%, #F4F8FB 100%);
    border: 2px solid #0066CC;
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.payment-option h4 {
    color: #0066CC;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.payment-btn {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.payment-btn.popular {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
}

.payment-btn.popular:hover {
    background: linear-gradient(135deg, #2F855A 0%, #276749 100%);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-section a:hover {
    color: #0066CC;
    transform: translateX(5px);
}

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

.social-links a {
    color: #ccc;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: #0066CC;
    background-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Enhanced Chatbot Styles */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
}

.chat-toggle::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.chat-window.active {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

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

.chat-header {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.chat-header::after {
    content: '🟢 Online 24/7';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(56, 161, 105, 0.3);
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.chat-messages {
    flex: 1;
    padding: 1.5rem 1rem 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%);
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
    animation: fadeIn 0.3s ease-out;
    position: relative;
}

.bot-message {
    background-color: white;
    color: #1A202C;
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.bot-message::before {
    content: '🤖';
    position: absolute;
    top: -6px;
    left: 12px;
    background: white;
    padding: 1px 4px;
    border-radius: 6px;
    font-size: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.user-message {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.3);
}

.user-message::before {
    content: '👤';
    position: absolute;
    top: -6px;
    right: 12px;
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    padding: 1px 4px;
    border-radius: 6px;
    font-size: 10px;
    box-shadow: 0 1px 3px rgba(0, 102, 204, 0.3);
}

.message-content {
    margin: 0;
}

.message-content strong {
    font-weight: 600;
}

.typing-indicator {
    background-color: #E6F2FF !important;
    border: 2px solid #0066CC !important;
}

.typing-dots {
    animation: typingDots 1.5s infinite;
}

@keyframes typingDots {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid #E2E8F0;
    display: flex;
    gap: 8px;
    background-color: white;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    background-color: #F4F8FB;
}

.chat-input:focus {
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background-color: white;
}

.chat-input::placeholder {
    color: #999;
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
}

.chat-send:hover {
    background: linear-gradient(135deg, #0052A3 0%, #003d7a 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.chat-send:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #38A169;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #F4F8FB;
    color: #DC2626;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 2rem;
    border-top: 1px solid #E2E8F0;
    text-align: right;
}

/* Responsive Design - Enhanced Mobile */
@media (max-width: 768px) {
    .delivery-banner {
        padding: 10px 0;
        font-size: 12px;
        position: relative;
        z-index: 999;
    }

    .delivery-content {
        gap: 8px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .klarna-icon-img {
        width: 25px;
    }

    /* Hero section mobile */
    .hero {
        padding: 80px 0 60px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat {
        padding: 1rem;
        min-width: 100px;
    }

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

    /* Navigation mobile */
    .nav {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* Sections mobile */
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-box {
        padding: 1.5rem;
    }

    .arrow-container {
        order: 2;
    }

    .arrow-symbol {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 2rem;
    }

    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

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

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .discount-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .discount-text h2 {
        font-size: 1.6rem;
    }

    .amount {
        font-size: 2.8rem;
    }

    /* Process steps mobile */
    .process {
        padding: 40px 0;
    }

    .process-intro h2 {
        font-size: 1.5rem;
    }

    .process-intro p {
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-step {
        padding: 1rem 0.8rem;
    }

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

    .process-step h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .process-step p {
        font-size: 0.8rem;
    }

    /* Payment icons mobile */
    .payment-icons {
        gap: 1rem;
        justify-content: center;
    }

    .payment-icon {
        width: 50px;
        height: 35px;
    }

    .klarna-icon {
        width: 50px;
    }

    .klarna-payment-icon {
        max-width: 35px;
    }

    .security-badges {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-links {
        justify-content: center;
    }

    /* Chat mobile */
    .chatbot {
        bottom: 15px;
        right: 15px;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .chat-toggle::after {
        width: 14px;
        height: 14px;
        top: -2px;
        right: -2px;
    }

    .chat-window {
        width: calc(100vw - 30px);
        height: 70vh;
        max-height: 500px;
        bottom: 70px;
        right: -7px;
        border-radius: 12px;
    }

    .chat-header {
        padding: 0.8rem 1rem;
    }

    .chat-header h4 {
        font-size: 0.9rem;
    }

    .chat-header::after {
        font-size: 10px;
        padding: 2px 8px;
        bottom: -8px;
    }

    .chat-messages {
        padding: 1rem 0.8rem 0.8rem;
        gap: 0.6rem;
    }

    .chat-message {
        max-width: 90%;
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 14px;
    }

    .chat-input-container {
        padding: 0.8rem;
        gap: 6px;
    }

    .chat-input {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 18px;
    }

    .chat-send {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Payment buttons mobile */
    .payment-buttons {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .payment-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Editor mobile */
    .editor-container {
        margin: 0 10px;
    }

    .editor-toolbar {
        justify-content: center;
        gap: 6px;
        padding: 1rem;
    }

    .editor-btn {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .editor-content {
        padding: 1.5rem;
        font-size: 14px;
    }

    /* Contact form mobile */
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .file-upload-area {
        padding: 2rem 1rem;
    }

    /* FAQ mobile */
    .faq-container {
        margin: 0 10px;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }

    /* General mobile */
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 50px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
        min-height: 56px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .delivery-banner {
        font-size: 11px;
        padding: 8px 0;
    }

    .delivery-content {
        gap: 6px;
    }

    .klarna-icon-img {
        width: 20px;
    }

    .hero {
        padding: 60px 0 40px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 46px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 52px;
    }

    .comparison-box {
        padding: 1.2rem;
    }

    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }

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

    .amount {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .payment-icons {
        gap: 0.8rem;
    }

    .payment-icon {
        width: 45px;
        height: 32px;
    }

    .klarna-icon {
        width: 45px;
    }

    .klarna-payment-icon {
        max-width: 30px;
    }

    .chat-window {
        width: calc(100vw - 20px);
        height: 65vh;
        max-height: 450px;
        right: -5px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .discount-text h2 {
        font-size: 1.4rem;
    }

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

    .modal-content {
        width: 98%;
        margin: 10px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    /* Process steps extra small mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .process-step {
        padding: 0.8rem 0.6rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .process-step h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .process-step p {
        font-size: 0.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #0066CC;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .service-card,
    .testimonial-card,
    .pricing-card {
        border: 2px solid #1A202C;
    }
}

/* Force white background for all sections */
html, body {
    background-color: #FFFFFF !important;
}

.hero,
.before-after,
.services,
.why-us,
.testimonials,
.text-editor-section,
.pricing,
.process,
.faq,
.contact,
.payment-methods {
    background-color: white !important;
}

.hero {
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 50%, #D6EFFF 100%) !important;
}

.services,
.testimonials,
.pricing,
.faq {
    background: linear-gradient(135deg, #F4F8FB 0%, #E6F2FF 100%) !important;
}