/* ROOT & RESET */
:root {
    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --secondary: #38bdf8;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.navbar {
    padding: 18px 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.flex-nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--primary); }

/* HERO */
.hero { padding: 80px 0; }
.hero-flex { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.badge {
    background: rgba(16, 185, 129, 0.1); color: var(--primary); padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 20px; border: 1px solid rgba(16, 185, 129, 0.2);
}
.hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-cta { display: flex; align-items: center; gap: 20px; padding-top: 20px; }
.feature-list{ margin-bottom: 15px; list-style: none;}
/* BUTTONS */
.btn { padding: 14px 28px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: 0.3s; cursor: pointer; border: none; display: inline-block; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 15px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--primary-glow); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: white; }
.btn-outline:hover { background: white; color: var(--bg-dark); }
.btn-whatsapp { background: #25d366; color: white; display: flex; align-items: center; gap: 8px; }

/* SECTIONS & GRIDS */
.section { padding: 80px 0; }
.bg-dark { background: #0b1120; }
.section-header.center { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-title { font-size: 2.5rem; margin-bottom: 15px; }
.tag { color: var(--secondary); text-transform: uppercase; font-size: 0.8rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* CARDS & ICONS */
.icon-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.advantage-card { background: var(--bg-card); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.advantage-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.icon-accent { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; display: block; }

/* SUCCESS STORIES */
.story-rating { color: #fbbf24; font-size: 0.8rem; margin-bottom: 15px; display: flex; gap: 4px; }
.story-text { font-style: italic; color: var(--text-dim); margin-bottom: 20px; font-size: 1rem; }
.story-author strong { display: block; color: var(--white); }
.story-author span { color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.author-meta strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    font-weight: 800;
}

.story-text strong {
    color: var(--secondary); /* Highlights the specific product they are praising */
}
/* Winner Card Special Styling */
.winner-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.winner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom-left-radius: 15px;
    color: var(--white);
}

.winner-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2px;
}

.winner-location {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px; display: none;
}

/* Performance Progress Bars */
.performance-metric {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
}

.performance-metric span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dim);
    display: block;
    margin-bottom: 8px;
}

.bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 5px;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.pct {
    color: var(--primary) !important;
    text-align: right;
    font-weight: 800 !important;
}

.winner-card .story-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}
/* TECH STACK */
.tech-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.tech-item { background: rgba(255,255,255,0.03); padding: 15px; border-radius: 10px; font-size: 0.85rem; border-left: 3px solid var(--primary); }

/* VISUALS */
.powerhouse-img { width: 100%; max-width: 550px; border-radius: 20px; animation: float 6s ease-in-out infinite; }
.floating { animation: float 5s ease-in-out infinite; width: 100%; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* FOOTER */
.final-cta-box { background: rgba(16, 185, 129, 0.05); padding: 60px 40px; border-radius: 30px; border: 1px solid rgba(16, 185, 129, 0.1); }
.footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-dim); }
/* Footer Legal Links Container */
.legal-links {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between links */
}

/* Individual Anchor Tags */
.legal-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative; /* For the underline effect */
}

/* Hover State */
.legal-links a:hover {
    color: var(--primary); /* Emerald Green on hover */
    transform: translateY(-1px);
}

/* Optional: Elegant animated underline effect */
.legal-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.legal-links a:hover::after {
    width: 100%;
}
/* Legal Page Styling */
.legal-page {
    background-color: #0f172a;
}

.legal-container {
    padding: 60px 0 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.4);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-notice {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Back to Home Button Link */
.btn-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--primary);
}
/* Container for the image */
.visual-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Specific styling for the Global Tech Image */
.visual-box img {
    width: 100%;           /* Responsive width */
    max-width: 550px;      /* Prevents image from becoming too large */
    height: auto;
    border-radius: 24px;   /* Matches your card corner radius */
    
    /* Adds a soft emerald glow to match the brand */
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.2)); 
    
    /* Smooth floating animation */
    animation: floatingTech 6s ease-in-out infinite;
    
    /* Ensures high quality rendering */
    object-fit: contain;
}

/* Floating animation to give a "holographic" feel */
@keyframes floatingTech {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg); /* Subtle lift and tilt */
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
    .visual-box img {
        max-width: 100%; /* Use full width on smaller screens */
        margin-top: 30px;
    }
}

/* Mobile Adjustments for Legal */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
    .legal-header h1 {
        font-size: 2.2rem;
    }
}
/* Responsive Footer Bar */
@media (max-width: 768px) {
    .legal-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
}
/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .hero-flex, .split-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-cta { justify-content: center; }
    .visual-box { order: -1; }
    .tech-stack { text-align: left; }
}
@media (max-width: 768px) {
    .logo{ font-size: 1.4rem; }
    .btn-whatsapp { justify-content: center;padding: 14px 15px; }
.flex-nav{  gap: 15px; }

    .hero-text h1 { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .footer-bottom-bar { flex-direction: column; gap: 15px; }
}