:root {
    --bg-color: #FAF9F6;
    --bg-light: #FFFFFF;
    --bg-blush: #FDF6F3;
    --primary: #A3B18A;
    --primary-dark: #8C9976;
    --secondary: #E6BEAE;
    --text-main: #333333;
    --text-light: #5E6973;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --radius: 12px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dark-mode {
    --bg-color: #1A1C1E;
    --bg-light: #222528;
    --bg-blush: #1E2225;
    --primary: #5271FF;
    --primary-dark: #3B5BCE;
    --secondary: #6B705C;
    --text-main: #F5F5F5;
    --text-light: #A0A5AA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.dark-mode img { filter: brightness(0.8); transition: filter 0.5s ease; }
.dark-mode .organic-blob { opacity: 0.2; }
.dark-mode .scroll-progress-container { background: rgba(255,255,255,0.05); }
.dark-mode .interactive-card, .dark-mode .impegno-card, .dark-mode .storia-card, .dark-mode .contact-composer {
    background: var(--bg-light); border-color: rgba(255,255,255,0.05);
}
.dark-mode footer {
    background-color: var(--bg-light); border-color: rgba(255,255,255,0.05);
}

.dark-mode .fab-text {
    background-color: var(--bg-light); border-color: rgba(255,255,255,0.1);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}
em { font-style: italic; color: var(--primary); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-blush { background-color: var(--bg-blush); }
.text-center { text-align: center; }

.section-tag {
    display: inline-block; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 500; color: var(--primary); margin-bottom: 1rem;
}
.section-title { font-size: 3rem; margin-bottom: 3rem; color: var(--text-main); }

.btn {
    display: inline-block; padding: 14px 32px;
    border-radius: 50px; font-weight: 500; font-size: 1rem;
    cursor: pointer; transition: var(--transition);
    border: none; text-align: center;
}
.btn-primary {
    background-color: #6C7A59; color: var(--bg-color);
    box-shadow: 0 10px 20px rgba(108, 122, 89, 0.2);
}
.btn-primary:hover {
    background-color: #556246; transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(108, 122, 89, 0.3);
}
.w-100 { width: 100%; }

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 6px;
    background: rgba(238, 214, 196, 0.2); z-index: 9999;
}
.scroll-progress-bar {
    height: 100%; 
    background: var(--primary);
    width: 0%; transition: width 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 6px rgba(163, 177, 138, 0.4);
    border-radius: 0 3px 3px 0;
}

.theme-toggle {
    background: none; border: none; cursor: pointer; color: var(--text-main);
    display: flex; align-items: center; justify-content: center;
    padding: 8px; border-radius: 50%; transition: var(--transition);
}
.theme-toggle:hover { background: rgba(163, 177, 138, 0.1); }

.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; z-index: 1000; transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 15px 5%;
}
.dark-mode .navbar.scrolled {
    background: rgba(26, 28, 30, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; letter-spacing: 1px; }
.logo .dot { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 400; color: var(--text-main); transition: var(--transition); position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background-color: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 25px; height: 2px; background-color: var(--text-main); transition: var(--transition); }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 0 5%; position: relative; overflow: hidden; padding-top: 80px; z-index: 1; }
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 20vh;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    z-index: 0; pointer-events: none;
}
.hero-content { flex: 1; max-width: 600px; z-index: 2; position: relative; }
.hero h1 { font-size: 5rem; margin-bottom: 1.5rem; color: var(--text-main); }
.hero .subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 500px; }
.hero-image { flex: 1; display: flex; justify-content: center; position: relative; z-index: 2; }
.image-wrapper { 
    position: relative; width: 450px; height: 550px; 
    border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; 
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.08); z-index: 10; 
    animation: calming-morph 14s ease-in-out infinite alternate;
    transition: all 0.5s ease;
}
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
@keyframes calming-morph {
    0% { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
    50% { border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%; }
    100% { border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; }
}

/* Organic Background Shapes for Hero */
.organic-blob {
    position: absolute; filter: blur(60px); z-index: -1; opacity: 0.6;
    animation: breathe 8s ease-in-out infinite alternate;
}
.blob-1 {
    top: -10%; right: -5%; width: 600px; height: 600px;
    background-color: var(--secondary); /* Blush/Cipria */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 0s;
}
.blob-2 {
    bottom: -10%; left: 30%; width: 500px; height: 500px;
    background-color: var(--primary); /* Sage */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.3; animation-delay: 2s;
}
.blob-3 {
    bottom: -10%; left: -10%; width: 350px; height: 350px;
    background-color: var(--secondary); filter: blur(50px);
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    animation-delay: 4s; opacity: 0.5; z-index: -1;
}
@keyframes breathe {
    0% { transform: scale(0.95) translate(0, 0); opacity: 0.4; }
    100% { transform: scale(1.05) translate(-20px, 15px); opacity: 0.7; }
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 3rem; margin-bottom: 2rem; }
.about-text p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 1.5rem; }
.blob-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; overflow: hidden;
    width: 100%; max-width: 450px; aspect-ratio: 1; margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    animation: blob-morph 8s ease-in-out infinite alternate;
}
.blob-shape img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blob-morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.interactive-card {
    background: white; border-radius: var(--radius-lg); padding: 3rem 2rem;
    text-align: center; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition); cursor: pointer; overflow: hidden;
    height: 300px; display: flex; flex-direction: column; justify-content: center;
    border: 1px solid rgba(163, 177, 138, 0.1);
}
.interactive-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(163, 177, 138, 0.15); }
.card-front { transition: var(--transition); }
.card-front h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-main); }
.click-hint { font-size: 0.85rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.card-back {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; opacity: 0; pointer-events: none; transition: var(--transition);
}
.card-back p { color: var(--text-light); font-size: 1.05rem; }
.interactive-card.active .card-front { opacity: 0; transform: translateY(-20px); }
.interactive-card.active .card-back { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.toggle-card {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: var(--bg-color); border: none; width: auto; height: auto;
    padding: 8px 24px; border-radius: 30px; font-size: 0.95rem; font-weight: 500;
    color: #6C7A59; cursor: pointer; white-space: nowrap;
    transition: var(--transition); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.interactive-card.active .toggle-card { transform: translateX(-50%); background: var(--secondary); color: var(--text-main); }

.method-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-top: 3rem;}
.step { position: relative; padding-left: 20px; border-left: 2px solid rgba(163, 177, 138, 0.3); }
.step-number { font-family: var(--font-heading); font-size: 3rem; color: var(--secondary); opacity: 0.5; margin-bottom: 0.5rem; line-height: 1; }
.step h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.step p { color: var(--text-light); }

/* Il tuo Cammino */
.cammino-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    position: relative; margin-top: 6rem; padding-bottom: 2rem;
}
.cammino-line {
    position: absolute; top: 30px; left: 12.5%; width: 75%; height: 60px;
    z-index: 0; opacity: 0.8; pointer-events: none;
}
.cammino-step { position: relative; z-index: 1; text-align: center; padding: 0 15px; display: flex; flex-direction: column; align-items: center; }
.cammino-icon {
    width: 60px; height: 60px; margin: 0 auto 1.5rem auto;
    background: var(--bg-light); border: 2px solid var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary); background-color: var(--bg-color);
    box-shadow: 0 10px 20px rgba(163, 177, 138, 0.1); transition: var(--transition);
}
.cammino-step:hover .cammino-icon { transform: scale(1.15); background: var(--secondary); color: white; border-color: var(--secondary); }
.cammino-step h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--text-main); margin-bottom: 0.8rem; font-weight: 500; }
.cammino-step p { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.delay-4 { transition-delay: 1.2s; }
.delay-5 { transition-delay: 1.5s; }
.dark-mode .cammino-icon { background: var(--bg-light); border-color: rgba(255,255,255,0.2); color: var(--secondary); }
.dark-mode .cammino-step:hover .cammino-icon { border-color: var(--primary); background: var(--primary); color: white; }

@media (max-width: 900px) {
    .cammino-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 3rem; }
    .cammino-line { display: none; }
    .cammino-step { transform: none !important; display: flex; flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
    .cammino-icon { margin: 0; flex-shrink: 0; width: 50px; height: 50px; }
    .cammino-step h3 { margin-bottom: 0.3rem; }
    .cammino-grid::before {
        content: ''; position: absolute; top: 0; left: 39px;
        width: 2px; height: 100%;
        background: var(--primary); opacity: 0.3; z-index: 0;
    }
}

/* Impegno Section */
.impegno-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.impegno-card {
    background: white; padding: 3rem 2rem; border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); text-align: center;
    border: 1px solid rgba(163, 177, 138, 0.1);
}
.impegno-icon {
    width: 60px; height: 60px; background: rgba(163, 177, 138, 0.1); color: #6C7A59;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem auto;
}
.impegno-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.impegno-card p { color: var(--text-light); font-size: 1.05rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.contact-info h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-light); margin-bottom: 2rem; font-size: 1.1rem; }
.contact-details { margin-bottom: 2rem; }
.contact-details li { display: flex; align-items: center; gap: 15px; margin-bottom: 1rem; font-size: 1.1rem; }
.contact-details svg { color: var(--primary); }

