/* Global Styles & Reset */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --primary: #00e676;
    /* Vibrant Green for conversion */
    --primary-hover: #00c853;
    --accent-blue: #2979ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --font-main: 'Outfit', 'Inter', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --shadow-main: 0 10px 30px -10px rgba(0, 230, 118, 0.15);
    --radius-md: 12px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
}

.btn-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

@media (min-width: 768px) {
    .btn-cta {
        width: auto;
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    /* Mobile first, almost full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at top center, #1a2a1f 0%, var(--bg-dark) 70%);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;

    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Sections General */
.section-padding {
    padding: 5rem 0;
}

/* For Who Section */
.for-who {
    background-color: var(--bg-card);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-text {
    font-weight: 500;
}

/* Activity Section */
.activity-section {
    position: relative;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .social-proof-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.proof-img-container {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.proof-img-container:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-card);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: 0.3s;
}

.trust-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.trust-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.reinforce-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(0deg, var(--bg-dark) 0%, #152018 100%);
    padding: 8rem 0;
}

.closing-line {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #fff;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .btn-cta {
        width: 100%;
        padding: 1rem 2rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}