:root {
    --primary-color: #6C63FF;
    --primary-light: #A5A4FF;
    --secondary-color: #4FC3F7;
    --accent-color: #FF6584;
    --light-color: #F8F9FF;
    --dark-color: #2E3A4D;
    --gray-light: #E2E8F0;
    --gray-medium: #94A3B8;
    --gray-dark: #64748B;
    --success-color: #66BB6A;
    --warning-color: #FFA726;
    --danger-color: #EF5350;
    --white: #FFFFFF;
    --black: #000000;
    
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-light: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 20px -5px rgba(108, 99, 255, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --max-width: 1200px;
    --header-height: 80px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.text-center {
    text-align: center;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.primary-cta {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(108, 99, 255, 0.4);
}

.secondary-cta {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-cta:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i.fa-heart {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo i.fa-sparkle {
    color: #FFD166;
    font-size: 1rem;
    margin-left: -8px;
    margin-top: -15px;
    filter: drop-shadow(0 2px 4px rgba(255, 209, 102, 0.3));
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

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

.nav-cta {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(108, 99, 255, 0.4);
}

.hamburger {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    max-width: 90%;
}

.cta-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    color: var(--primary-color);
}

.hero-illustration {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.chat-bubble {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 15px 20px;
    max-width: 250px;
    transition: var(--transition-slow);
}

.chat-bubble::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
}

.chat-bubble.large {
    top: 0;
    right: 0;
    width: 280px;
    transform: rotate(3deg);
}

.chat-bubble.medium {
    top: 120px;
    right: 120px;
    width: 220px;
    transform: rotate(-2deg);
    z-index: 2;
}

.chat-bubble.small {
    top: 220px;
    right: 30px;
    width: 180px;
    transform: rotate(1deg);
}

.phone-mockup {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 500px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 15px;
    overflow: hidden;
    border: 10px solid var(--black);
}

.screen {
    width: 100%;
    height: 100%;
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease-out;
}

.message.received {
    background: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.sent {
    background: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.typing-indicator {
    display: flex;
    align-self: flex-start;
    gap: 5px;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 18px;
    border-bottom-left-radius: 5px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray-medium);
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 5px;
    font-size: 1.2rem;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--gradient-light);
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.step-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-light);
    z-index: 1;
}

.step {
    display: flex;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: var(--shadow-md);
}

.step-content {
    padding-top: 15px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-icon {
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.demo-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.demo-text {
    flex: 1;
}

.demo-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.demo-text p {
    margin-bottom: 25px;
    color: var(--gray-dark);
}

.demo-chat {
    flex: 1;
    background: var(--light-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.demo-message {
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    max-width: 80%;
}

.demo-message.received {
    background: var(--white);
    border-bottom-left-radius: 5px;
    margin-right: auto;
}

.demo-message.sent {
    background: var(--primary-color);
    color: var(--white);
    border-bottom-right-radius: 5px;
    margin-left: auto;
}

.demo-typing {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-medium);
    font-size: 0.8rem;
    margin-top: 10px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--gray-medium);
    border-radius: 50%;
    animation: typing 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: var(--light-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

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

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-prev, .carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-color);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray-dark);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.share-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.share-options span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo i.fa-heart {
    color: var(--primary-color);
}

.footer-logo i.fa-sparkle {
    color: #FFD166;
    font-size: 1rem;
    margin-left: -8px;
    margin-top: -15px;
}

.footer-mission {
    opacity: 0.7;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.link-group {
    min-width: 150px;
}

.link-group h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group a {
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.9rem;
}

.link-group a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Language Selector */
.lang-floater {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.lang-btn-floating {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.lang-btn-floating:hover {
    transform: scale(1.1);
}

.lang-btn-floating i {
    font-size: 1.2rem;
}

.current-lang {
    font-size: 0.7rem;
    margin-top: 3px;
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.lang-floater:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.lang-option.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-medium);
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--light-color);
    color: var(--danger-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.legal-content {
    padding: 40px;
}

.legal-text h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.legal-text p, .legal-text ul {
    margin-bottom: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.legal-text ul {
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.disclaimer-content {
    text-align: center;
    padding: 40px;
}

.disclaimer-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.disclaimer-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.demo-modal-content {
    padding: 40px;
}

.demo-chat-container {
    margin-bottom: 30px;
}

.demo-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.demo-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.demo-chat-messages::-webkit-scrollbar-track {
    background: var(--light-color);
}

.demo-chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.message .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.message .content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
}

.message.received .content {
    background: var(--light-color);
    border-bottom-left-radius: 5px;
}

.message.sent .content {
    background: var(--primary-color);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.typing-indicator {
    display: flex;
    gap: 10px;
    align-items: center;
}

.typing-indicator .content {
    background: var(--light-color);
    border-bottom-left-radius: 5px;
    padding: 8px 16px;
}

.typing {
    display: flex;
    gap: 5px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-medium);
    border-radius: 50%;
    animation: typing 1.4s infinite both;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-container {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-illustration {
        margin-top: 50px;
    }
    
    .demo-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-container {
        padding-left: 20px;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-line {
        left: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        min-width: 100%;
    }
    
    .footer-links {
        width: 100%;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .lang-floater {
        bottom: 20px;
        right: 20px;
    }
    
    .lang-btn-floating {
        width: 50px;
        height: 50px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}