:root {
    --bg-color: #1d1d1d;
    --text-main: #FFFFFF;
    --text-muted: #D0C0E0;
    --primary: #ff8400;
    --primary-glow: rgba(255, 132, 0, 0.4);
    --secondary: #452168;
    --accent: #ff8400;
    --glass-bg: rgba(69, 33, 104, 0.2);
    --glass-border: rgba(255, 132, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
}

/* Removed Orbs */

/* Glass panel utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Typography & Buttons */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.cta-btn.primary {
    background: var(--primary);
    color: white;
}

.cta-btn.primary:hover {
    background: #e67600;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--text-muted);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-btn.small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Navbar */
.minimal-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 35px;
    object-fit: contain;
}

.name-tag-img {
    height: 20px;
    object-fit: contain;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

/* Header */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    padding-top: 100px;
    gap: 5%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

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

.mockup-card {
    width: 350px;
    border-radius: 20px;
    padding: 1rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.chat-bubble {
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    max-width: 80%;
}

.chat-bubble.bot {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.chat-bubble.bot.highlight {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.chat-bubble.user {
    background: var(--primary);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.mockup-body {
    display: flex;
    flex-direction: column;
}

/* Features */
.features-section {
    padding: 6rem 10%;
}

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

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Assistant */
.assistant-section {
    padding: 6rem 10%;
    display: flex;
    align-items: center;
    gap: 5%;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 1rem;
}

.assistant-content {
    flex: 1;
}

.assistant-content .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.assistant-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mode-toggles {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 30px;
    display: inline-flex;
}

.mode-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.mode-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mode-description {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    font-size: 1rem;
    color: #ddd;
}

.chat-interface {
    width: 400px;
    height: 500px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-header .status {
    font-size: 0.8rem;
    color: #00f2fe;
}

.mode-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chat-window {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.chat-window::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input button:hover {
    transform: scale(1.05);
}

/* Community */
.community-section {
    padding: 6rem 10%;
    text-align: center;
}

.community-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.events-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.events-slider::-webkit-scrollbar {
    display: none;
}

.event-card {
    min-width: 300px;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    padding: 0.5rem;
    border-radius: 12px;
    color: #FFFFFF;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit';
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 600;
}

.event-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.organizer {
    font-style: italic;
    opacity: 0.8;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    border-radius: 40px 40px 0 0;
    padding: 4rem 10% 2rem;
    margin-top: 4rem;
}

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

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 250px;
}

.footer-contact h3,
.footer-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
}

.contact-form textarea {
    resize: none;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

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

/* WhatsApp Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 450px;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: white;
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1.5rem;
}

.modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.w-full {
    width: 100%;
}

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

@media (max-width: 900px) {

    .hero,
    .assistant-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .minimal-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }

    .nav-links {
        display: none;
    }
}