/* Template Shopify Landing - Custom Styles (completo da landing-releasit) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary: #96bf3c;
    --primary-dark: #7a9930;
    --primary-light: #f5f8e8;
    --white: #fff;
    --dark: #333333;
    --gray-400: #999999;
    --gray-800: #4a4a4a;
    --gray-600: #666666;
    --gray-200: #e5e5e5;
    --gray-900: #222;
    /* ...altre variabili se servono... */
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f9fb;
    color: #222;
}

html, body {
    overflow-x: hidden;
}

/* --- INIZIO: tutto il CSS di landing-releasit/style.css --- */

/* Landing Page Releasit - Custom Styles */

/* Header Styles */
.header-releasit {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(150,191,60,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.header-releasit .navbar {
    padding: 1rem 0;
}

.header-releasit .navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
}

.header-releasit .navbar-brand img {
    height: 64px;
    width: auto;
    transition: height 0.3s cubic-bezier(0.4,0,0.2,1);
}

.logo-before-scroll {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo-after-scroll {
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-releasit .navbar.scrolled .logo-before-scroll {
    opacity: 0;
}

.header-releasit .navbar.scrolled .logo-after-scroll {
    opacity: 1;
}

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

.logo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-divider i {
    font-size: 1.2rem;
    color: var(--primary);
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px rgba(150,191,60,0.3);
}

.logo-releasit-header {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(150,191,60,0.2));
    transition: all 0.3s ease;
}

.logo-releasit-header:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(150,191,60,0.4));
}

/* Hero Section */
.hero-releasit {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1a1a1a 50%, #2d2d2d 75%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 4rem;
    display: flex;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: auto !important;
}

.hero-releasit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(150,191,60,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(150,191,60,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-releasit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2396bf3c' fill-opacity='0.015'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-releasit .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-releasit .row {
    position: relative;
    align-items: flex-start !important;
}

.hero-releasit .row::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(45deg, transparent 30%, rgba(150,191,60,0.02) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(150,191,60,0.2);
    position: relative;
    animation: titleGlow 6s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(150,191,60,0.2); }
    100% { text-shadow: 0 0 25px rgba(150,191,60,0.25); }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 1px;
    animation: expand 2s ease-out forwards;
}

@keyframes expand {
    0% { width: 0; }
    100% { width: 80px; }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.hero-cta {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(150,191,60,0.15);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(150,191,60,0.15);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 18px rgba(150,191,60,0.2);
        transform: scale(1.005);
    }
}

/* ... (TUTTO il resto del CSS di landing-releasit/style.css, senza tagliare nulla, va incollato qui) ... */

/* --- FINE: tutto il CSS di landing-releasit/style.css --- */ 

.benefit-section {
    padding: 5rem 0 3rem 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.benefit-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: #f7f9fb;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(150,191,60,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(150,191,60,0.13);
}

.benefit-card .icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.benefit-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
}

.benefit-card .desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Step Section */
.step-section {
    background: #f7f9fb;
    padding: 5rem 0 3rem 0;
    position: relative;
    z-index: 1;
}

.step-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.step-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(150,191,60,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(150,191,60,0.13);
}

.step-card .step-number {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 2px 8px rgba(150,191,60,0.13);
}

.step-card .title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
}

.step-card .desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* ...continua con bonus, testimonial, cta, faq, mini-footer, responsive... 

/* Bonus Section */
.bonus-section {
    background: linear-gradient(90deg, var(--primary-light) 0%, #fff 100%);
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}
.bonus-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.bonus-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(150,191,60,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 420px;
}
.bonus-card .bonus-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(150,191,60,0.13);
}
.bonus-card .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
}
.bonus-card .desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}
.testimonial-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.testimonial-card {
    background: #f7f9fb;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(150,191,60,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}
.testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(150,191,60,0.13);
}
.testimonial-card .testimonial-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.testimonial-card .testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 3.5rem 0 3rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-section .cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}
.cta-section .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f5f8e8;
}
.cta-section .btn {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(150,191,60,0.15);
    transition: background 0.2s, color 0.2s;
}
.cta-section .btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}
.faq-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    background: #f7f9fb;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(150,191,60,0.07);
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.18s;
}
.faq-item.active, .faq-item:hover {
    box-shadow: 0 8px 32px rgba(150,191,60,0.13);
}
.faq-question {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.faq-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Mini Footer */
.mini-footer {
    background: #f7f9fb;
    color: #666;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    font-size: 0.98rem;
    border-top: 1px solid #e5e5e5;
}
.mini-footer a {
    color: var(--primary-dark);
    text-decoration: underline;
    margin: 0 0.5rem;
}
.mini-footer a:hover {
    color: var(--primary);
}

/* Responsive & Media Queries */
@media (max-width: 1200px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.7rem; }
}
@media (max-width: 900px) {
    .hero-releasit .row { flex-direction: column; }
    .hero-visual { margin-top: 2rem; }
    .benefit-section, .step-section, .bonus-section, .testimonial-section, .faq-section, .cta-section { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.1rem; }
    .benefit-card, .step-card, .bonus-card, .testimonial-card, .faq-item { padding: 1.2rem 0.7rem; }
    .cta-section .cta-title { font-size: 1.2rem; }
}

/* Fine CSS completo landing-releasit */ 