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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Better text handling for different languages */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #111111);
    position: relative;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.about-text {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-mission {
    font-size: 1.2rem;
    color: #a29bfe;
    font-weight: 500;
    line-height: 1.8;
}

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

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #a29bfe;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.highlight-item p {
    font-size: 1rem;
    color: #b0b0b0;
}

@media (max-width: 992px) {
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: 0 1rem;
    }
    
    .about-description, .about-mission {
        font-size: 1rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(139, 92, 246, 0.8);
    transform: scale(1.1);
}

.modal-image-full {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.image-modal-caption {
    margin-top: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.image-modal-caption h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
}

.legal-section p {
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #333;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #2a2a2a;
    border-color: #8b5cf6;
}

.btn-demo {
    background: #06d6a0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-demo:hover {
    background: #05c490;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px);
    border-bottom-color: rgba(139, 92, 246, 0.3);
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.lang-btn.active {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* Add more space between header and hero */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    animation: float 6s infinite linear;
    opacity: 0.7;
}

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

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 6s;
}

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

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

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 5s;
}

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

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #06d6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
        transform: translateY(0px);
    }
    100% { 
        text-shadow: 0 0 50px rgba(139, 92, 246, 0.6), 0 0 80px rgba(6, 214, 160, 0.3);
        transform: translateY(-2px);
    }
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number.purple {
    color: #8b5cf6;
}

.stat-number.green {
    color: #06d6a0;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex: 1;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* AI Brain */
.ai-brain {
    position: relative;
    z-index: 2;
}

.brain-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: brainPulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(6, 214, 160, 0.3);
}

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.5),
            0 0 60px rgba(6, 214, 160, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            0 0 40px rgba(139, 92, 246, 0.7),
            0 0 80px rgba(6, 214, 160, 0.5);
    }
}

.data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #8b5cf6, transparent);
    animation: streamFlow 3s linear infinite;
}

.stream-1 {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0s;
}

.stream-2 {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(120deg);
    animation-delay: 1s;
}

.stream-3 {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(240deg);
    animation-delay: 2s;
}

@keyframes streamFlow {
    0% { 
        opacity: 0;
        transform: translateX(-50%) rotate(var(--rotation, 0deg)) translateY(0px);
    }
    50% { 
        opacity: 1;
    }
    100% { 
        opacity: 0;
        transform: translateX(-50%) rotate(var(--rotation, 0deg)) translateY(200px);
    }
}

