/* ===== VARIABLES ===== */
:root {
    --color-primary: #EA5B0C;
    --color-secondary: #554596;
    --color-accent: #00C896;
    --color-white: #FFFFFF;
    --color-background: #FFFFFF;
    --color-text: #554596;
    --color-text-dark: #000000;
    --color-text-light: #666666;
    --color-hero-green: #45B384;

    --font-family: 'Mont', sans-serif;

    --font-size-h1: 64px;
    --font-size-h2: 54px;
    --font-size-h3: 40px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-size-team-name: 32px;
    --font-size-team-surname: 20px;

    --font-weight-heavy: 900;
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-regular: 400;

    --line-height-heading: 1.15;
    --line-height-body: 1.6;
    --line-height-team: 1.24;

    --container-max-width: 1440px;
    --container-padding-x: 96px;
    --section-spacing: 90px;

    --gap-sm: 10px;
    --gap-md: 32px;
    --gap-lg: 90px;
    --gap-xl: 142px;

    --radius-button: 24px;
    --radius-card: 12px;
    --radius-image: 50%;
    --radius-input: 8px;

    --header-height: 81px;
    --footer-bg: #554596;
    --newsletter-bg: #EA5B0C;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== FONTS ===== */
@font-face {
    font-family: 'Bariol';
    src: url('../fonts/bariol_regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bariol';
    src: url('../fonts/bariol_bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont_Trial-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont_Trial-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont_Trial-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont_Trial-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Bariol', sans-serif;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body);
    color: var(--color-text-dark);
    background-color: var(--color-background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding-x);
    padding-right: var(--container-padding-x);
}

/* ===== TYPOGRAPHY ===== */
h1, .h1 {
    font-family: var(--font-family);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-heavy);
    line-height: var(--line-height-heading);
    color: var(--color-secondary);
}

h2, .h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heavy);
    line-height: var(--line-height-heading);
    color: var(--color-secondary);
}

h3, .h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    color: var(--color-secondary);
}

p {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-text-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 28px;
}
.btn-primary:hover {
    background-color: #00b085;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 15px 26px;
}
.btn-secondary:hover {
    background-color: #3d3278;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-secondary);
    padding: 10px 24px;
    border: 2px solid var(--color-secondary);
}
.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    padding: 10px 24px;
}
.btn-white:hover {
    background-color: #f0f0f0;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heavy);
    line-height: var(--line-height-heading);
    color: var(--color-secondary);
    margin-bottom: var(--gap-md);
}

.section-subtitle {
    font-size: var(--font-size-body);
    color: var(--color-text-dark);
    line-height: var(--line-height-body);
    margin-bottom: var(--gap-md);
}

/* ===== SHARED SECTION HEADER PATTERN ===== */
.chi-siamo-header,
.testimonials-header,
.numeri-header,
.partner-header {
    display: flex;
    align-items: center;
    margin-left: calc(-1 * var(--container-padding-x));
    margin-right: calc(-1 * var(--container-padding-x));
    margin-bottom: 90px;
}

.chi-siamo-line,
.testimonials-header__line,
.numeri-header__line,
.partner-header__line {
    flex: 1;
    height: 6px;
    border-radius: 2px;
}

