/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    /* Colors */
    --primary: #d4af37;
    --primary-dark: #b8962e;
    --secondary: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-light: #e5e5e5;
    --success: #27ae60;
    --whatsapp: #25d366;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    overflow: hidden;
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--primary);
}

.btn-white-outline {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-white-outline:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-gold {
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    padding: 12px 28px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 14px;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1002;
    transition: var(--transition);
    height: 120px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    max-width: 100%;
    gap: auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 1003;
}

.logo .pro {
    color: var(--primary);
    font-size: 0.8em;
    vertical-align: super;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav a.btn-nav {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Logo image in header */
.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 90px;
    width: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding-top: 120px;
    padding-bottom: 60px;
    margin-top: 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 44, 44, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
}

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

.hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.trust-badge svg {
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
}

.section-header.light,
.section-header.light h2,
.section-header.light p {
    color: var(--bg-white);
}

/* ========================================
   PROBLEMA SECTION
   ======================================== */

.problema {
    background: var(--bg-white);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.problema-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.problema-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problema-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    border-radius: 50%;
    color: var(--primary);
}

.problema-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.problema-issue {
    font-style: italic;
    color: #999;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.problema-solution {
    color: var(--text-light);
    line-height: 1.7;
}

.problema-solution strong {
    color: var(--text-dark);
}

/* ========================================
   SOLUZIONE SECTION
   ======================================== */

.soluzione {
    background: var(--bg-light);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

.device-mockup {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.feature:hover .device-mockup {
    transform: perspective(1000px) rotateY(0deg);
}

.feature-reverse .device-mockup {
    transform: perspective(1000px) rotateY(5deg);
}

.feature-reverse:hover .device-mockup {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-screen {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.demo-content {
    padding: 30px;
}

/* RSVP Demo */
.rsvp-demo .demo-header h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    text-align: center;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-field input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: var(--font-body);
}

.form-field.success input {
    border-color: var(--success);
    background: rgba(39, 174, 96, 0.05);
}

.form-field .check {
    position: absolute;
    right: 12px;
    top: 38px;
    color: var(--success);
    font-weight: bold;
}

.radio-group .radio {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 14px;
}

.radio-group .radio.selected {
    background: var(--success);
    color: white;
}

.sync-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
}

/* Design Demo */
.design-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.design-card {
    text-align: center;
}

.design-preview {
    height: 120px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.design-card.luxury .design-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
}

.design-card.boho .design-preview {
    background: linear-gradient(135deg, #c9ada7 0%, #9a8c98 100%);
}

.design-card.minimal .design-preview {
    background: linear-gradient(135deg, #f5f5f5 0%, #4a5759 100%);
}

.design-card span {
    font-size: 12px;
    font-weight: 600;
}

.customization-panel h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.color-picker {
    display: flex;
    gap: 10px;
}

.color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.color.active {
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Dashboard Demo */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h4 {
    font-size: 1.2rem;
}

.badge-live {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 4px;
}

.recent-activity {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 13px;
}

.activity-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.activity-text {
    flex: 1;
}

.activity-time {
    font-size: 11px;
    color: var(--text-light);
}

/* Feature Content */
.feature-content {
    padding: 20px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.feature-list svg {
    flex-shrink: 0;
    color: var(--success);
}

/* ========================================
   PARTNERSHIP SECTION
   ======================================== */

.partnership {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    color: var(--bg-white);
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-card.highlight {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefit-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-features li {
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.benefit-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

.pricing-cta {
    margin-top: 20px;
    text-align: center;
}

.pricing-cta .btn-gold {
    width: 100%;
}

.partnership-cta {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ========================================
   FORMS
   ======================================== */

.lead-form,
.mini-lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lead-form input,
.lead-form textarea,
.mini-lead-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.lead-form input:focus,
.lead-form textarea:focus,
.mini-lead-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    cursor: pointer;
}

.mini-lead-form {
    flex-direction: row;
}

.mini-lead-form input {
    flex: 1;
}

/* ========================================
   LEAD MAGNET SECTION
   ======================================== */

.lead-magnet {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 80px 0;
}

/* ========================================
   VANTAGGI SECTION
   ======================================== */

.vantaggi {
    padding: 100px 0;
    background: var(--bg-white);
}

.vantaggi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.vantaggio-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fafafa 100%);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.vantaggio-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.vantaggio-emoji {
    font-size: 3.5rem;
    line-height: 1;
}

.vantaggio-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.vantaggio-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.vantaggi-cta {
    text-align: center;
    margin-top: 60px;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.lead-magnet-visual {
    position: relative;
}

.pdf-preview {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.pdf-mockup {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.pdf-preview:hover .pdf-mockup {
    transform: rotate(0deg);
}

.pdf-page {
    position: relative;
}

.pdf-header {
    height: 40px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
    margin-bottom: 20px;
}

.pdf-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
}

.line.short {
    width: 60%;
}

.download-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite;
}

.lead-magnet-text h2 {
    margin-bottom: 20px;
}

.lead-magnet-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.checklist-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.checklist-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.checklist-features svg {
    flex-shrink: 0;
    color: var(--success);
}

/* ========================================
   COLLEZIONI SECTION
   ======================================== */

.collezioni {
    background: var(--bg-white);
}

.collezioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.collezione-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.collezione-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.collezione-image {
    height: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.elegance-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
}

.wildlove-bg {
    background: linear-gradient(135deg, #c9ada7 0%, #9a8c98 100%);
}

.metropolitan-bg {
    background: linear-gradient(135deg, #000000 0%, #ff6b6b 100%);
}

.collezione-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.collezione-content {
    padding: 30px;
}

.collezione-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.collezione-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.collezione-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
}

.collezione-colors {
    display: flex;
    gap: 10px;
}

.collezione-colors .color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
}

.collezioni-footer {
    text-align: center;
    margin-top: 60px;
}

.collezioni-footer p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* ========================================
   AFFILIAZIONE SECTION
   ======================================== */

.affiliazione {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.affiliazione-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.affiliazione-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--secondary);
}

.affiliazione-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.affiliazione-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(44, 44, 44, 0.8);
}

/* ========================================
   CONTATTI SECTION
   ======================================== */

.contatti {
    background: var(--bg-light);
}

.contatti-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contatti-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contatti-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-method.highlight {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1fa855 100%);
    color: white;
}

.method-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
}

.contact-method.highlight .method-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.method-icon.whatsapp {
    background: rgba(255, 255, 255, 0.2);
}

.method-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-method.highlight .method-content h4,
.contact-method.highlight .method-content a {
    color: white;
}

.method-content a {
    color: var(--primary);
    font-weight: 600;
}

.method-content a:hover {
    text-decoration: underline;
}

.availability {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.contatti-form {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contatti-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Layout interno delle sezioni link del footer */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .feature,
    .contatti-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .device-mockup,
    .feature-reverse .device-mockup {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        padding-top: 20px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
        word-wrap: break-word;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .logo {
        font-size: 1rem;
        word-wrap: break-word;
        position: relative;
        z-index: 1003;
    }
    
    .logo-img {
        height: 65px;
        width: auto;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 120px;
        left: -100%;
        right: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a.btn-nav {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        border-bottom: none;
        background: var(--primary);
        color: var(--secondary);
        border-radius: 4px;
        font-size: 12px;
        margin-top: 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .problema-grid,
    .collezioni-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vantaggi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vantaggio-emoji {
        font-size: 2.5rem;
    }
    
    .vantaggio-title {
        font-size: 1.2rem;
    }
    
    .vantaggio-description {
        font-size: 0.9rem;
    }
    
    .feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contatti-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .design-samples {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-box,
    .contatti-form {
        padding: 24px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .mini-lead-form {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    body {
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    .header .container {
        padding: 10px 12px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 65px;
        width: auto;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .problema-card,
    .collezione-card {
        padding: 20px 16px;
    }
    
    .benefit-card {
        padding: 24px 16px;
    }
    
    .feature-badge {
        font-size: 10px;
    }
    
    .feature-list li {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        line-height: 1.3;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        line-height: 1.4;
    }
    
    .btn span {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .btn svg {
        flex-shrink: 0;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
    }
    
    .contatti-form h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   COLLECTION MODAL
   ======================================== */

.collection-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.collection-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Layout per consentire scroll interno del corpo */
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.modal-content.modal-fullscreen {
    max-width: 95vw;
    width: 95vw;
    height: 90vh;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.modal-header {
    padding: 40px 30px 20px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
}

.modal-body {
    padding: 30px;
    text-align: center;
    /* Rende la sezione scorrevole se i contenuti sono lunghi */
    flex: 1;
    overflow-y: auto;
}

.modal-body.modal-preview {
    padding: 0;
    flex: 1;
    overflow: hidden;
}

.modal-body p {
    margin: 0 0 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1rem !important;
}

.modal-footer {
    padding: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.modal-footer-minimal {
    padding: 15px 20px;
    gap: 10px;
}

.modal-footer a,
.modal-footer button {
    flex: 1;
    min-width: 120px;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
        width: calc(100% - 40px);
    }
    
    .modal-content.modal-fullscreen {
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .modal-footer-minimal {
        padding: 10px 15px;
    }
    
    .modal-footer a,
    .modal-footer button {
        flex: 1;
    }
}
