/* SaniSafe Wireframe Widgets — Homepage sections */

/* ═══════════════════════════════════════
   SECTION KICKER (reusable)
   ═══════════════════════════════════════ */
.section-kicker {
    display: inline-block;
    background: rgba(163, 129, 68, 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(163, 129, 68, 0.2);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   HERO USP BADGES
   ═══════════════════════════════════════ */
.hero-usp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 2rem;
}
.hero-usp-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 189, 95, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.hero-usp-badge i {
    color: var(--gold-light, #e3bd5f);
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════
   PROBLEM → SOLUTION
   ═══════════════════════════════════════ */
.problem-solution {
    padding: 5rem 0;
    background: var(--cream, #f9f6f1);
}
.problem-solution .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}
.ps-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.ps-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1rem 0;
}
.ps-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.ps-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.ps-problem .ps-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}
.ps-solution .ps-icon {
    background: rgba(163, 129, 68, 0.12);
    color: var(--primary);
}
.ps-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ps-card ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.ps-card ul li:last-child {
    border-bottom: none;
}
.ps-problem li i {
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 3px;
}
.ps-solution li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}
.ps-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 8rem;
}
.ps-arrow i {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(163, 129, 68, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ps-arrow span {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
    .ps-arrow {
        flex-direction: row;
        padding-top: 0;
    }
    .ps-arrow i {
        font-size: 1.5rem;
        width: 44px;
        height: 44px;
        transform: rotate(90deg);
    }
}

/* ═══════════════════════════════════════
   PRICING BLOCK
   ═══════════════════════════════════════ */
.pricing-block {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.pricing-block .container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 40px rgba(163, 129, 68, 0.12);
    border: 2px solid var(--primary);
    overflow: hidden;
    position: relative;
}
.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-header {
    background: linear-gradient(135deg, rgba(163, 129, 68, 0.06), rgba(227, 189, 95, 0.08));
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(163, 129, 68, 0.12);
}
.pricing-kicker {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}
.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-from {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.pricing-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.1;
}
.pricing-vat {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.pricing-body {
    padding: 2rem;
}
.pricing-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.pricing-includes li {
    padding: 8px 0;
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes i {
    color: var(--primary);
    flex-shrink: 0;
}
.pricing-cta {
    text-align: center;
}
.pricing-cta .cta-button {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}
.pricing-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ═══════════════════════════════════════
   WERKWIJZE (3 columns)
   ═══════════════════════════════════════ */
.werkwijze {
    padding: 5rem 0;
    background: #fff;
}
.werkwijze .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.werkwijze-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(163, 129, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.werkwijze-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(163, 129, 68, 0.12);
}
.werkwijze-card-highlight {
    background: #fff;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(163, 129, 68, 0.1);
}
.werkwijze-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.werkwijze-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(163, 129, 68, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0.5rem auto 1rem;
}
.werkwijze-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.werkwijze-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.werkwijze-card ul li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}
.werkwijze-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.72rem;
    top: 9px;
}

@media (max-width: 768px) {
    .werkwijze-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   GARANTIE BLOCK
   ═══════════════════════════════════════ */
.garantie-block {
    padding: 5rem 0;
    background: var(--cream);
}
.garantie-block .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.garantie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.garantie-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.garantie-card:hover {
    transform: translateY(-4px);
}
.garantie-card-highlight {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(163, 129, 68, 0.12);
    position: relative;
}
.garantie-years {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.garantie-years span {
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    display: block;
    color: var(--text-muted);
    margin-top: 2px;
}
.garantie-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.garantie-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .garantie-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   VOORDELEN BLOCK
   ═══════════════════════════════════════ */
.voordelen-block {
    padding: 5rem 0;
    background: #fff;
}
.voordelen-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.voordeel-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(163, 129, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voordeel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(163, 129, 68, 0.1);
}
.voordeel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(163, 129, 68, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.voordeel-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.voordeel-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .voordelen-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ═══════════════════════════════════════
   LEAD FORM
   ═══════════════════════════════════════ */
.lead-form-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(163, 129, 68, 0.04), rgba(227, 189, 95, 0.06));
}
.lead-form-block .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.lead-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.lead-form-text h2 {
    margin-bottom: 1rem;
}
.lead-form-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.lead-form-usps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lead-form-usps li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lead-form-usps i {
    color: var(--primary);
}
.lead-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(163, 129, 68, 0.1);
}
.lead-form .form-group {
    margin-bottom: 1rem;
}
.lead-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.lead-form input {
    width: 100%;
    border: 1.5px solid rgba(163, 129, 68, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}
.lead-form input:focus {
    border-color: var(--primary);
}
.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.lead-form-submit {
    width: 100%;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}
.lead-form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
.lead-form-privacy i {
    color: var(--primary);
    margin-right: 4px;
}
.lead-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}
.lead-form-success i {
    font-size: 3rem;
    color: var(--primary);
}
.lead-form-success h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}
.lead-form-success p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .lead-form-wrapper {
        grid-template-columns: 1fr;
    }
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   EXTRA CTA BLOCK
   ═══════════════════════════════════════ */
.extra-cta-block {
    padding: 5rem 0;
    background: var(--cream);
}
.extra-cta-block .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.extra-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.extra-cta-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(163, 129, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.extra-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(163, 129, 68, 0.15);
    border-color: var(--primary);
}
.extra-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(163, 129, 68, 0.1), rgba(227, 189, 95, 0.12));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.extra-cta-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.extra-cta-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.extra-cta-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.extra-cta-link i {
    transition: transform 0.2s;
}
.extra-cta-card:hover .extra-cta-link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .extra-cta-grid {
        grid-template-columns: 1fr;
    }
}
