:root {
    --primary: #ff6f61;
    --primary-soft: rgba(255, 111, 97, 0.12);
    --secondary: #6c5ce7;
    --secondary-soft: rgba(108, 92, 231, 0.12);
    --text-dark: #2d2a3a;
    --text-muted: #7a7688;
    --bg-soft: #fff8f6;
    --border-soft: #f0e6e3;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    scroll-behavior: smooth;
}

a { text-decoration: none; }

.btn-uni {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-coral {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-coral:hover {
    background: #e85c4f;
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-outline-coral:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.btn-uni.large { padding: 14px 34px; font-size: 17px; }

/* ===================== NAVBAR ===================== */
.navbar-meetyou {
    background: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-soft);
}

.navbar-meetyou .brand img { height: 60px; width: auto; }

/* il pulsante Accedi usa lo stile compatto di mybtn.css, non il .btn-uni grande della pagina */
.navbar-meetyou .btn-uni.btn-blue {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 1rem;
}

.lang-dropdown .dropdown-toggle::after { display: none; }
.flag-icon { width: 44px; height: auto; object-fit: contain; }
.flag-icon-sm { width: 28px; height: auto; object-fit: contain; margin-right: 8px; }

.lang-dropdown .dropdown-menu {
    border: 1px solid var(--border-soft);
    min-width: 190px;
}

/* ===================== HERO ===================== */
.hero {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
}

.hero .eyebrow {
    display: inline-block;
    background: var(--secondary-soft);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== SEZIONI GENERICHE ===================== */
section { padding: 70px 0; }
.bg-soft { background: var(--bg-soft); }

.section-title { text-align: center; max-width: 680px; margin: 0 auto 50px; }

.section-title .eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.section-title h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.section-title p { color: var(--text-muted); font-size: 17px; }

/* ===================== FILOSOFIA ===================== */
.philosophy-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 40px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 42, 58, 0.06);
}

.philosophy-card p { font-size: 18px; color: var(--text-dark); line-height: 1.7; }

/* ===================== INTERESSI ===================== */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.interest-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 26px 14px;
    text-align: center;
    transition: all 0.25s ease;
}

.interest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(108, 92, 231, 0.12);
    border-color: var(--secondary);
}

.interest-card .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary-soft);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}

.interest-card span { font-weight: 600; font-size: 15px; }

/* ===================== PER CHI ===================== */
.audience-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 40px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.audience-card p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ===================== PREZZI ===================== */
.pricing-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 44px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card p { font-size: 17px; opacity: 0.95; line-height: 1.7; }

/* ===================== CTA FINALE ===================== */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-final p { color: var(--text-muted); font-size: 17px; margin-bottom: 26px; }

@media (max-width: 768px) {
    .hero { padding: 60px 0 40px; text-align: center; }
    .hero .lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    section { padding: 50px 0; }
}
