:root {
    --bg-color: #020617;
    --bg-secondary: #0f172a;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --primary-color: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --primary-hover: #2563eb;
    --accent-color: #ffffff;
    --success-color: #22c55e;
    --danger-color: #ef4444;

    /* Glassmorphism Variables */
    --glass-bg: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.08), transparent 40%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

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

.text-primary {
    color: var(--primary-color);
}

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.w-full {
    width: 100%;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Icons */
i.fa-solid,
i.fa-brands,
i.fa-regular {
    color: var(--primary-color);
}

.btn i {
    color: inherit;
    margin-right: 0.5rem;
}

.feature-item i {
    font-size: 1.25rem;
}

.icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

/* Modern Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-speed);
}

.glass-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: url('assets/hero-pr.webp') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.6));
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px !important;
    /* Centered hero for high conversion */
}



.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 2rem;
    font-weight: 400;
    max-width: 800px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Feature Grid */
/* Feature Grid & Marquee */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.75rem));
        /* Adjust for gap */
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* Widths removed for grid layout */
}

.icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.icon-cross {
    fill: var(--danger-color);
    background: rgba(239, 68, 68, 0.1);
}

.icon-check {
    fill: var(--success-color);
    background: rgba(34, 197, 94, 0.1);
}

.icon-primary {
    fill: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

/* Steps */
.step-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    right: 1.5rem;
    top: 0.5rem;
}

/* Pricing */
.pricing-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.1);
}

.pricing-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
}

.price-display {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 1.5rem 0;
}

.price-display small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Footer & FAQ */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    color: var(--text-muted);
}

details {
    background: Var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    color: var(--accent-color);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-weight: 300;
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

details>div {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Author Section */
.author-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.author-image {
    width: 400px;
    height: 400px;
    background: url('assets/marcos-family.webp') no-repeat center top/cover;
    border-radius: 50%;
    margin: 2rem;
    flex-shrink: 0;
    border: 4px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 92%;
        padding: 0 0.5rem;
    }

    section {
        padding: 3rem 0;
        /* Reduced padding for mobile */
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .hero {
        text-align: center;
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: auto;
        background: url('assets/hero-mobile.webp') no-repeat center center/cover;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.15;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .meta-pill {
        width: auto;
        justify-content: center;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        /* Slightly smaller text to fit 3 in a row if needed */
        padding: 0.5rem 0.8rem;
        /* Slightly tighter padding */
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }

    .step-number {
        position: static;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 3.5rem 1.5rem 2rem;
        border-radius: 16px;
        margin-top: 1rem;
    }

    /* Stack author section properly */
    .container.glass-card,
    .two-col-grid,
    .author-section {
        display: flex;
        /* Fallback/Flex behavior if needed, but grid is usually fine. Let's force stack. */
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .two-col-grid {
        gap: 2rem;
    }

    .author-image {
        width: 250px;
        height: 250px;
        margin: 0 auto 2rem auto;
        border-width: 3px;
    }

    .author-section>div:first-child {
        padding: 2rem !important;
    }

    .container.glass-card>div:last-child {
        padding: 2rem;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
        padding: 1rem;
    }
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-animate.fade-up {
    transform: translateY(30px);
}

.scroll-animate.fade-in {
    /* Just opacity */
}

.scroll-animate.slide-left {
    transform: translateX(-30px);
}

.scroll-animate.slide-right {
    transform: translateX(30px);
}

.scroll-animate.zoom-in {
    transform: scale(0.95);
}

/* Active State */
.scroll-animate.animate-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays for children if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}