.chi-siamo-line--purple,
.testimonials-header__line--purple,
.numeri-header__line--purple,
.partner-header__line--purple { background: #554596; }

.chi-siamo-line--green,
.testimonials-header__line--green,
.numeri-header__line--green,
.partner-header__line--green  { background: #45B384; }

.chi-siamo-icon,
.testimonials-header__icon,
.numeri-header__icon,
.partner-header__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.chi-siamo-title,
.testimonials-header__title,
.numeri-header__title,
.partner-header__title {
    font-family: 'Mont', sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

/* Per-header spacing differences */
.chi-siamo-header    { gap: 12px; }
.testimonials-header { gap: 5px; }
.numeri-header       { gap: 6px; }
.partner-header      { gap: 6px; }

/* Per-title padding differences */
.testimonials-header__title { margin: 0 1px; }
.numeri-header__title    { padding: 0 6px; }
.partner-header__title   { padding: 0 6px; }

/* ===== HEADER ===== */
#masthead {
    height: var(--header-height);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
}

.site-header-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation > div > ul,
.main-navigation > ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.main-navigation > div > ul > li,
.main-navigation > ul > li {
    position: relative;
}

.main-navigation a {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    padding: 8px 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.main-navigation .nav-arrow {
    display: block;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.main-navigation .menu-item-has-children:hover .nav-arrow {
    transform: rotate(180deg);
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    background: var(--color-white);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(85, 69, 150, 0.12);
    border-radius: 8px 8px 0 0;
    padding: 8px 0;
    list-style: none;
    z-index: 100;
}

.main-navigation .menu-item-has-children:hover .sub-menu {
    display: block;
}

.main-navigation .sub-menu a {
    font-size: 24px;
    padding: 10px 20px;
    display: block;
}

.main-navigation .sub-menu a:hover {
    background-color: rgba(85, 69, 150, 0.05);
}

.mobile-cta-wrap {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    transition: all var(--transition-fast);
}

/* ===== HERO ===== */
.hero-section {
    padding-top: 73px;
    padding-bottom: 92px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 461fr 590fr;
    align-items: center;
    gap: 90px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title {
    font-family: 'Mont', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 115%;
    color: var(--color-secondary);
    margin: 0 0 18px;
    max-width: 381px;
}

.hero-separator {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.hero-sep-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
}

.hero-sep-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.hero-sep-lines {
    display: flex;
    align-items: center;
    height: 6px;
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
}

.hero-sep-purple {
    display: block;
    width: 114px;
    height: 6px;
    background: #554596;
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-sep-green {
    display: block;
    flex: 1;
    height: 6px;
    background: var(--color-hero-green);
    border-radius: 2px;
    margin-left: -47px;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: var(--color-secondary);
    margin: 0;
}

.hero-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--color-secondary);
    margin: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border-radius: 30px;
    padding: 11px 28px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid var(--color-hero-green);
}

.btn-hero-primary {
    color: #ffffff;
    background: var(--color-hero-green);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-hero-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.btn-hero-outline {
    color: var(--color-hero-green);
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-hero-outline:hover {
    background: var(--color-hero-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 590px;
    height: auto;
    object-fit: contain;
}

/* ===== NEWSLETTER BAR ===== */
.newsletter-bar {
    background: #EA5B0C;
    padding: 32px 96px 32px 77px;
    min-height: 107px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter-bar-inner {
    width: 100%;
    max-width: 1247px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 142px;
}

.newsletter-heading {
    font-family: 'Mont', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-form-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    flex-shrink: 0;
}

/* Green Forms plugin overrides */
.newsletter-bar .leform-inline.leform-container {
    max-width: none !important;
    margin: 0 !important;
    width: 100%;
}

.newsletter-bar .leform-form.leform-form-1 {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.newsletter-bar .leform-form-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 26px;
}

.newsletter-bar .leform-form-1 .leform-element {
    padding: 0 !important;
    margin: 0 !important;
}

.newsletter-bar .leform-form-1 .leform-element .leform-column-label {
    display: none !important;
}

.newsletter-bar .leform-form-1 .leform-element .leform-column-input {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.newsletter-bar .leform-form-1 .leform-element label.leform-description {
    display: none !important;
}

.newsletter-bar .leform-form-1 .leform-element div.leform-input {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.newsletter-bar .leform-form-1 .leform-element div.leform-input input[type='email'] {
    width: 376px !important;
    height: 54px !important;
    background: transparent !important;
    border: 1px solid #ffffff !important;
    border-radius: 30px !important;
    padding: 11px 96px !important;
    font-family: 'Bariol', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

.newsletter-bar .leform-form-1 .leform-element div.leform-input input[type='email']::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

.newsletter-bar .leform-form-1 .leform-element .leform-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 159px !important;
    height: 54px !important;
    background: #ffffff !important;
    background-image: none !important;
    border: 2px solid #ffffff !important;
    border-radius: 30px !important;
    padding: 11px 28px !important;
    font-family: 'Bariol', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    color: #EA5B0C !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: opacity 0.2s ease !important;
    white-space: nowrap;
}

.newsletter-bar .leform-form-1 .leform-element .leform-button:hover {
    opacity: 0.9 !important;
    background: #ffffff !important;
    color: #EA5B0C !important;
}

/* ===== LINKEDIN FEED ===== */
.linkedin-section {
    padding: 92px 0 80px;
}

.section-header--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-bottom: 38px;
}

.section-header--center .section-title {
    font-family: 'Mont', sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 115%;
    color: var(--color-secondary);
    text-align: center;
    margin: 0;
}

.hero-separator--center {
    width: 461px;
    justify-content: center;
}

.linkedin-widget-wrap {
    width: 100%;
}

@media (max-width: 991px) {
    .linkedin-section { padding: 48px 0 56px; }
    .section-header--center .section-title { font-size: 38px; }
    .hero-separator--center { width: 100%; max-width: 340px; }
}

@media (max-width: 767px) {
    .linkedin-section { padding: 36px 0 44px; }
    .section-header--center .section-title { font-size: 28px; }
    .hero-separator--center { max-width: 260px; }
}

/* ===== FOOTER ===== */
#colophon {
    background: var(--footer-bg);
    color: var(--color-white);
}

.footer-inner {
    width: 100%;
    max-width: 1207px;
    margin: 0 auto;
    padding: 52px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li a {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    padding: 0 20px;
    white-space: nowrap;
    transition: opacity var(--transition-fast);
}

.footer-nav li a:hover {
    opacity: 0.75;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-legal,
.footer-copyright {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-white);
    text-align: center;
    line-height: 1;
    margin: 0;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-image);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

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

/* ===== UTILITY CLASSES ===== */
.text-primary   { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent    { color: var(--color-accent); }
.text-white     { color: var(--color-white); }
.text-center    { text-align: center; }
.text-left      { text-align: left; }

.bg-primary   { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent    { background-color: var(--color-accent); }
.bg-light     { background-color: #F8F7FF; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1440px) {
    :root { --container-padding-x: 60px; }
}

@media (max-width: 1200px) {
    :root {
        --container-padding-x: 40px;
        --font-size-h1: 52px;
        --font-size-h2: 42px;
        --font-size-h3: 32px;
    }
}

@media (max-width: 991px) {
    :root {
        --container-padding-x: 24px;
        --section-spacing: 60px;
        --font-size-h1: 42px;
        --font-size-h2: 34px;
        --font-size-h3: 26px;
    }

    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        justify-content: center;
        margin-top: 8px;
    }

    .hero-image img {
        max-width: 420px;
        width: 100%;
    }

    .hero-title {
        font-size: 42px;
        max-width: 100%;
    }

    .newsletter-bar {
        padding: 32px var(--container-padding-x);
    }

    .newsletter-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .newsletter-form-wrap {
        width: 100%;
    }

    .newsletter-bar .leform-form-inner {
        gap: 16px;
    }

    .newsletter-bar .leform-form-1 .leform-element div.leform-input input[type='email'] {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 18px !important;
        padding: 11px 24px !important;
    }

    .newsletter-bar .leform-form-1 .leform-element .leform-button {
        font-size: 18px !important;
    }

    .header-right .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-right: 16px;
    }

    .menu-toggle span {
        background: var(--color-secondary);
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 16px 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation > ul,
    .main-navigation > div > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-navigation > ul > li,
    .main-navigation > div > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(85, 69, 150, 0.1);
    }

    .main-navigation a {
        padding: 12px 8px;
        font-size: 20px;
    }

    .main-navigation .sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 8px 20px;
        min-width: unset;
    }

    .main-navigation .sub-menu a {
        font-size: 18px;
        padding: 8px 8px;
        color: var(--color-secondary);
        opacity: 1;
    }

    .main-navigation .nav-arrow {
        display: none;
    }

    .mobile-cta-wrap {
        display: block;
        padding: 16px 8px;
    }

    .mobile-cta-wrap .btn {
        background-color: var(--color-secondary);
        color: var(--color-white);
        padding: 10px 24px;
        border-radius: var(--radius-button);
    }

    .header-right {
        position: relative;
        z-index: 1001;
    }

    .admin-bar .main-navigation {
        top: calc(var(--header-height) + 32px);
    }
}

@media (max-width: 767px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 22px;
        --font-size-team-name: 24px;
        --font-size-team-surname: 16px;
    }

    .hero-title { font-size: 36px; }
    .hero-image img { max-width: 320px; }
    .hero-buttons { gap: 12px; }
    .hero-sep-purple { width: 60px; }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 22px;
        font-size: 15px;
    }

    .footer-inner {
        padding: 32px 24px;
        gap: 32px;
    }

    .footer-nav li a {
        font-size: 18px;
        padding: 6px 12px;
    }

    .newsletter-heading { font-size: 20px; }

    .newsletter-bar .leform-form-inner {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px;
    }

    .newsletter-bar .leform-form-1 .leform-element div.leform-input input[type='email'] {
        font-size: 16px !important;
        height: 46px !important;
        padding: 10px 20px !important;
    }

    .newsletter-bar .leform-form-1 .leform-element .leform-button {
        width: 100% !important;
        font-size: 16px !important;
        height: 46px !important;
    }
}

/* ==========================================================================
   CHI SIAMO
   ========================================================================== */

.chi-siamo-section {
    padding: 80px 0 50px;
}

.chi-siamo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 237px;
    flex-shrink: 0;
}

.team-card__photo-outer {
    position: relative;
    width: 237px;
    height: 237px;
    flex-shrink: 0;
}

.team-card__circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    background-image: url('../images/cerchio.png');
    background-size: 104%;
    background-position: center;
}

.team-card__cerchio { display: none; }

.team-card__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card__linkedin {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 2px solid #554596;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition-fast);
    z-index: 2;
}

.team-card__linkedin:hover { background: #554596; }

.team-card__linkedin img {
    width: 14px;
    height: 14px;
    display: block;
    transition: filter var(--transition-fast);
}

.team-card__linkedin:hover img {
    filter: brightness(0) invert(1);
}

.team-card__info {
    margin-top: 17px;
    text-align: center;
    width: 100%;
}

.team-card__name {
    font-family: 'Mont', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 124%;
    color: #554596;
    margin: 0;
}

.team-card__position {
    font-size: 20px;
    font-weight: 400;
    line-height: 124%;
    color: #554596;
    margin: 0;
}

@media (max-width: 1100px) {
    .chi-siamo-section  { padding: 60px 0 70px; }
    .chi-siamo-title    { font-size: 42px; }
    .chi-siamo-header   { margin-bottom: 48px; }
    .chi-siamo-grid     { gap: 27px 40px; }
}

@media (max-width: 767px) {
    .chi-siamo-section  { padding: 44px 0 52px; }
    .chi-siamo-icon     { width: 24px; height: 24px; }
    .chi-siamo-header   { gap: 4px; margin-bottom: 36px; flex-wrap: wrap; justify-content: center; }

    .chi-siamo-title {
        width: 100%;
        order: 2;
        font-size: 32px;
        text-align: center;
        padding: 8px 0 0;
        white-space: normal;
    }

    .chi-siamo-header .chi-siamo-icon:last-of-type { display: none; }
    .chi-siamo-grid     { gap: 24px; }
    .team-card          { width: 150px; }
    .team-card__photo-outer { width: 150px; height: 150px; }
    .team-card__linkedin { width: 26px; height: 26px; }
    .team-card__linkedin img { width: 11px; height: 11px; }
    .team-card__name     { font-size: 20px; }
    .team-card__position { font-size: 14px; }
    .team-card__info     { margin-top: 10px; }
}

@media (max-width: 420px) {
    .team-card { width: calc(50% - 12px); }
    .team-card__photo-outer { width: 100%; height: auto; aspect-ratio: 1; }
}

/* ==========================================================================
   ADVISORY BOARD
   ========================================================================== */

.advisory-section {
    padding: 50px 0 90px;
}

.advisory-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-bottom: 50px;
}

.advisory-title {
    font-family: 'Mont', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    text-align: center;
    margin: 0;
}

.advisory-header__lines {
    display: flex;
    align-items: center;
    width: 342px;
}

.advisory-header__icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.advisory-header__lines-track {
    position: relative;
    flex: 1;
    height: 4px;
}

.advisory-header__line {
    position: absolute;
    height: 4px;
    border-radius: 2px;
}

.advisory-header__line--green {
    background: #45B384;
    left: 5px;
    right: 0;
}

.advisory-header__line--purple {
    background: #554596;
    left: 5px;
    width: 85px;
    z-index: 1;
}

.advisory-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.advisory-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 10px;
    width: calc(25% - 15px);
    min-height: 100px;
    background: #C6E7DA;
    border-radius: 15px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.advisory-card__linkedin {
    width: 38.5px;
    height: 38.5px;
    min-width: 38.5px;
    border-radius: 50%;
    border: 2.33px solid #554596;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.advisory-card__linkedin:hover { background: #554596; }

.advisory-card__linkedin img {
    width: 16px;
    height: 16px;
    display: block;
    transition: filter var(--transition-fast);
}

.advisory-card__linkedin:hover img {
    filter: brightness(0) invert(1);
}

.advisory-card__linkedin--no-link {
    cursor: default;
    pointer-events: none;
}

.advisory-card__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
}

.advisory-card__first-name,
.advisory-card__last-name {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    line-height: 124%;
    color: #554596;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.advisory-card__first-name {
    font-size: 32px;
    margin-top: -5px;
}

.advisory-card__last-name {
    font-size: 20px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .advisory-card {
        width: calc(50% - 10px);
        padding: 12px;
        gap: 8px;
        min-height: 70px;
    }

    .advisory-card__linkedin {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .advisory-card__linkedin img { width: 12px; height: 12px; }
    .advisory-card__first-name { font-size: 18px; margin-top: -3px; }
    .advisory-card__last-name  { font-size: 12px; }
}

/* ==========================================================================
   VISION & MISSION
   ========================================================================== */

.vision-mission-section {
    padding: 105px 0 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    margin-left: calc(-1 * var(--container-padding-x));
    margin-right: calc(-1 * var(--container-padding-x));
}

.vm-star {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    margin: 15px 9px 0;
    align-self: start;
}

.vm-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px 40px;
    gap: 23px;
}

.vm-column__header {
    display: flex;
    align-items: center;
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
}

.vm-line {
    flex: 1;
    height: 6px;
    border-radius: 2px;
    min-width: 0;
}

.vm-line--purple { background: #554596; }
.vm-line--green  { background: #45B384; }

.vm-column__title {
    font-family: 'Mont', sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
    padding: 0 16px;
}

.vm-column__icon {
    width: 145px;
    height: 145px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.vm-column__content,
.vm-column__content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #554596;
    margin: 0;
}

@media (max-width: 991px) {
    .vision-mission-section { padding: 50px 0 60px; }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-right: 0;
    }

    .vm-star { display: none; }
    .vm-column { padding: 32px 24px; }
    .vm-column__title { font-size: 42px; padding: 0 12px; }
    .vm-column__icon { width: 120px; height: 120px; }

    .vm-column__content,
    .vm-column__content p { font-size: 20px; line-height: 24px; }
}

@media (max-width: 767px) {
    .vision-mission-section { padding: 40px 0 50px; }
    .vm-column { padding: 24px 20px; gap: 12px; }
    .vm-column__title { font-size: 32px; }
    .vm-column__icon { width: 100px; height: 100px; }

    .vm-column__content,
    .vm-column__content p { font-size: 16px; line-height: 20px; }
}

/* ==========================================================================
   TESTIMONIANZE
   ========================================================================== */

.testimonials-section {
    padding: 113px 0 0;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 876px;
    margin: 0 auto 30px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}

.testimonial-slide--active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-slide__author {
    font-family: 'Mont', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 124%;
    color: #554596;
    text-align: center;
    margin: 0;
}

.testimonial-slide__role {
    display: block;
    font-size: 24px;
    color: #45B384;
}

.testimonial-slide__text,
.testimonial-slide__text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    color: #554596;
    text-align: center;
    max-width: 756px;
    margin: 0;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonials-dot {
    width: 45px;
    height: 4px;
    background: #C6E7DA;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.testimonials-dot--active { background: #45B384; }
.testimonials-dot:hover   { background: #a3d4c3; }

@media (max-width: 991px) {
    .testimonials-section { padding: 60px 0; }
    .testimonials-header  { margin-bottom: 50px; }
    .testimonials-header__title { font-size: 42px; }
    .testimonials-slider  { min-height: 280px; }
    .testimonial-slide__author { font-size: 28px; }
    .testimonial-slide__role   { font-size: 20px; }

    .testimonial-slide__text,
    .testimonial-slide__text p { font-size: 20px; line-height: 24px; }
}

@media (max-width: 767px) {
    .testimonials-section { padding: 40px 0; }

    .testimonials-header {
        margin-bottom: 32px;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonials-header__title {
        width: 100%;
        order: 2;
        font-size: 32px;
        text-align: center;
        padding: 8px 0 0;
        white-space: normal;
    }

    .testimonials-header .testimonials-header__icon:last-of-type { display: none; }
    .testimonials-header__icon { width: 24px; height: 24px; }
    .testimonials-slider  { min-height: 220px; margin-bottom: 20px; }
    .testimonial-slide    { gap: 16px; }
    .testimonial-slide__author { font-size: 22px; }
    .testimonial-slide__role   { font-size: 18px; margin-top: -10px; }

    .testimonial-slide__text,
    .testimonial-slide__text p { font-size: 16px; line-height: 20px; }

    .testimonials-dot { width: 32px; height: 3px; }
}

/* ==========================================================================
   I NUMERI DI BOOSTABRUZZO
   ========================================================================== */

.numeri-section {
    padding: 108px 0 0;
}

.numeri-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.numeri-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 415px;
}

.numeri-item__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.numeri-item__value {
    display: block;
    font-family: 'Mont', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 115%;
    color: #EA5B0C;
    text-align: center;
}

.numeri-item__label {
    display: block;
    font-family: 'Mont', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    text-align: center;
}

@media (max-width: 991px) {
    .numeri-section { padding: 60px 0; }
    .numeri-header  { margin-bottom: 50px; }
    .numeri-header__title { font-size: 42px; }
    .numeri-item__value   { font-size: 38px; }
    .numeri-item__label   { font-size: 22px; }
    .numeri-counter       { gap: 24px; }
}

@media (max-width: 767px) {
    .numeri-section { padding: 44px 0; }

    .numeri-header {
        margin-bottom: 36px;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .numeri-header__title {
        width: 100%;
        order: 2;
        font-size: 32px;
        text-align: center;
        padding: 8px 0 0;
        white-space: normal;
    }

    .numeri-header .numeri-header__icon:last-of-type { display: none; }
    .numeri-header__icon { width: 24px; height: 24px; }
    .numeri-counter { flex-direction: column; gap: 36px; }
    .numeri-item    { max-width: 100%; }
    .numeri-item__value { font-size: 42px; }
    .numeri-item__label { font-size: 24px; }
}

/* ==========================================================================
   I NOSTRI PARTNER
   ========================================================================== */

.partner-section {
    padding: 146px 0 145px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 60px;
    max-width: 954px;
    margin: 0 auto;
    width: 100%;
}

.partner-logo {
    display: flex;
    align-items: center;
}

.partner-logo img {
    height: 115px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity var(--transition-fast);
}

.partner-logo a {
    display: block;
    line-height: 0;
}

.partner-logo a:hover img { opacity: 0.8; }

@media (max-width: 991px) {
    .partner-section { padding: 60px 0; }
    .partner-header  { margin-bottom: 50px; }
    .partner-header__title { font-size: 42px; }
    .partner-logos   { gap: 40px 60px; }
    .partner-logo img { max-height: 90px; }
}

@media (max-width: 767px) {
    .partner-section { padding: 44px 0; }

    .partner-header {
        margin-bottom: 36px;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-header__title {
        width: 100%;
        order: 2;
        font-size: 32px;
        text-align: center;
        padding: 8px 0 0;
        white-space: normal;
    }

    .partner-header .partner-header__icon:last-of-type { display: none; }
    .partner-header__icon { width: 24px; height: 24px; }
    .partner-logos { gap: 32px 0; justify-content: center; }
    .partner-logo  { width: 50%; }
    .partner-logo img { max-height: 70px; max-width: 140px; }
}

/* ==========================================================================
   GLI ALUMNI PAGE
   ========================================================================== */

.alumni-hero-section {
    padding-top: 73px;
    padding-bottom: 92px;
    overflow: hidden;
}

.alumni-hero__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 90px;
}

.alumni-hero__content {
    display: flex;
    flex-direction: column;
    width: 461px;
    flex-shrink: 0;
}

.alumni-hero__top {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.alumni-hero__title {
    font-family: 'Mont', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    margin: 0;
}

.alumni-hero__top .hero-separator {
    margin-bottom: 0;
}

.alumni-hero__description {
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #554596;
    margin: 0;
}

.alumni-hero__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.alumni-hero__image img {
    width: 100%;
    max-width: 439px;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .alumni-hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .alumni-hero__inner {
        gap: 40px;
    }

    .alumni-hero__content {
        width: 100%;
        max-width: 461px;
    }

    .alumni-hero__title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .alumni-hero-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .alumni-hero__inner {
        flex-direction: column;
        gap: 0;
    }

    .alumni-hero__content {
        width: 100%;
        max-width: 100%;
    }

    .alumni-hero__title {
        font-size: 36px;
    }

    .alumni-hero__image {
        display: none;
    }
}

/* ==========================================================================
   BOOSTCAMP PAGE — HERO
   ========================================================================== */

.bc-hero-section {
    padding-top: 39px;
    padding-bottom: 85px;
}

.bc-hero__content {
    width: 677px;
}

.bc-hero__top .alumni-hero__title {
    margin: 0 0 14px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.bc-hero__separator {
    max-width: 456px;
    margin-bottom: 14px;
}

.bc-hero__description {
    max-width: 636px;
    margin-left: 5px;
}

.bc-hero__desc-text {
    margin: 0 0 14px;
}

.bc-hero__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 0 13px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bc-hero__benefits li {
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #554596;
    padding-left: 14px;
    position: relative;
}

.bc-hero__benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 13px;
    line-height: 18px;
}

.bc-hero-section .alumni-hero__image img {
    max-width: 552px;
}

@media (max-width: 991px) {
    .bc-hero__content {
        width: 100%;
        max-width: 677px;
    }
}

@media (max-width: 767px) {
    .bc-hero__content {
        max-width: 100%;
    }
}

/* ==========================================================================
   BOOSTCAMP PAGE — CTA BANNER
   ========================================================================== */

.bc-cta-section {
    min-height: 169px;
}

.bc-cta__heading {
    width: 591px;
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 41px;
    color: #FFFFFF;
    margin: 0;
    flex-shrink: 0;
}

.bc-cta__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.bc-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 416px;
    height: 48px;
    padding: 11px 28px;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-decoration: underline;
    color: #EA5B0C;
    white-space: nowrap;
    transition: opacity var(--transition-fast);
}

.bc-cta__btn-primary:hover {
    opacity: 0.9;
}

.bc-cta__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 551px;
    height: 48px;
    padding: 11px 28px;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-decoration: underline;
    color: #FFFFFF;
    white-space: nowrap;
    transition: background var(--transition-fast);
}

.bc-cta__btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .bc-cta__heading {
        width: auto;
        font-size: 24px;
    }

    .bc-cta__btn-primary,
    .bc-cta__btn-outline {
        width: 100%;
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .bc-cta__heading {
        font-size: 20px;
    }

    .bc-cta__btn-primary,
    .bc-cta__btn-outline {
        width: 100%;
        height: auto;
        white-space: normal;
        text-align: center;
        font-size: 16px;
        padding: 11px 20px;
    }
}

/* ==========================================================================
   BOOSTCAMP PAGE — STRUTTURA DEL CORSO
   ========================================================================== */

.bc-course-section {
    padding-top: 100px;
    padding-bottom: 178px;
}

.bc-course__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-bottom: 50px;
}

.bc-course__title {
    text-align: center;
    margin: 0;
}

.bc-course__separator {
    margin-bottom: 0;
}

.bc-course__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 589px;
    max-width: 100%;
    margin: 0 auto;
}

.bc-course__divider {
    width: 2px;
    height: 40px;
    background: #45B384;
    flex-shrink: 0;
}

.bc-course__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 60px 10px 10px;
    gap: 20px;
    width: 100%;
    height: 112px;
    border: 2px solid #45B384;
    border-radius: 15px;
    box-sizing: border-box;
    overflow: hidden;
}

.bc-course__card-icon {
    width: 109px;
    height: 92px;
    flex-shrink: 0;
}

.bc-course__card-icon img {
    width: 109px;
    height: 92px;
    display: block;
}

.bc-course__card-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    min-width: 0;
}

.bc-course__card-label {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 115%;
    color: #45B384;
    white-space: nowrap;
    flex-shrink: 0;
}

.bc-course__card-name {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 115%;
    color: #554596;
    min-width: 0;
}

@media (max-width: 767px) {
    .bc-course-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .bc-course__card {
        padding: 8px 16px 8px 8px;
        gap: 12px;
        height: auto;
        min-height: 80px;
    }

    .bc-course__card-icon {
        width: 72px;
        height: 61px;
    }

    .bc-course__card-icon img {
        width: 72px;
        height: 61px;
    }

    .bc-course__card-text {
        gap: 16px;
    }

    .bc-course__card-label {
        font-size: 18px;
    }

    .bc-course__card-name {
        font-size: 14px;
    }
}

/* ==========================================================================
   BOOSTCAMP PAGE — TESTIMONIANZE
   ========================================================================== */

.bc-testimonials-section {
    padding-top: 0;
    padding-bottom: 149px;
}

.bc-testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 124%;
}

.bc-testimonial__program {
    display: block;
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 124%;
    color: #EA5B0C;
}

.bc-testimonial__name {
    display: block;
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 124%;
    color: #554596;
}

.bc-testimonials-section .testimonial-slide__role {
    font-size: 24px;
    margin-top: 0;
}

.bc-testimonials-section .testimonial-slide {
    gap: 30px;
}

@media (max-width: 991px) {
    .bc-testimonial__program  { font-size: 20px; }
    .bc-testimonial__name     { font-size: 26px; }
    .bc-testimonials-section .testimonial-slide__role { font-size: 20px; }
}

@media (max-width: 767px) {
    .bc-testimonial__program  { font-size: 16px; }
    .bc-testimonial__name     { font-size: 20px; }
    .bc-testimonials-section .testimonial-slide__role { font-size: 16px; }
}

/* ==========================================================================
   SOSTIENICI PAGE — HERO
   ========================================================================== */

.sostenici-hero__separator {
    max-width: 630px;
    margin-bottom: 0;
}

.sostenici-hero-section .alumni-hero__image img {
    max-width: 560px;
}

@media (max-width: 767px) {
    .sostenici-hero-section .alumni-hero__image {
        display: none;
    }
}

/* ==========================================================================
   SOSTIENICI PAGE — MODI DI DONARE
   ========================================================================== */

.sostenici-cards-section {
    padding-top: 15px;
    padding-bottom: 172px;
}

.sostenici-cards {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.sostenici-cards__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 54px;
}

.sostenici-card {
    display: flex;
    border: 1px solid #45B384;
    border-radius: 15px;
    text-decoration: none;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
}

.sostenici-card:hover {
    box-shadow: 0 4px 20px rgba(69, 179, 132, 0.25);
    transform: translateY(-2px);
}

.sostenici-card--small {
    flex-direction: column;
    align-items: center;
    padding: 10px 11px 20px;
    gap: 20px;
    width: 387px;
    height: 217px;
    flex: 1;
}

.sostenici-card__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    flex: 1;
    background: #45B384;
    border-radius: 15px;
    box-sizing: border-box;
}

.sostenici-card__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 115%;
    color: #ffffff;
    text-align: center;
}

