/* QR Catalog Landing Page Styles */
/* Modern, sleek design with contemporary aesthetics */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Add subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .container {
    text-align: right;
}

html[dir="rtl"] .hero-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .steps {
    flex-direction: row-reverse;
}

html[dir="rtl"] .demo-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .benefits-grid {
    direction: rtl;
}

html[dir="rtl"] .pricing-plans {
    flex-direction: row-reverse;
}

html[dir="rtl"] .features-grid {
    direction: rtl;
}

html[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

p {
    margin-bottom: 1rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border: 2px solid rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(15, 23, 42, 0.15);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    min-height: 56px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand .brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

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

.lang-toggle {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(15, 23, 42, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-1px);
}

.lang-toggle:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.lang-option {
    font-size: 0.875rem;
    color: #64748b;
    transition: color 0.3s ease;
    font-weight: 500;
}

.lang-option.active {
    color: #10b981;
    font-weight: 600;
}

.lang-separator {
    color: #cbd5e1;
    font-weight: 300;
}

.whatsapp-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
    letter-spacing: -0.01em;
}

.whatsapp-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(16, 185, 129, 0.35);
}

.whatsapp-cta:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 30%, #e2e8f0 70%, #cbd5e1 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Graphics */
.hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Animated Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-rotate 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #10b981, #059669);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    bottom: -5%;
    left: -5%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    top: 30%;
    left: 10%;
    animation-delay: 1.5s;
    animation-duration: 22s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    top: 60%;
    right: 15%;
    animation-delay: 2.5s;
    animation-duration: 28s;
    border-radius: 30%;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    top: 15%;
    right: 25%;
    animation-delay: 4s;
    animation-duration: 35s;
    opacity: 0.08;
}

/* Gradient Orbs */
.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse-scale 15s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    bottom: -15%;
    right: -5%;
    animation-delay: 5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 8s;
}

/* Grid Pattern */
.bg-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Animations */
@keyframes float-rotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translate(-15px, 20px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(30px, 15px) rotate(270deg) scale(1.08);
    }
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #475569 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-demo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
}

.qr-demo-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.qr-demo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b981, #059669, #3b82f6, #8b5cf6);
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-demo-container:hover::before {
    opacity: 1;
}