/* Contact Composer */
.contact-composer { background: white; padding: 3.5rem; border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.03); border: 1px solid rgba(163, 177, 138, 0.1); }
.composer-letter { font-family: var(--font-heading); font-size: 1.7rem; color: var(--text-main); line-height: 2; }
.composer-input, .composer-select { 
    font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary); 
    background: transparent; border: none; border-bottom: 2px dashed var(--primary);
    padding: 0 5px; outline: none; margin: 0 5px; cursor: pointer; transition: var(--transition);
    border-radius: 0; appearance: none; -webkit-appearance: none;
    max-width: 250px; text-align: center; display: inline-block; width: auto;
}
.dark-mode .composer-input, .dark-mode .composer-select { border-bottom-color: rgba(107, 112, 92, 0.5); color: var(--secondary); }
.composer-input::placeholder { color: var(--text-light); opacity: 0.5; font-style: italic; font-weight: 300; }
.composer-input:focus, .composer-select:focus { border-bottom-color: var(--text-main); background: rgba(163, 177, 138, 0.05); }
.composer-select { padding-right: 25px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A3B18A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; text-align: left; max-width: 360px; }
.select-wrapper { white-space: nowrap; }
.mobile-break { display: none; }
.composer-alt { margin-top: 1.5rem; color: var(--text-light); font-size: 0.95rem; text-align: center; }
.composer-link { color: var(--text-light); text-decoration: underline; transition: var(--transition); }
.composer-link:hover { color: var(--primary); }
@media (max-width: 600px) { 
    .composer-letter { font-size: 1.25rem; line-height: 1.9; text-align: left; }
    .composer-input, .composer-select { font-size: 1.25rem; max-width: 100%; border-bottom-style: solid; text-align: left; border-bottom-width: 1px; margin: 0; }
    .composer-input { width: 130px; }
    .need-input { width: 100%; display: block; margin-top: 10px; }
    .email-input { width: 100%; display: block; margin-top: 10px; }
    .select-wrapper { white-space: normal; } 
    .mobile-break { display: block; }
    .contact-composer { padding: 1.5rem; }
}