/* Phone Mockups */
.phone-mockups {
    display: flex;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.phone {
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-1 { animation-delay: 0s; }
.phone-2 { animation-delay: 1.3s; }
.phone-3 { animation-delay: 2.6s; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-frame {
    width: 160px;
    height: 320px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #333;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-header {
    height: 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-notch {
    width: 60px;
    height: 20px;
    background: #000;
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.battery {
    font-size: 0.7rem;
}

.phone-content {
    height: calc(100% - 30px);
    background: #f8f9fa;
    overflow-y: auto;
    position: relative;
}

/* Telegram Interface */
.telegram-interface {
    background: #0088cc;
    color: white;
}

.app-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.app-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-messages {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    animation: messageSlide 0.5s ease-out;
}

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

.ai-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: rgba(255, 255, 255, 0.2);
}

.typing-indicator {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.typing-indicator span {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.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); }
    30% { transform: translateY(-10px); }
}

/* Facebook Interface */
.facebook-feed {
    background: #f0f2f5;
}

.facebook .app-icon {
    background: #1877f2;
    color: white;
}

.post-card {
    background: white;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.post-header {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 10px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
}

.post-info {
    flex: 1;
}

.post-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1c1e21;
}

.post-time {
    font-size: 0.8rem;
    color: #65676b;
}

.post-content {
    padding: 0 12px 12px;
}

.post-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #1c1e21;
    margin: 0 0 10px 0;
}

.post-image {
    width: 100%;
    height: 120px;
    background: #e4e6ea;
    border-radius: 8px;
    margin-top: 10px;
}

.post-actions {
    display: flex;
    gap: 15px;
    padding: 8px 12px;
    border-top: 1px solid #e4e6ea;
    font-size: 0.8rem;
    color: #65676b;
}

/* Instagram Interface */
.instagram-feed {
    background: #000;
    color: white;
}

.instagram .app-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.story-highlights {
    display: flex;
    gap: 8px;
    padding: 15px;
    border-bottom: 1px solid #262626;
}

.story-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
    position: relative;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #000;
    border-radius: 50%;
}

.story-item.active::before {
    background: linear-gradient(45deg, #f09433, #e6683c);
}

.instagram-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
}

.instagram-image::before {
    content: '🍸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #262626;
}

.action-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.likes {
    font-size: 0.9rem;
    font-weight: 600;
}

.post-caption {
    padding: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.username {
    font-weight: 600;
    margin-right: 5px;
}

.caption {
    color: #a8a8a8;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #0f0f0f;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    border-color: #8b5cf6;
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Examples Section */
.examples {
    padding: 6rem 0;
    background: linear-gradient(135deg, #071026 0%, #0b1220 60%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.examples::before {
    /* subtle decorative overlays to add depth without an external image */
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 10% 20%, rgba(162,155,254,0.06), transparent 12%),
                      radial-gradient(circle at 85% 80%, rgba(6,214,160,0.04), transparent 18%);
}

.examples .section-title, .examples .section-description {
    position: relative; /* ensures above the pseudo overlay */
    z-index: 2;
}

.examples .section-description {
    color: #d0d6df;
}

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

.example-post {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.example-post:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #333;
    position: relative;
}

.post-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.1rem;
}

.post-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.post-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.post-info span {
    color: #888;
    font-size: 0.85rem;
}

.post-platform {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.post-content {
    padding: 1rem;
    margin: 0;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-image {
    margin-top: auto;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #444;
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-placeholder span {
    font-size: 0.9rem;
}

.cocktail-image {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a3a1a 50%, #2a2a2a 100%);
    border: 2px solid #06d6a0;
    position: relative;
    overflow: hidden;
}

.cocktail-image::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 8px 8px 0 0;
    opacity: 0.3;
}

.cocktail-image::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 6px 6px 0 0;
    opacity: 0.5;
}

.post-image-content {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.post-image-content:hover {
    transform: scale(1.02);
}

.post-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    border-top: 1px solid #333;
    background: #222;
    margin: 0;
}

.post-stats span {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-stats i {
    color: #8b5cf6;
}

.examples-cta {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.examples-cta-text {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.examples-disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.disclaimer-text::before {
    content: "ℹ️ ";
    margin-right: 0.5rem;
}

/* Image Source Badges */
.image-source-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.image-source-badge.ai-generated {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.image-source-badge.web-image {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.image-source-badge i {
    font-size: 0.7rem;
}

.post-image {
    position: relative;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #0a0a0a;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0 auto 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #0f0f0f;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-section, .contact-info-section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.form-title, .contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-icon.purple {
    background: #8b5cf6;
}

.contact-icon.green {
    background: #06d6a0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 600;
    color: white;
}

.contact-value {
    color: #cccccc;
}

.demo-section {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.demo-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.demo-description {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #8b5cf6;
}

.footer-contact-item i {
    color: #8b5cf6;
}

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

.footer-copyright {
    color: #888;
}

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

.footer-nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #8b5cf6;
}

/* Demo Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close {
    color: #888;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #8b5cf6;
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a3a 50%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.demo-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.demo-robot {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

.demo-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.demo-post {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.demo-post:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(5px);
}

.demo-post i {
    font-size: 1.2rem;
    color: #8b5cf6;
}

.demo-post span {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

.modal-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.demo-form label {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.demo-form textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-form select {
    cursor: pointer;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        height: 350px;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .phone-mockups {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .phone-frame {
        width: 140px;
        height: 280px;
    }
    
    .ai-brain {
        order: 2;
    }
    
    .phone-mockups {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .demo-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
    }
    
    .demo-visual {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .demo-posts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .demo-post {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
