:root {
    --color-bg: #09122C;
    --color-bg-alt: #0B1736;
    --color-text: #F3F4F6;
    --color-text-muted: #9CA3AF;
    --color-accent-green: #128C7E;
    --color-accent-green-hover: #075E54;
    --color-accent-neon: #25D366;
    --color-accent-cyan: #00D2FF;
    --color-accent-purple: #9D4EDD;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Typography */
h1, h2, h3, .brand-logo {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.brand-emblem-svg {
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.highlight {
    color: var(--color-accent-cyan);
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

/* Background Blobs for Refraction */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: drift 20s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-accent-purple);
}

.blob-2 {
    top: 40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: var(--color-accent-cyan);
    animation-delay: -5s;
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: var(--color-accent-green);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Glassmorphism Panel - PRO */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Button - Pill Style */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-accent-green);
    color: #ffffff;
    padding: 22px 48px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--color-accent-green-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
    background-image: linear-gradient(to bottom, rgba(9, 18, 44, 0.5), rgba(9, 18, 44, 0.9)), url("hero_bg.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 900px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    color: #FFFFFF;
}

.main-headline {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.sub-headline {
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Video Testimonial Placeholder */
.video-testimonial-wrapper {
    margin: 40px auto;
    max-width: 500px;
}

.video-placeholder {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--color-accent-green);
}

.play-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.video-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.video-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.video-duration {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Social Proof Bar */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stars-inline {
    color: #FBBF24;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.social-proof span {
    font-size: 0.95rem;
    color: var(--color-text);
}

.social-proof strong {
    color: #fff;
    font-weight: 700;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FEATURES SECTION */
.features {
    padding: 120px 0;
    background-color: transparent; /* Lets blobs show through */
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 70px;
}

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

.feature-card {
    padding: 50px 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--color-accent-cyan), #0055FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.25);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 120px 0;
    background-color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-meta {
    flex-grow: 1;
}

.author {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.2;
}

.verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.stars {
    color: #FBBF24;
    font-size: 1.3rem;
}

.quote {
    font-size: 1.2rem;
    color: #e5e7eb;
    line-height: 1.7;
    font-style: italic;
}

/* FINAL CTA SECTION */
.final-cta {
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.final-cta h2 {
    font-size: 3.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-headline { font-size: 3.2rem; }
    .sub-headline { font-size: 1.2rem; }
    
    .btn-whatsapp {
        width: 100%;
        padding: 20px 24px;
        font-size: 1.2rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 10px 16px;
        text-align: center;
    }
    
    .section-title { font-size: 2.4rem; }
    
    .feature-card { padding: 40px 24px; }
    .testimonial-card { padding: 30px 24px; }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* PROFESSIONAL FOOTER */
.site-footer {
    background-color: var(--color-bg-alt);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}



.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.brand-name-small {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #FFFFFF;
    margin: 0;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-trust-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--color-accent-cyan);
}

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

.link-column h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.link-column a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.link-column a:hover {
    color: var(--color-accent-cyan);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}
