/* Reset and Base Styles */
/* Custom Font */
@font-face {
    font-family: 'TT Fors Regular';
    src: url('/tt_fors_regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #373A38;
    background: #C8DEC2;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Iframe-specific styles */
body.iframe-mode {
    background: #C8DEC2;
    min-height: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(55, 58, 56, 0.1);
}

/* Intro Section */
.intro-section {
    padding: 3rem 0;
    background: #C8DEC2;
    color: #373A38;
}

.intro-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-tile {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    color: #373A38;
    box-shadow: 0 8px 32px rgba(55, 58, 56, 0.1);
}

.intro-tile h3 {
    font-size: 1.3rem;
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #373A38;
}

.intro-tile p {
    font-size: 1.125rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* USP Section */
.usp-section {
    padding: 3rem 0 3rem 0;
    background: #373A38;
    color: #C8DEC2;
}

.usp-card {
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(55, 58, 56, 0.1);
    background: rgba(200, 222, 194, 0.1);
    color: #C8DEC2;
    text-align: center;
    position: relative;
}

.usp-content {
    text-align: center;
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #373A38;
    box-shadow: 0 4px 15px rgba(200, 222, 194, 0.3);
}

.usp-card h2 {
    font-size: 1.6rem;
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #C8DEC2;
}

.usp-card p {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #C8DEC2;
    opacity: 0.9;
    text-align: center;
}

/* USP Section Guarantee Notice - using same mechanism as pricing star */
.usp-card .info-button-corner {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    margin: 0;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #373A38 !important;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.usp-card .info-button-corner:hover {
    background: linear-gradient(45deg, #FFC107, #FFB300);
    color: #373A38 !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.usp-card .info-button-corner i {
    color: #373A38 !important;
    font-size: 0.8rem;
}

.usp-card .info-button-corner {
    width: 30px;
    height: 30px;
}

.usp-card .info-button-corner .info-tooltip {
    right: 0;
    left: auto;
    transform: translateX(0);
    bottom: 35px;
}

.usp-card .info-button-corner .info-tooltip::after {
    right: 10px;
    left: auto;
    transform: translateX(0);
}

.usp-cta {
    text-align: center;
    margin-top: 2rem;
}

.usp-cta .cta-button.primary {
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    color: #373A38;
}

.usp-cta .cta-button.primary:hover {
    box-shadow: 0 8px 25px rgba(200, 222, 194, 0.4);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, #74986D, #9DC392);
    color: white;
    box-shadow: 0 4px 15px rgba(116, 152, 109, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 152, 109, 0.6);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}


/* Process Section */
.process {
    padding: 3rem 0 3rem 0;
    background: #C8DEC2;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #373A38;
}

.section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.step-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    color: #373A38;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card.step-main {
    padding: 2.5rem 2rem;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(55, 58, 56, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #74986D, #9DC392);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.step-content h3 {
    font-size: 1.3rem;
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #373A38;
    text-align: center;
}

.step-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
    text-align: left;
}

.step-list {
    margin-top: 1rem;
    list-style: none;
    text-align: left;
    flex-grow: 1;
}

.step-list li {
    font-size: 1.125rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #74986D;
    font-weight: bold;
}

/* Process inline CTA */
.process-cta-inline {
    text-align: center;
    margin-top: 2rem;
}


/* Benefits Section */
.benefits {
    padding: 3rem 0;
    background: #373A38;
    color: #C8DEC2;
}

.benefits .section-header h2,
.benefits .section-header p {
    color: #C8DEC2;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.benefit-card {
    background: rgba(200, 222, 194, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 222, 194, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #C8DEC2;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(200, 222, 194, 0.15);
    box-shadow: 0 15px 30px rgba(55, 58, 56, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #373A38;
    box-shadow: 0 4px 15px rgba(200, 222, 194, 0.3);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #C8DEC2;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefit-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* CTA Section */
.pricing-section {
    padding: 2rem 0 1rem 0;
    background: #C8DEC2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    color: #373A38;
    box-shadow: 0 20px 40px rgba(55, 58, 56, 0.1);
    position: relative;
}

.pricing-card h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #373A38;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #74986D;
    margin: 1rem 0;
}

/* Pricing Switch */
.pricing-switch-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-switch {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    width: 320px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-switch:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.pricing-switch input[type="radio"] {
    display: none;
}

.switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 156px;
    height: 42px;
    background: linear-gradient(45deg, #74986D, #9DC392);
    border-radius: 46px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(116, 152, 109, 0.3);
}

.pricing-switch input[name="pricing"]:nth-of-type(2):checked ~ .switch-slider {
    transform: translateX(156px);
}

.switch-label {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #373A38;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 12px 8px;
    line-height: 1.2;
}

.switch-label:hover {
    color: #74986D;
}

.pricing-switch input[name="pricing"]:checked + input + .switch-slider + .switch-label,
.pricing-switch input[name="pricing"]:checked ~ .switch-label:nth-of-type(4) {
    color: white;
    font-weight: 600;
}

.pricing-switch input[name="pricing"]:nth-of-type(1):checked ~ .switch-label:nth-of-type(3) {
    color: white;
    font-weight: 600;
}

.price-details {
    font-size: 1.125rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1.125rem;
    opacity: 0.8;
}

.info-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #74986D;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.info-button:hover {
    background: #9DC392;
    transform: scale(1.1);
}

.star-button {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #373A38 !important;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.star-button:hover {
    background: linear-gradient(45deg, #FFC107, #FFB300);
    color: #373A38 !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.star-button i {
    color: #373A38 !important;
}

.info-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #373A38;
    color: #C8DEC2;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: normal;
    max-width: 280px;
    min-width: 200px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(55, 58, 56, 0.3);
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #373A38;
}

.info-button:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
}

.info-button-corner {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    margin: 0;
}

.info-button-corner .info-tooltip {
    right: 0;
    left: auto;
    transform: translateX(0);
    bottom: 35px;
}

.info-button-corner .info-tooltip::after {
    right: 10px;
    left: auto;
    transform: translateX(0);
}

.cta-section {
    padding: 0.5rem 0 17.75rem 0;
    background: #C8DEC2;
}

.cta-mini {
    padding: 0.5rem 0 2.5rem 0;
    background: #373A38;
    text-align: center;
}

.cta-mini .cta-button.primary {
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    color: #373A38;
}

.cta-mini .cta-button.primary:hover {
    box-shadow: 0 8px 25px rgba(200, 222, 194, 0.4);
}
.cta-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    color: #373A38;
    box-shadow: 0 20px 40px rgba(55, 58, 56, 0.1);
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-family: 'TT Fors Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #373A38;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    opacity: 0.8;
    color: #373A38;
}

.trust-item i {
    color: #74986D;
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .guarantee-notice {
        top: 0.5rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .guarantee-notice i {
        font-size: 1rem;
    }
    
    .guarantee-tooltip {
        top: 40px;
        right: 0;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        max-width: 280px;
        min-width: 250px;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        line-height: 1.3;
    }
    
    .guarantee-tooltip::after {
        right: 15px;
    }
    
    .guarantee-notice {
        top: 1rem;
        right: 1rem;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
        width: 45px;
        border-radius: 15px 3px 15px 15px;
    }
    
    .guarantee-notice.expanded {
        width: 280px;
        padding: 0.6rem 0.8rem;
    }
    
    .guarantee-notice.expanded .guarantee-text {
        width: 200px;
    }
    
    /* Uniform section spacing */
    .intro-section {
        padding: 2rem 0;
    }
    
    .intro-tiles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .intro-tile {
        padding: 1.5rem;
        text-align: left;
    }
    
    .usp-section {
        padding: 2rem 0;
    }
    
    .cta-mini {
        padding: 1rem 0;
    }
    
    .process {
        padding: 2rem 0;
    }
    
    .benefits {
        padding: 2rem 0;
    }
    
    .pricing-section {
        padding: 2rem 0;
    }
    
    .cta-section {
        padding: 1rem 0 35rem 0;
    }
    
    /* Button spacing - close to content above with small gap */
    .cta-mini .cta-button,
    .process-cta .cta-button,
    .cta-section .cta-button {
        margin-top: 0.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        text-align: left;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-switch {
        width: 280px;
        height: 45px;
    }
    
    .switch-slider {
        width: 136px;
        height: 37px;
    }
    
    .pricing-switch input[name="pricing"]:nth-of-type(2):checked ~ .switch-slider {
        transform: translateX(136px);
    }
    
    .switch-label {
        font-size: 0.85rem;
        padding: 10px 6px;
    }
    
    .info-section {
        justify-content: flex-start;
    }
    
    .info-tooltip {
        white-space: normal;
        max-width: 250px;
        right: 0;
        left: auto;
        transform: translateX(0);
    }
    
    .info-tooltip::after {
        right: 15px;
        left: auto;
        transform: translateX(0);
    }
    
    .usp-section {
        padding: 2rem 0 0 0;
    }
    
    .cta-mini {
        padding: 0.25rem 0 2.5rem 0;
    }
    
    .process-cta {
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .cta-mini {
        padding: 0.25rem 0 1rem 0;
    }
    
    .section-header {
        text-align: left;
    }

    .step-card,
    .benefit-card {
        text-align: left;
    }
    
    .benefit-card h3 {
        justify-content: flex-start;
        text-align: left;
    }
    
    .usp-card,
    .cta-card {
        text-align: left;
    }
    
    .usp-card p {
        text-align: left;
    }
    
    .step-icon,
    .benefit-icon,
    .usp-icon {
        margin: 0 0 1.5rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
        height: auto;
    }
    
    .step-content h3 {
        text-align: left;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 0 1rem 0;
    }
    
    .usp-card {
        padding: 2rem 1.5rem;
    }
    
    .guarantee-notice {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin: 1rem 0;
        border-radius: 20px;
    }
    
    .info-tooltip {
        max-width: 250px;
        min-width: 180px;
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
        bottom: 40px;
    }
    
    .info-button-corner .info-tooltip {
        right: -10px;
        bottom: 40px;
    }
    
    .usp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 0 0.75rem 0;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 1.5rem 0;
    }
    
    .usp-section {
        padding: 1.5rem 0;
    }
    
    .cta-mini {
        padding: 0.75rem 0;
    }
    
    .process {
        padding: 1.5rem 0;
    }
    
    .benefits {
        padding: 1.5rem 0;
    }
    
    .pricing-section {
        padding: 1.5rem 0;
    }
    
    .cta-section {
        padding: 0.75rem 0 35rem 0;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .glass-card {
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.cta-button:focus {
    outline: 2px solid #74986D;
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Performance Optimizations */
.step-card, .benefit-card, .cta-card, .usp-card {
    will-change: transform;
}

/* Mobile line break */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* Alternating Section Backgrounds */
.usp-section {
    background: #373A38;
    color: #C8DEC2;
}

.usp-section .usp-card {
    background: rgba(200, 222, 194, 0.1);
    border: 1px solid rgba(200, 222, 194, 0.2);
    color: #C8DEC2;
}

.usp-section .usp-card h2 {
    color: #C8DEC2;
}

.usp-section .usp-icon {
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    color: #373A38;
}

.usp-section .cta-button.primary {
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    color: #373A38;
}

.usp-section .cta-button.primary:hover {
    box-shadow: 0 8px 25px rgba(200, 222, 194, 0.4);
}

.cta-mini {
    background: #373A38;
}

.cta-mini .cta-button.primary {
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    color: #373A38;
}

.cta-mini .cta-button.primary:hover {
    box-shadow: 0 8px 25px rgba(200, 222, 194, 0.4);
}

.process {
    background: #C8DEC2;
}

.benefits {
    background: #373A38;
    color: #C8DEC2;
}

.benefits .section-header h2,
.benefits .section-header p {
    color: #C8DEC2;
}

/* Mobile-specific heading break */
@media (max-width: 768px) {
    .benefits .section-header h2 {
        line-height: 1.2;
    }
}
.benefits .benefit-card {
    background: rgba(200, 222, 194, 0.1);
    border: 1px solid rgba(200, 222, 194, 0.2);
    color: #C8DEC2;
}

.benefits .benefit-card h3 {
    color: #C8DEC2;
}

.benefits .benefit-icon {
    background: linear-gradient(45deg, #C8DEC2, #DDEDD9);
    color: #373A38;
}

.cta-section {
    background: #C8DEC2;
}