.sostenici-card__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px;
    gap: 10px;
    width: 100%;
    height: 64px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.sostenici-card__desc {
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    color: #554596;
}

.sostenici-card__icon {
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    width: 47px;
    height: 47px;
}

.sostenici-card__icon img {
    width: 47px;
    height: 47px;
    display: block;
}

.sostenici-card--wide {
    flex-direction: row;
    align-items: center;
    padding: 10px 11px;
    gap: 20px;
    height: 174px;
    width: 100%;
}

.sostenici-card__header--wide {
    padding: 40px 20px;
    width: 365px;
    height: 154px;
    flex: none;
    flex-shrink: 0;
}

.sostenici-card__footer--wide {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
    gap: 12px;
    flex: 1;
    height: 94px;
    box-sizing: border-box;
}

.sostenici-card__wide-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
}

.sostenici-card__wide-label {
    display: block;
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #554596;
}

/* Responsive */
@media (max-width: 1100px) {
    .sostenici-cards__row {
        gap: 30px;
    }
    .sostenici-card--small {
        height: auto;
        min-height: 200px;
    }
    .sostenici-card__footer {
        gap: 20px;
        height: auto;
        padding: 0 16px;
    }
}

@media (max-width: 767px) {
    .sostenici-cards-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .sostenici-cards {
        gap: 20px;
    }
    .sostenici-cards__row {
        flex-direction: column;
        gap: 20px;
    }
    .sostenici-card--small {
        width: 100%;
        height: auto;
    }
    .sostenici-card--wide {
        flex-direction: column;
        height: auto;
        align-items: stretch;
    }
    .sostenici-card__header--wide {
        width: 100%;
        height: auto;
    }
    .sostenici-card__footer--wide {
        height: auto;
        padding: 12px 16px;
    }
    .sostenici-card__title {
        font-size: 24px;
    }
    .sostenici-card__desc {
        font-size: 18px;
    }
    .sostenici-card__icon img {
        width: 36px;
        height: 36px;
    }
}