footer { background-color: white; padding: 2rem 0; text-align: center; border-top: 1px solid #E5E7EB; }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; }
.footer-certification { max-width: 600px; margin: 1.5rem auto 2rem auto; padding: 1.5rem; background: var(--bg-color); border-radius: var(--radius); border: 1px solid rgba(163, 177, 138, 0.2); }
.footer-certification h4 { font-family: var(--font-body); font-size: 0.95rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.footer-certification p { font-size: 0.95rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0; }
footer p { font-size: 0.9rem; color: var(--text-light); }

/* Cookie Popup */
.cookie-popup {
    position: fixed; bottom: 20px; left: 20px; width: calc(100% - 40px); max-width: 420px;
    background: var(--bg-light); border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 10000; padding: 2rem;
    border: 1px solid rgba(163, 177, 138, 0.2);
    transform: translateY(40px); opacity: 0; pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cookie-popup.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.dark-mode .cookie-popup { border-color: rgba(255,255,255,0.05); }
.cookie-popup h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--text-main); }
.cookie-popup p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.5; }
.cookie-buttons { display: flex; gap: 10px; margin-bottom: 1rem; }
.cookie-buttons .btn { padding: 10px 15px; font-size: 0.9rem; flex: 1; display: flex; align-items: center; justify-content: center; }
.btn-secondary { background-color: transparent; color: var(--text-main); border: 1px solid rgba(163, 177, 138, 0.5); }
.btn-secondary:hover { background-color: rgba(163, 177, 138, 0.1); }
.dark-mode .btn-secondary { border-color: rgba(255,255,255,0.2); }
.cookie-policy-link { display: block; text-align: center; font-size: 0.85rem; color: var(--text-light); text-decoration: underline; transition: var(--transition); }
.cookie-policy-link:hover { color: var(--primary); }
@media (max-width: 480px) {
    .cookie-popup { bottom: 10px; left: 10px; width: calc(100% - 20px); padding: 1.5rem; }
    .cookie-buttons { flex-direction: column; }
}

