:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: rgba(36, 36, 36, 0.6);
    --primary: #3cbd28;
    --primary-hover: #309720;
    --text-primary: #FAFAFA;
    --text-secondary: #A3A3A3;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-logo: 'Azonix', 'Outfit', sans-serif; /* Fallback for Azonix if not embedded */
}

/* Reset & BaseStyles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Utility Classes */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    max-width: 1200px;
}

.text-center { text-align: center; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-10 { margin-top: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.text-lg { font-size: 1.125rem; }
.text-light { color: var(--text-secondary); }
.text-primary-color { color: var(--primary); }
.highlight-bold { font-weight: 700; color: #fff; font-size: 1.25rem; }

h1, h2, h3, h4, .headline, .section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Header */
.site-header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: clamp(40px, 8vw, 68px); 
    max-height: 85%; 
    width: auto;
    object-fit: contain;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #FAFAFA;
    border: 1px solid #267819;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    width: 100%;
    max-width: 350px;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(60, 189, 40, 0.4);
}
.glow-effect:hover {
    box-shadow: 0 0 30px rgba(80, 210, 50, 0.6);
}

.micro-proof {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    opacity: 0.8;
}

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Glow */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(60,189,40,0.15) 0%, rgba(18,18,18,0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.headline {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-1, .hero-img-2 {
    width: 95%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* MECHANISM */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* DIFFERENZIATORE */
.differentiator-highlight {
    background: linear-gradient(90deg, transparent, rgba(60,189,40,0.2), transparent);
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    border-top: 1px solid rgba(60,189,40,0.5);
    border-bottom: 1px solid rgba(60,189,40,0.5);
}

/* AUDIENCE GRID */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-item {
    background: transparent;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-placeholder {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.audience-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FEATURES */
.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.feature-image-side {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.blob-shadow {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(60, 189, 40, 0.2);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.features-grid-side {
    flex: 1.5;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.featureCard {
    padding: 1.5rem;
    background: rgba(36, 36, 36, 0.3);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.featureCard:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    transform: translateY(-5px);
}

.featureCard h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.featureCard p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #fff;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-card .minutes {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card .price .rate {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card .description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(60, 189, 40, 0.15);
    background: rgba(36, 36, 36, 0.8);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-footer p {
    color: var(--text-secondary);
}

/* FAQ */
.faq-accordion {
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* FOOTER */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.pulse {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 10px rgba(60, 189, 40, 0.4); }
    to { box-shadow: 0 0 30px rgba(80, 210, 50, 0.8); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .headline { font-size: 3rem; }
    .features-wrapper { flex-direction: column; }
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .headline { font-size: 2.5rem; }
    .subheadline { font-size: 1.1rem; }
    .hero { padding-top: 120px; }
    .section-title { font-size: 2rem; }
    
    .cta-wrapper {
        width: 100%;
        position: sticky;
        bottom: 20px;
        z-index: 50;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .micro-proof { display: none; } /* Hide on mobile if sticky to save space */
    
    .hero-image-wrapper { 
        flex-direction: column; 
        gap: 1.5rem;
    }
    .hero-img-1, .hero-img-2 {
        width: 100%;
    }
}

/* ─── Language Switcher ───────────────────────────────── */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-current:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1e1e1e;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 200;
    max-height: 320px;
    overflow-y: auto;
}

.lang-switcher.open .lang-dropdown {
    display: block;
    animation: dropIn 0.15s ease-out;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.lang-dropdown a.active {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .lang-current span {
        display: none;
    }
    .lang-current {
        padding: 6px 8px;
    }
}