/* --- ALUMNI GRID --- */

.alumni-grid-section {
    padding-bottom: 80px;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.alumni-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px;
    gap: 15px;
    border: 1px solid #45B384;
    border-radius: 15px;
    min-height: 88px;
    box-sizing: border-box;
    background: #ffffff;
}

.alumni-card:nth-child(3n+2) {
    background: #EEF9F5;
}

.alumni-card__linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38.5px;
    height: 38.5px;
    min-width: 38.5px;
    border-radius: 50%;
    border: 2.33px solid #554596;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.2s ease;
}

.alumni-card__linkedin:hover {
    background: #554596;
}

.alumni-card__linkedin:hover svg {
    fill: #ffffff;
}

.alumni-card__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    min-width: 0;
}

.alumni-card__name {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 124%;
    color: #554596;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alumni-card__program {
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 124%;
    color: #554596;
    margin: 0;
}

@media (max-width: 991px) {
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .alumni-card:nth-child(3n+2) {
        background: #ffffff;
    }

    .alumni-card:nth-child(2n) {
        background: #EEF9F5;
    }
}

@media (max-width: 767px) {
    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .alumni-card:nth-child(2n) {
        background: #ffffff;
    }

    .alumni-card:nth-child(odd) {
        background: #ffffff;
    }

    .alumni-card:nth-child(2n) {
        background: #EEF9F5;
    }

    .alumni-card__name {
        font-size: 18px;
    }
}

