/* Reset e variabili CSS */
:root {
    --coral-red: #EF5A46;
    --trust-blue: #2C4A6E;
    --pearl-gray: #F6F6F6;
    --light-green: #A6D94E;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--trust-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UPDATE STEP 1.6: Header con shadow dinamico quando sticky */
header {
    background-color: var(--white);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--trust-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--coral-red);
}

.hero {
    background: linear-gradient(135deg, var(--trust-blue) 0%, #1a3550 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* UPDATE STEP 2.1.2: Hero subtext per pagine provincia */
.hero-subtext {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* UPDATE STEP 1.6: CTA button con hover scurito del 10% */
.cta-button {
    display: inline-block;
    background-color: var(--coral-red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 90, 70, 0.3);
    background-color: #d7513f;
}

.cta-secondary {
    text-align: center;
    margin-top: 50px;
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

/* UPDATE STEP 1.6: Numeri in cerchi con sfondo corallo chiaro (#FFD8D2) */
.step-number {
    width: 40px;
    height: 40px;
    background-color: #FFD8D2;
    color: var(--coral-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 15px;
}

/* UPDATE STEP 1.6: Margin-bottom 15px sotto ogni icona */
.step-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--trust-blue);
}

.step p {
    color: var(--text-gray);
    font-size: 16px;
}

.services {
    padding: 80px 0;
    background-color: var(--pearl-gray);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* UPDATE STEP 1.6: Hover effect migliorato con scale(1.02) */
.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* UPDATE STEP 1.6: Padding-bottom aumentato di 10-15px per le icone */
.service-icon {
    font-size: 60px;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--trust-blue);
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* UPDATE STEP 1.6: NUOVA SEZIONE - Selezione professionisti con margini espliciti */
.selection-info {
    padding: 80px 0;
    margin: 80px 0;
    background-color: var(--pearl-gray);
    text-align: center;
}

.selection-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--trust-blue);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.selection-info p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.trust {
    padding: 80px 0;
    background-color: var(--pearl-gray);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-icon {
    flex-shrink: 0;
}

.trust-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--trust-blue);
}

.trust-text p {
    font-size: 18px;
    color: var(--text-gray);
}

.trust-text .testimonial {
    margin-top: 20px;
    font-style: italic;
    color: var(--trust-blue);
    font-size: 16px;
}

.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--trust-blue);
}

.contact-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--trust-blue);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

.form-note-top {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    margin-top: 10px;
}

.form-note-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 20px;
    font-style: italic;
}

/* UPDATE STEP 2.1.2: Disclaimer form */
.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #999999;
    margin-top: 15px;
    font-style: italic;
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 0;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background-color: rgba(166, 217, 78, 0.15);
    color: #5A8F00;
    border: 2px solid var(--light-green);
    display: block;
}

.form-message.error {
    background-color: rgba(239, 90, 70, 0.15);
    color: #C23621;
    border: 2px solid var(--coral-red);
    display: block;
}

.form-message.searching {
    background-color: rgba(44, 74, 110, 0.1);
    color: var(--trust-blue);
    border: 2px solid var(--trust-blue);
    display: block;
}

#esito-zona {
    transition: opacity 0.3s ease;
    min-height: 20px;
}

/* UPDATE STEP 1.6: Floating CTA con hover più scuro (-10% luminosità) */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--coral-red);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 90, 70, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 90, 70, 0.5);
    background-color: #d7513f;
}

.floating-cta svg {
    width: 28px;
    height: 28px;
}

/* UPDATE STEP 1.6: Animazioni fade-in dal basso (0.3s) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* UPDATE STEP 1.6: Fade-in 0.4s specifico per sezione trust */
.trust.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.trust.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background-color: var(--trust-blue);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

.city-intro {
    padding: 60px 0;
    background-color: var(--white);
}

.city-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.city-intro p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.how-it-works.compact {
    padding: 60px 0;
    background-color: var(--pearl-gray);
}

.how-it-works.compact h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.how-it-works.compact .step {
    padding: 20px 15px;
}

.how-it-works.compact .step h3 {
    font-size: 20px;
}