.qr-demo {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.qr-demo-container:hover .qr-demo {
    transform: scale(1.02);
}

.scan-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 28px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

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

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

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

/* Add subtle section dividers */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.025em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

/* What is Lessy Section */
.what-is-lessy {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.what-is-lessy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.what-is-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.what-is-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    font-weight: 400;
}

/* Who Uses Lessy Section */
.who-uses-lessy {
    background: white;
    position: relative;
}

.business-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.business-type {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.business-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-type:hover::before {
    opacity: 1;
}

.business-type:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.business-icon {
    font-size: 3.5rem;
    filter: grayscale(0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.business-type:hover .business-icon {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.business-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.business-description {
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.business-tagline {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* WhatsApp Integration Section */
.whatsapp-integration {
    background: white;
    position: relative;
    overflow: hidden;
}

.whatsapp-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 5rem;
    font-weight: 400;
}

.whatsapp-section {
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.whatsapp-section:last-child {
    margin-bottom: 0;
}

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

.section-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.whatsapp-section-header:hover .section-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

.whatsapp-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.whatsapp-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

.whatsapp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.whatsapp-feature {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-feature:hover::before {
    opacity: 1;
}

.whatsapp-feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.whatsapp-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.whatsapp-feature:hover .whatsapp-feature-icon {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}

.whatsapp-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.whatsapp-feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
}

.whatsapp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatsapp-feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: #475569;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.9375rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.whatsapp-feature-list li:first-child {
    border-top: none;
}

.whatsapp-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.125rem;
}

/* WhatsApp Stats */
.whatsapp-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 5rem auto 5rem;
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.stat-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* WhatsApp CTA Box */
.whatsapp-cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(37, 211, 102, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-cta-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.whatsapp-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.whatsapp-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.whatsapp-benefit:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(8px);
}

.benefit-check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.whatsapp-benefit span:last-child {
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    font-size: 1rem;
}

.whatsapp-cta-actions {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Key Features Section */
.key-features {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.key-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonials Section */
.testimonials {
    background: white;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial:hover::before {
    opacity: 1;
}

.testimonial:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #10b981;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
}

.author-business {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Pricing Updates */
.pricing-description {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 400;
}

.upgrade-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.upgrade-feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.upgrade-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer Updates */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-location,
.footer-languages,
.footer-contact,
.footer-phone {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact a,
.footer-phone a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact a:hover,
.footer-phone a:hover {
    color: #059669;
    text-decoration: underline;
}

/* How it Works */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.step-description {
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

/* Demo Section */
.demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.demo-qr {
    text-align: center;
}

.demo-qr-image {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.demo-qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.demo-video {
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 5rem 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.play-button {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-text {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.benefit {
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit:hover::before {
    transform: scaleY(1);
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.benefit-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.benefit-description {
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-note {
    text-align: center;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 4rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
    position: relative;
    z-index: 1;
}

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.plan {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan:hover::before {
    opacity: 1;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.plan-featured {
    border: 2px solid rgba(16, 185, 129, 0.3);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.9);
}

.plan-featured::before {
    opacity: 1;
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
}

.period {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
}

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

.plan-features li {
    padding: 0.75rem 0;
    color: #475569;
    position: relative;
    padding-left: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.125rem;
}

.setup-fee {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.setup-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.pilot-discount {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.feature {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: grayscale(0);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.feature-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.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: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
    letter-spacing: -0.025em;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #10b981;
    transition: all 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #059669;
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

/* Trust Section */
.trust-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.trust-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.trust-description {
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 30%, #047857 60%, #065f46 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #10b981;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.final-cta .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
}

/* Email Form */
.email-form-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.email-form {
    display: grid;
    gap: 2rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand .brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
}

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

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

.footer-link:hover {
    color: #10b981;
    transform: translateY(-1px);
}

.footer-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Print Section */
.print-section {
    display: none;
}

.print-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.qr-standee {
    background: white;
    border: 2px solid #25d366;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.standee-header h3 {
    color: #25d366;
    margin-bottom: 0.5rem;
}

.standee-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.print-qr-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.standee-footer p {
    color: #25d366;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
    color: #1a1a1a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

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

.modal-close:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast-icon {
    font-weight: bold;
}

.toast-message {
    font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-ctas {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .demo-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .business-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .upgrade-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .whatsapp-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile-specific enhancements */
@media (max-width: 767px) {
    .hero {
        padding: 4rem 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .qr-demo-container {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .qr-demo {
        width: 180px;
        height: 180px;
    }
    
    /* Reduce background graphics on mobile */
    .bg-shape {
        opacity: 0.06;
    }
    
    .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
    
    .shape-4, .shape-5 {
        display: none;
    }
    
    .bg-gradient-orb {
        opacity: 0.2;
    }
    
    .orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .orb-3 {
        width: 350px;
        height: 350px;
    }
    
    .bg-grid-pattern {
        opacity: 0.3;
        background-size: 30px 30px;
    }
    
    .business-type {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .business-icon {
        font-size: 3rem;
        padding: 0.75rem;
    }
    
    .feature {
        padding: 2.5rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 3rem;
        padding: 1rem;
    }
    
    .testimonial {
        padding: 2.5rem 1.5rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .whatsapp-feature {
        padding: 2.5rem 1.5rem;
    }
    
    .whatsapp-feature-icon {
        font-size: 2.75rem;
        padding: 1rem;
    }
    
    .section-icon {
        font-size: 3rem;
        padding: 1rem;
    }
    
    .whatsapp-section-title {
        font-size: 1.75rem;
    }
    
    .whatsapp-cta-box {
        padding: 3rem 2rem;
    }
    
    .whatsapp-cta-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .stat-card {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .business-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .upgrade-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .whatsapp-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    #print-qr,
    #print-qr * {
        visibility: visible;
    }
    
    #print-qr {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block !important;
    }
    
    .print-content {
        max-width: none;
        padding: 0;
    }
    
    .qr-standee {
        border: 3px solid #25d366;
        margin: 0;
        padding: 3rem;
    }
    
    .print-qr-image {
        width: 200px;
        height: 200px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    /* Hide animated background graphics for reduced motion */
    .bg-shape,
    .bg-gradient-orb {
        animation: none !important;
        opacity: 0.05 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border-width: 3px;
    }
    
    .faq-question:focus,
    .btn:focus,
    .lang-toggle:focus,
    .whatsapp-cta:focus,
    .footer-link:focus,
    .modal-close:focus {
        outline-width: 3px;
    }
}

/* Focus visible for better keyboard navigation */
.btn:focus-visible,
.lang-toggle:focus-visible,
.whatsapp-cta:focus-visible,
.faq-question:focus-visible,
.footer-link:focus-visible,
.modal-close:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