/* ==========================================================================
   I MENTOR PAGE
   ========================================================================== */

/* --- INTRO SECTION --- */

.mentor-intro-section {
    padding-top: 73px;
    padding-bottom: 92px;
    overflow: hidden;
}

.mentor-intro__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 90px;
}

.mentor-intro__content {
    display: flex;
    flex-direction: column;
    gap: 27px;
    width: 461px;
    flex-shrink: 0;
}

.mentor-intro__top {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Title */
.mentor-intro__title {
    font-family: 'Mont', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    margin: 0;
}

.mentor-intro__top .hero-separator {
    margin-bottom: 0;
}

.mentor-intro__description {
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #554596;
    margin: 0;
}

.mentor-intro__cta-block {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.btn-mentor-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
    background: #EA5B0C;
    border: 2px solid #EA5B0C;
    border-radius: 30px;
    padding: 11px 28px;
    text-decoration: none;
    white-space: nowrap;
    align-self: flex-start;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin: 0;
}

.btn-mentor-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.mentor-intro__cta-sub {
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
    color: #554596;
    margin: 0;
}

.mentor-intro__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mentor-intro__image img {
    width: 100%;
    max-width: 595px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .mentor-intro-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .mentor-intro__inner {
        gap: 40px;
    }

    .mentor-intro__content {
        width: 100%;
        max-width: 461px;
    }

    .mentor-intro__title {
        font-size: 42px;
    }

    .mentor-intro__image img {
        max-width: 380px;
    }
}

/* ==========================================================================
   MENTOR GRID SECTION
   ========================================================================== */

.mentor-grid-section {
    padding-top: 174px;
    padding-bottom: 67px;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 294px);
    gap: 47px;
    justify-content: center;
}