.how-it-works.compact .step p {
    font-size: 15px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .floating-cta {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .how-it-works h2,
    .services h2,
    .contact-header h2 {
        font-size: 28px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-text h2 {
        font-size: 26px;
    }

    .trust-text p {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links span {
        display: none;
    }

    .selection-info h2 {
        font-size: 26px;
    }

    .selection-info p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero {
        padding: 50px 0;
    }

    .how-it-works,
    .services,
    .trust,
    .contact,
    .selection-info {
        padding: 50px 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .logo img {
        height: 32px;
    }
}

/* UPDATE STEP 2.1.1: Stili per pagine Idraulico */

/* Sezione descrizione servizi */
.services-description {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.services-description h2 {
    font-size: 36px;
    color: var(--trust-blue);
    margin-bottom: 30px;
}

.services-description p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Sezione Standard di Qualità */
.quality-standards {
    padding: 80px 0;
    background-color: var(--pearl-gray);
    text-align: center;
}

.quality-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.badge-text {
    font-size: 20px;
    color: var(--trust-blue);
    margin-top: 15px;
}

.quality-standards h2 {
    font-size: 36px;
    color: var(--trust-blue);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quality-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quality-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quality-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.quality-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Sezione Perché Scegliere Casaposto */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.why-choose h2 {
    font-size: 36px;
    color: var(--trust-blue);
    text-align: center;
    margin-bottom: 50px;
}

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

.why-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--pearl-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    color: var(--trust-blue);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-button-outline {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: var(--trust-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--trust-blue);
}

.cta-button-outline:hover {
    background-color: var(--trust-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sezione Zone Coperte */
.coverage-area {
    padding: 60px 0;
    background-color: var(--pearl-gray);
}

.coverage-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.coverage-area h2 {
    font-size: 32px;
    color: var(--trust-blue);
    text-align: center;
    margin-bottom: 30px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.coverage-card h3 {
    font-size: 22px;
    color: var(--trust-blue);
    margin-bottom: 12px;
}

.coverage-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Form Disclaimer */
.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
    font-style: italic;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Sezione FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq h2 {
    font-size: 36px;
    color: var(--trust-blue);
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--pearl-gray);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #ebebeb;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--trust-blue);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* UPDATE STEP 2.1.2: Introduzione FAQ */
.faq-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq details {
    background-color: var(--pearl-gray);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq details:hover {
    background-color: #ebebeb;
}

.faq summary {
    font-size: 18px;
    font-weight: 600;
    color: var(--trust-blue);
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq details p {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Label per campo Comune */
.contact label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--trust-blue);
    margin-bottom: 8px;
    margin-top: 15px;
    text-align: left;
}

/* Select per campo Comune */
.contact select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--trust-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact select:focus {
    outline: none;
    border-color: var(--coral-red);
    box-shadow: 0 0 0 3px rgba(239, 90, 70, 0.1);
}

.contact select option {
    padding: 10px;
}

.contact select option:disabled {
    color: #999;
}

/* Responsive per nuove sezioni */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .quality-standards h2,
    .why-choose h2,
    .coverage-area h2,
    .services-description h2,
    .faq h2 {
        font-size: 28px;
    }
    
    .quality-list,
    .why-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-item,
    .why-card,
    .coverage-card {
        padding: 20px 15px;
    }
    
    .why-icon {
        font-size: 36px;
    }

    .services-description p {
        font-size: 16px;
    }

    .faq summary {
        font-size: 16px;
    }

    .faq details p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-description,
    .faq {
        padding: 50px 0;
    }

    .services-description h2,
    .faq h2 {
        font-size: 24px;
    }
}

/* =================================================================
   PAGINA DIVENTA PARTNER
   ================================================================= */

/* Hero Partner */
.hero-partner {
    background: linear-gradient(135deg, var(--trust-blue) 0%, #1a3550 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-partner h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 25px;
}

.hero-partner .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.95);
}

/* Sezione Intro Partner */
.partner-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.partner-intro h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.partner-intro .intro-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: var(--text-gray);
}

.partner-intro .intro-highlight {
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    color: var(--coral-red);
}

/* Sezione Benefits */
.partner-benefits {
    padding: 80px 0;
    background-color: var(--pearl-gray);
}

.partner-benefits h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--trust-blue);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Sezione Requisiti */
.partner-requirements {
    padding: 80px 0;
    background-color: var(--white);
}

.partner-requirements h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.requirements-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-gray);
}

.requirements-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.requirements-list li {
    font-size: 18px;
    line-height: 1.8;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-dark);
}

.requirements-list li:last-child {
    border-bottom: none;
}

/* Sezione Form Partner */
.partner-form-section {
    padding: 80px 0;
    background-color: var(--pearl-gray);
}

.partner-form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #ddd;
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--coral-red);
    color: var(--white);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: var(--light-green);
    color: var(--white);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--coral-red);
    font-weight: 600;
}

/* Multi-Step Form */
.multi-step-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.form-step h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--trust-blue);
}

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

.multi-step-form .form-group {
    margin-bottom: 25px;
}

.multi-step-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--trust-blue);
}

.multi-step-form input[type="text"],
.multi-step-form input[type="email"],
.multi-step-form input[type="tel"],
.multi-step-form input[type="number"],
.multi-step-form select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.multi-step-form input:focus,
.multi-step-form select:focus {
    outline: none;
    border-color: var(--coral-red);
    box-shadow: 0 0 0 3px rgba(239, 90, 70, 0.1);
}

.multi-step-form select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.6;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-prev,
.btn-next {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-prev {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-prev:hover {
    background: #d0d0d0;
}

.btn-next {
    background: var(--coral-red);
    color: var(--white);
    flex: 1;
}

.btn-next:hover {
    background: #d54937;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 90, 70, 0.3);
}

.multi-step-form .cta-button {
    flex: 1;
    margin: 0;
}

/* Responsive Partner Page */
@media (max-width: 768px) {
    .hero-partner h1 {
        font-size: 36px;
    }
    
    .hero-partner .hero-subtitle {
        font-size: 18px;
    }
    
    .partner-intro h2,
    .partner-benefits h2,
    .partner-requirements h2,
    .partner-form-section h2 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .multi-step-form {
        padding: 30px 20px;
    }
    
    .progress-bar {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .step-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-partner {
        padding: 60px 0;
    }
    
    .hero-partner h1 {
        font-size: 28px;
    }
    
    .partner-intro,
    .partner-benefits,
    .partner-requirements,
    .partner-form-section {
        padding: 50px 0;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-prev {
        order: 2;
    }
    
    .btn-next,
    .multi-step-form .cta-button {
        order: 1;
    }
}
