:root {
    --bg-color: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #8b5cf6;
    --secondary: #ec4899;
    --accent: #22d3ee;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --cards-bg: #1e293b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Fallback if not loaded, usually system */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-heading);
    /* Using Outfit for a cleaner modern look */
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Ambient Lights Background */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}

.light-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: float 20s infinite alternate;
}

.light-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
    animation: float 25s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent), var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-main);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 50px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Image Card Styling */
.image-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    overflow: visible;
    /* Allow floating UI to stick out */
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.image-card img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.floating-ui {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float-ui 4s infinite ease-in-out;
}

.scan-ui {
    top: 20px;
    left: -20px;
    color: var(--accent);
}

.match-ui {
    bottom: 30px;
    right: -20px;
    animation-delay: 2s;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

@keyframes float-ui {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features */
.features {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--text-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Audience Section */
.audience {
    padding: 100px 5%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.audience-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap-reverse;
}

.audience-text {
    flex: 1;
    min-width: 300px;
}

.audience-image {
    flex: 1;
    min-width: 300px;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.check-list i {
    color: var(--accent);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-row img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.profile-row .rating {
    margin-left: auto;
    font-size: 0.8rem;
}

/* Pricing */
.pricing {
    padding: 100px 20px;
    text-align: center;
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 100px rgba(139, 92, 246, 0.1);
}

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 20px 0;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing p.subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.pricing .disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-primary.glow {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8);
    }

    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.glass-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.glass-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    padding: 50px 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.socials a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--text-muted);
}

.socials a:hover {
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        /* Hide for simple demo, ideally would toggle */
        position: absolute;
        top: 70px;
        right: 0;
        background: #1e293b;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
    }

    .hero {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .audience-container {
        flex-direction: column-reverse;
    }

    .contact-container {
        flex-direction: column;
    }
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.btn-accept {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .float-whatsapp {
        bottom: 90px;
        /* Make space for cookie banner if needed, or just keep it there */
        left: 20px;
    }
}