.mentor-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 294px;
}

.mentor-card__photo-wrap {
    position: relative;
    width: 294px;
    height: 409px;
    border-radius: 10px;
    overflow: hidden;
    background: #D9D9D9;
    flex-shrink: 0;
}

.mentor-card__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.mentor-card__photo-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    border-radius: 10px;
    pointer-events: none;
}

.mentor-card__linkedin {
    position: absolute;
    right: 15.5px;
    bottom: 12.5px;
    width: 38.5px;
    height: 38.5px;
    border-radius: 50%;
    border: 2.33px solid #FFFFFF;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
    transition: background var(--transition-fast);
}

.mentor-card__linkedin:hover {
    background: rgba(255,255,255,0.2);
}

.mentor-card__linkedin svg {
    display: block;
    flex-shrink: 0;
}

.mentor-card__linkedin--no-link {
    cursor: default;
    pointer-events: none;
}

.mentor-card__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mentor-card__name {
    font-family: 'Mont', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 124%;
    color: #554596;
    margin: 0;
}

.mentor-card__description {
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 124%;
    color: #554596;
    margin: 0;
}

.mentor-grid-section--no-photo {
    padding-top: 0;
    padding-bottom: 67px;
}

.mentor-grid--no-photo {
    row-gap: 67px;
}

.mentor-card--no-photo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 294px;
}

.mentor-card__linkedin-top {
    width: 38.5px;
    height: 38.5px;
    border-radius: 50%;
    border: 2.33px solid #554596;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.mentor-card__linkedin-top:hover {
    background: #554596;
}

.mentor-card__linkedin-top:hover svg {
    fill: #ffffff;
}

.mentor-card__linkedin-top svg {
    display: block;
    flex-shrink: 0;
    transition: fill var(--transition-fast);
}

.mentor-card__linkedin-top--no-link {
    cursor: default;
    pointer-events: none;
}

.mentor-card__divider {
    width: 100%;
    height: 1px;
    background: #554596;
}

@media (max-width: 1340px) {
    .mentor-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mentor-card {
        width: 100%;
    }

    .mentor-card__photo-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 294 / 409;
    }
}

@media (max-width: 991px) {
    .mentor-grid-section {
        padding-top: 80px;
        padding-bottom: 48px;
    }

    .mentor-grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .mentor-grid-section {
        padding-top: 48px;
        padding-bottom: 40px;
    }

    .mentor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mentor-card__name {
        font-size: 18px;
    }

    .mentor-card__description {
        font-size: 14px;
    }

    .mentor-card__linkedin {
        width: 30px;
        height: 30px;
        right: 10px;
        bottom: 8px;
    }
}

/* ==========================================================================
   BOOSTME PAGE
   ========================================================================== */

/* --- COME FUNZIONA? ---
   ========================================================================== */

.bm-funziona-section {
    padding-top: 28px;
    padding-bottom: 0;
}

.bm-funziona__header {
    margin-bottom: 106px;
}

.bm-funziona__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1266px;
    margin: 0 auto;
}

.bm-funziona__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bm-funziona__card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 50px;
    background: #45B384;
    border-radius: 15px;
    font-family: 'Mont', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 115%;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.bm-funziona__card-text {
    font-family: 'Bariol', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #554596;
    text-align: center;
    margin: 0;
    padding: 0 50px;
}

.bm-funziona__card-text p {
    margin: 0;
}

/* --- CTA BANNER ---
   ========================================================================== */

.bm-cta-section {
    margin-top: 118px;
}

.bm-cta__text {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 41px;
    color: #ffffff;
    margin: 0;
    width: 666px;
    flex-shrink: 0;
}

.bm-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 411px;
    height: 54px;
    padding: 11px 28px;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #EA5B0C;
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity var(--transition-fast);
}

.bm-cta__btn:hover {
    opacity: 0.9;
}

/* --- TESTIMONIANZE ---
   ========================================================================== */

.bm-testimonials-section {
    padding-top: 115px;
    padding-bottom: 143px;
}

.bm-testimonials-section .testimonials-slider {
    max-width: 1036px;
    margin-bottom: 30px;
}

.bm-testimonials-section .testimonial-slide {
    gap: 30px;
}

.bm-testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
    line-height: 124%;
    font-size: 24px;
}

.bm-testimonials-section .bc-testimonial__name {
    font-size: 24px;
    line-height: 124%;
}

.bm-testimonials-section .testimonial-slide__role {
    font-family: 'Mont', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 124%;
}

.bm-testimonial__dialog {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 756px;
    text-align: center;
}