/* Utilities & Animations */
.section-padding { padding: 100px 0; }
.fade-in { opacity: 0; transition: opacity 0.8s ease-out; }
.fade-in.appear { opacity: 1; }
.fade-up { opacity: 0; transform: translateY(15px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.appear { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.parallax-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: visible; z-index: -1; pointer-events: none; }

/* Storie di Trasformazione */
.storie-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.storia-card { background: white; padding: 2.5rem 2rem 2rem; border-radius: var(--radius-lg); position: relative; border: 1px solid rgba(163, 177, 138, 0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: var(--transition); }
.storia-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(163, 177, 138, 0.1); }
.storia-icon { position: absolute; top: -20px; left: 25px; font-family: var(--font-heading); font-size: 5rem; color: var(--secondary); line-height: 1; opacity: 0.6; }
.storia-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; z-index: 1; color: var(--text-main); }
.storia-card strong { color: var(--primary); font-weight: 500; }
.storia-start, .storia-end { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1rem; position: relative; z-index: 1; padding-left: 15px; border-left: 2px solid rgba(163, 177, 138, 0.3); line-height: 1.5; }
.storia-end { border-left-color: var(--primary-dark); margin-bottom: 0; }

/* FAQ Section */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(163, 177, 138, 0.3); margin-bottom: 1rem; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.5rem 0; font-family: var(--font-body); font-size: 1.2rem;
    font-weight: 500; color: var(--text-main); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.5rem; color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--secondary); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.5rem; opacity: 1; }
.faq-answer p { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; }

/* Respiro del Sito (Micro-interaction) */
.site-breath {
    position: fixed; bottom: 115px; right: 30px; z-index: 998;
    width: 65px; height: 65px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; transition: var(--transition);
}
.breath-ring {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid rgba(163, 177, 138, 0.8);
    border-radius: 50%;
    animation: site-breathe-anim 8s ease-in-out infinite;
}
.breath-text {
    font-size: 0.70rem; color: var(--primary-dark); font-style: italic; letter-spacing: 1px;
    text-transform: uppercase; z-index: 1;
    animation: text-breathe-fade 8s ease-in-out infinite; margin-top: 2px;
}
@keyframes site-breathe-anim {
    0%, 100% { transform: scale(0.9); opacity: 0.7; border-width: 1px; }
    50% { transform: scale(1.4); opacity: 0; border-width: 2px; }
}
@keyframes text-breathe-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.dark-mode .breath-ring { border-color: rgba(107, 112, 92, 0.8); }
.dark-mode .breath-text { color: var(--secondary); }

/* Floating Action Button */
.fab-wrapper {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    display: flex; align-items: center; gap: 15px;
    text-decoration: none; cursor: pointer;
}
.fab-text {
    background-color: white; color: var(--text-main);
    padding: 10px 18px; border-radius: 20px; font-size: 0.95rem; font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0; transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none; white-space: nowrap;
    border: 1px solid rgba(163, 177, 138, 0.2);
}
.fab-wrapper:hover .fab-text { opacity: 1; transform: translateX(0); }
.fab-button {
    width: 65px; height: 65px;
    background-color: var(--primary);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    color: white; box-shadow: 0 5px 20px rgba(163, 177, 138, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.fab-wrapper:hover .fab-button {
    transform: scale(1.05); background-color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(163, 177, 138, 0.5);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 4rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero { flex-direction: column; padding-top: 120px; text-align: center; }
    .hero-content { margin-bottom: 3rem; }
    .image-wrapper { width: 350px; height: 400px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background-color: var(--bg-color); flex-direction: column; justify-content: center;
        align-items: center; transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: flex; z-index: 1001; }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .hero h1 { font-size: 2.8rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; margin-bottom: 2rem; }
    .about-text h2, .contact-info h2 { font-size: 2.4rem; }
    .image-wrapper { width: 100%; max-width: 350px; height: 350px; }
    .method-steps, .impegno-grid { gap: 2rem; }
    .cards-grid { gap: 1.5rem; }
    .faq-question { font-size: 1.1rem; padding: 1.2rem 0; }
    .contact-form { padding: 1.5rem; }
    
    .fab-wrapper { bottom: 20px; right: 20px; }
    .fab-button { width: 55px; height: 55px; }
    .fab-button svg { width: 24px; height: 24px; }
    .fab-text { display: none; } /* Hide text hint on mobile to save screen space */
    .site-breath { right: 15px; bottom: 90px; transform: scale(0.85); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
    .about-text h2, .contact-info h2 { font-size: 2rem; }
    .image-wrapper { height: 300px; }
    .btn { padding: 12px 24px; font-size: 0.95rem; }
}