.bm-testimonial__message {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bm-testimonial__label {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 124%;
    text-align: center;
    margin: 0;
}

.bm-testimonial__label--mentee {
    color: #554596;
}

.bm-testimonial__label--mentor {
    color: #554596;
}

.bm-testimonial__text {
    font-family: 'Bariol', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    color: #554596;
    text-align: center;
    margin: 0;
}

/* --- RESPONSIVE --- */

@media (max-width: 991px) {
    .bm-funziona-section {
        padding-bottom: 0;
    }

    .bm-cta-section {
        margin-top: 60px;
    }

    .bm-cta__text {
        width: auto;
        font-size: 24px;
        line-height: 32px;
    }

    .bm-cta__btn {
        width: auto;
        font-size: 20px;
    }

    .bm-funziona__header {
        margin-bottom: 60px;
    }

    .bm-funziona__grid {
        gap: 30px;
    }

    .bm-funziona__card-title {
        font-size: 24px;
        padding: 20px 30px;
    }

    .bm-testimonial__label {
        font-size: 20px;
    }

    .bm-testimonial__text {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .bm-funziona__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bm-funziona__card-title {
        font-size: 22px;
        padding: 18px 24px;
    }

    .bm-cta-section {
        margin-top: 36px;
    }

    .bm-cta__text {
        font-size: 20px;
        line-height: 28px;
    }

    .bm-cta__btn {
        width: 100%;
        font-size: 18px;
        height: auto;
        padding: 12px 20px;
    }

    .bm-testimonials-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .bm-testimonial__author {
        font-size: 18px;
    }

    .bm-testimonials-section .bc-testimonial__program {
        font-size: 18px;
    }

    .bm-testimonials-section .bc-testimonial__name {
        font-size: 18px;
    }

    .bm-testimonials-section .testimonial-slide__role {
        font-size: 18px;
    }

    .bm-testimonial__label {
        font-size: 16px;
    }

    .bm-testimonial__text {
        font-size: 16px;
        line-height: 20px;
    }

    .bm-testimonial__dialog {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .mentor-intro-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .mentor-intro__inner {
        flex-direction: column;
        gap: 0;
    }

    .mentor-intro__content {
        width: 100%;
        max-width: 100%;
    }

    .mentor-intro__title {
        font-size: 36px;
    }

    .mentor-intro__image {
        display: none;
    }
}

/* ==========================================================================
   DIVENTA MENTOR PAGE — HERO
   ========================================================================== */

.dm-hero-section {
    padding-top: 73px;
}

.dm-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
}

.dm-hero__title {
    font-family: 'Mont', sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    text-align: center;
    max-width: 1124px;
    margin: 0;
}

.dm-hero__separator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 1099px;
}

.dm-hero__sep-line {
    display: block;
    width: 534px;
    height: 5px;
    border-radius: 2px;
    flex: 1;
}

.dm-hero__sep-line--purple { background: #554596; }
.dm-hero__sep-line--green  { background: #45B384; }

.dm-hero__sep-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
}

.dm-hero__sep-icon img {
    width: 21px;
    height: 21px;
    object-fit: contain;
    display: block;
}

.dm-hero__columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 29px;
    width: 100%;
    max-width: 1099px;
}

.page-diventa-mentor .dm-hero__col {
    flex: 1;
    max-width: 535px;
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    color: #554596;
}

.page-diventa-mentor .dm-hero__col p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: inherit;
    font-family: inherit;
}

/* Tablet */
@media (max-width: 991px) {
    .dm-hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .dm-hero__title {
        font-size: 42px;
    }

    .page-diventa-mentor .dm-hero__col {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .dm-hero-section {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .dm-hero {
        gap: 24px;
    }

    .dm-hero__title {
        font-size: 32px;
    }
	
    .dm-hero__columns {
        flex-direction: column;
        gap: 20px;
    }

    .dm-hero__col {
        max-width: 100%;
    }
}

/* ==========================================================================
   DIVENTA MENTOR PAGE — BENEFITS
   ========================================================================== */

.dm-benefits-section {
    padding-top: 120px;
    padding-bottom: 121px;
}

.dm-benefits {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 884px;
    margin: 0 auto;
}

.dm-benefit-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    gap: 31px;
    width: 100%;
    border: 1px solid #45B384;
    border-radius: 15px;
    box-sizing: border-box;
}

.dm-benefit-card__icon {
    width: 109px;
    height: 92px;
    flex-shrink: 0;
}

.dm-benefit-card__icon img {
    width: 109px;
    height: 92px;
    display: block;
    object-fit: contain;
}

.dm-benefit-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    flex: 1;
    min-width: 0;
}

.dm-benefit-card__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 115%;
    color: #554596;
    margin: 0;
}

.dm-benefit-card__desc {
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #554596;
    margin: 0;
}

@media (max-width: 991px) {
    .dm-benefits-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .dm-benefit-card__title {
        font-size: 24px;
    }

    .dm-benefit-card__desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .dm-benefits-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .dm-benefit-card {
        gap: 10px;
        padding: 7px;
    }

    .dm-benefit-card__icon {
        width: 72px;
        height: 61px;
    }

    .dm-benefit-card__icon img {
        width: 72px;
        height: 61px;
    }

    .dm-benefit-card__title {
        font-size: 16px;
    }

    .dm-benefit-card__desc {
        font-size: 16px;
        line-height: 20px;
    }
}

/* ==========================================================================
   DIVENTA MENTOR PAGE — PRENOTA CALL
   ========================================================================== */

.dm-prenota-section {
    padding-bottom: 170px;
}

.dm-prenota__heading {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: calc(-1 * var(--container-padding-x));
    margin-right: calc(-1 * var(--container-padding-x));
    margin-bottom: 50px;
}

.dm-prenota__line {
    flex: 1;
    height: 6px;
    border-radius: 2px;
}

.dm-prenota__line--purple { background: #554596; }
.dm-prenota__line--green  { background: #45B384; }

.dm-prenota__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: block;
}

.dm-prenota__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 54px;
    line-height: 115%;
    color: #554596;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0;
    padding: 0 6px;
}

/* ==========================================================================
   Green Forms overrides
   ========================================================================== */
/
.dm-prenota__form {
    width: 100%;
}

.dm-prenota__form .leform-inline.leform-container {
    max-width: 470px !important;
    margin: 0 auto !important;
}

.dm-prenota__form .leform-form-2 .leform-element {
    padding: 0 !important;
    margin-bottom: 20px;
}

.dm-prenota__form .leform-form-2 .leform-element:last-child {
    margin-bottom: 0;
}

.dm-prenota__form .leform-form-2 .leform-element label.leform-label {
    font-family: 'Bariol', sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 26px !important;
    color: #554596 !important;
    margin-bottom: 10px;
    display: block;
}

.dm-prenota__form .leform-form-2 .leform-element div.leform-input input[type='text'],
.dm-prenota__form .leform-form-2 .leform-element div.leform-input input[type='email'] {
    width: 100% !important;
    height: 44px !important;
    padding: 5px 20px !important;
    background-color: #F4F4F4 !important;
    border: 1px solid #45B384 !important;
    border-radius: 40px !important;
    font-family: 'Bariol', sans-serif !important;
    font-size: 20px !important;
    line-height: 22px !important;
    color: #554596 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.dm-prenota__form .leform-form-2 .leform-element div.leform-input input::placeholder {
    font-family: 'Bariol', sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    color: #45B384 !important;
    opacity: 1 !important;
}

.dm-prenota__form .leform-form-2 .leform-element div.leform-input input::-ms-input-placeholder {
    color: #45B384 !important;
    opacity: 1 !important;
}

.dm-prenota__form .leform-form-2 .leform-element div.leform-input input[type='checkbox'].leform-checkbox-classic + label {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    background-color: #EAEAEA !important;
    border: 1px solid #B6B6B6 !important;
    border-radius: 5px !important;
    flex-shrink: 0;
}

.dm-prenota__form .leform-form-2 .leform-cr-label label {
    font-family: 'Bariol', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 18px !important;
    color: #554596 !important;
}

.dm-prenota__form .leform-form-2 .leform-cr-container {
    margin-bottom: 20px;
}

.dm-prenota__form .leform-form-2 .leform-cr-container:last-child {
    margin-bottom: 0;
}

.dm-prenota__form .leform-form-2 .leform-element .leform-button,
.dm-prenota__form .leform-form-2 .leform-element .leform-button:visited {
    width: 100% !important;
    height: 54px !important;
    padding: 11px 28px !important;
    background-color: #EA5B0C !important;
    border: 2px solid #EA5B0C !important;
    border-radius: 30px !important;
    font-family: 'Bariol', sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 26px !important;
    color: #ffffff !important;
    text-align: center !important;
    box-shadow: none !important;
    cursor: pointer;
    display: block;
    box-sizing: border-box !important;
}

.dm-prenota__form .leform-form-2 .leform-element .leform-button:hover {
    background-color: #c94d0a !important;
    border-color: #c94d0a !important;
}

@media (max-width: 991px) {
    .dm-prenota-section {
        padding-bottom: 80px;
    }

    .dm-prenota__title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .dm-prenota-section {
        padding-bottom: 48px;
    }

    .dm-prenota__heading {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 32px;
    }

    .dm-prenota__title {
        width: 100%;
        order: 2;
        font-size: 32px;
        white-space: normal;
        padding: 8px 0 0;
    }

    .dm-prenota__heading .dm-prenota__icon:last-of-type {
        display: none;
    }

    .dm-prenota__icon {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   ADERISCI COME AZIENDA PAGE — HERO
   ========================================================================== */

.aa-hero-section {
    padding-top: 73px;
    padding-bottom: 121px;
}

.aa-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}

.aa-hero__title {
    font-family: 'Mont', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 115%;
    color: #554596;
    text-align: center;
    max-width: 1124px;
    margin: 0;
}

.aa-hero__desc {
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #554596;
    max-width: 1124px;
    margin: 0;
}

@media (max-width: 991px) {
    .aa-hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .aa-hero__title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .aa-hero-section {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .aa-hero {
        gap: 16px;
    }

    .aa-hero__title {
        font-size: 32px;
    }

    .aa-hero__desc {
        font-size: 15px;
    }
}

/* ==========================================================================
   DONAZIONE PAGE — METODI DI DONAZIONE
   ========================================================================== */

.don-metodi-section {
    padding-bottom: 150px;
}

.don-metodi {
    display: flex;
    flex-direction: row;
    gap: 39px;
    max-width: 1149px;
    margin: 0 auto;
}

.don-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    border: 1px solid #45B384;
    border-radius: 15px;
    box-sizing: border-box;
}

.don-card--paypal {
    padding: 15px;
    gap: 47px;
}

.don-card--bonifico {
    padding: 15px 15px 30px;
    gap: 20px;
}

.don-card__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    min-height: 103px;
    background: #45B384;
    border-radius: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.don-card__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 115%;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.don-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 253px;
    height: 54px;
    padding: 11px 28px;
    background: #EA5B0C;
    border: 2px solid #EA5B0C;
    border-radius: 30px;
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity var(--transition-fast);
}

.don-card__btn:hover {
    opacity: 0.88;
}

.don-card__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.don-card__banca-name {
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #554596;
    text-align: center;
    margin: 0;
}

.don-card__detail-row {
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    color: #554596;
    text-align: center;
    margin: 0;
}

/* --- RESPONSIVE --- */

/* ==========================================================================
   5x1000 PAGE — COME DONARE
   ========================================================================== */

.page-5x1000 .aa-hero-section {
    padding-bottom: 46px;
}

.fx-come-donare-section {
    padding-bottom: 150px;
}

.fx-come-donare {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 99px;
}

.fx-come-donare__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    max-width: 815px;
    width: 100%;
}

.fx-come-donare__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 115%;
    text-align: center;
    color: #45B384;
    margin: 0;
}

.fx-come-donare__desc {
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #554596;
}

.fx-come-donare__desc p {
    margin: 0;
}

.fx-come-donare__cols {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 133px;
    width: 100%;
}

.fx-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
}

.fx-col--left  { width: 555px; flex-shrink: 0; }
.fx-col--right { width: 549px; flex-shrink: 0; }

.fx-col__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
}

.fx-col__heading {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 115%;
    color: #EA5B0C;
    text-align: center;
    margin: 0;
}

.fx-col__arrow {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.fx-col__cards {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 100%;
}

.fx-istr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 30px;
    gap: 20px;
    width: 100%;
    border: 1px solid #45B384;
    border-radius: 15px;
    box-sizing: border-box;
}

.fx-istr-card__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    min-height: 103px;
    background: #45B384;
    border-radius: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.fx-istr-card__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 115%;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.fx-istr-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.fx-istr-card__text {
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #554596;
    margin: 0;
}

.fx-istr-card__cf {
    font-family: 'Bariol', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    color: #554596;
    text-align: center;
    margin: 0;
}

.fx-esempio {
    width: 100%;
    background: #FDE0C9;
    border: 1px solid #45B384;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    box-sizing: border-box;
}

.fx-esempio img {
    width: 100%;
    max-width: 482px;
    height: auto;
    display: block;
}

/* --- RESPONSIVE --- */

@media (max-width: 1100px) {
    .fx-come-donare__cols {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .fx-come-donare {
        gap: 60px;
    }

    .fx-come-donare__title {
        font-size: 36px;
    }

    .fx-col__heading {
        font-size: 30px;
    }

    .fx-col--left,
    .fx-col--right {
        width: 100%;
    }

    .fx-come-donare__cols {
        flex-direction: column;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .fx-come-donare {
        gap: 40px;
    }

    .fx-come-donare__title {
        font-size: 28px;
    }

    .fx-col__heading {
        font-size: 24px;
    }

    .fx-istr-card__title {
        font-size: 20px;
    }

    .fx-istr-card__cf {
        font-size: 30px;
        line-height: 36px;
    }
}

/* ==========================================================================
   5x1000 PAGE — BANNER ARANCIONE + COME FARLO
   ========================================================================== */

.fx-banner-section {
    background: #EA5B0C;
    padding: 32px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fx-banner__text {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 41px;
    text-align: center;
    color: #ffffff;
    max-width: 967px;
    margin: 0;
}

.fx-come-farlo-section {
    padding-top: 50px;
    padding-bottom: 150px;
}

.fx-come-farlo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.fx-come-farlo__title {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 115%;
    text-align: center;
    color: #EA5B0C;
    margin: 0;
}

.fx-come-farlo__steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 555px;
    width: 100%;
}

.fx-istr-card__header--sm {
    min-height: 68px;
}

.fx-step-arrow {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
}

.fx-come-farlo__footnote {
    max-width: 555px;
    font-family: 'Bariol', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    color: #554596;
    text-decoration: underline;
}

.fx-come-farlo__footnote p {
    margin: 0;
}

/* --- RESPONSIVE --- */

@media (max-width: 767px) {
    .fx-banner__text {
        font-size: 22px;
        line-height: 30px;
    }

    .fx-come-farlo-section {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .fx-come-farlo__title {
        font-size: 28px;
    }

    .fx-come-farlo__footnote {
        font-size: 16px;
        line-height: 20px;
    }
}

/* ==========================================================================
   DONAZIONE PAGE — METODI DI DONAZIONE
   ========================================================================== */

@media (max-width: 767px) {
    .don-metodi-section {
        padding-top: 16px;
        padding-bottom: 60px;
    }

    .don-metodi {
        flex-direction: column;
        gap: 20px;
    }

    .don-card--paypal,
    .don-card--bonifico {
        width: 100%;
    }

    .don-card__title {
        font-size: 24px;
    }

    .don-card__btn {
        width: 100%;
        font-size: 20px;
    }

    .don-card__banca-name,
    .don-card__detail-row {
        font-size: 18px;
        line-height: 22px;
    }
}
