/* Diensten Page Styles */
@import url('styles.css');

/* Specific styles for diensten.html */
:root {
    /* Extra variables for diensten page */
    --card-hover-transform: translateY(-10px);
    --card-hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    --pricing-notice-bg: rgba(76, 111, 255, 0.05);
    --custom-price-color: #6B7280;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 111, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.45s ease;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(76, 111, 255, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(76, 111, 255, 0.2);
}

.pricing-card.custom {
    border: 1px dashed var(--border-color);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.pricing-card.custom:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.95);
}

.pricing-header {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.pricing-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 5px;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.95rem;
    margin-left: 0.5rem;
    opacity: 0.8;
}

.custom-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--custom-price-color);
}

.pricing-features {
    padding: 2.25rem 2rem;
    flex-grow: 1;
    background-color: var(--white);
}

.pricing-features ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--success-color);
    margin-right: 0.75rem;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    color: var(--text-color);
    transform: translateX(3px);
}

.pricing-card:hover .pricing-features li::before {
    transform: scale(1.2);
}

.pricing-features li strong {
    color: var(--text-color);
    font-weight: 600;
}

.pricing-features li.unavailable {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-features li.unavailable::before {
    content: "✕";
    color: var(--danger-color);
}

.pricing-footer {
    padding: 0 2rem 2.25rem;
    text-align: center;
    background-color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 111, 255, 0.2);
}

.btn-secondary {
    background-color: var(--background-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.delivery-time {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.pricing-card:hover .delivery-time {
    color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(76, 111, 255, 0.3);
}

.pricing-notice {
    background-color: var(--pricing-notice-bg);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 4rem;
    border: 1px solid rgba(76, 111, 255, 0.1);
    position: relative;
    z-index: 1;
}

.pricing-notice h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.pricing-notice ul {
    list-style: none;
    padding: 0;
}

.pricing-notice li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-notice li:last-child {
    margin-bottom: 0;
}

.pricing-notice li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-notice li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Services Detail Section */
.service-detail {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 111, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -175px;
    left: -175px;
    border-radius: 50%;
    z-index: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.service-detail-image:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 30px 50px rgba(76, 111, 255, 0.15);
}

.service-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 111, 255, 0.3), rgba(94, 60, 255, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-detail-image:hover::before {
    opacity: 0.6;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-detail-text p {
    margin-bottom: 1.75rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 2.25rem;
}

.service-detail-text ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-detail-text ul li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.service-detail-text ul li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-detail-text ul li:hover:before {
    transform: translateX(3px);
}

/* Responsive adjustments for service detail */
@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-image {
        order: 1;
    }
    
    .service-detail-text {
        order: 2;
    }
    
    .service-detail-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .service-detail-text h2 {
        font-size: 2rem;
    }
    
    .service-detail-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-detail-text h2 {
        font-size: 1.8rem;
    }
    
    .service-detail-text ul li {
        font-size: 0.95rem;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 111, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
    z-index: 0;
}

.services-overview::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background-color: rgba(76, 111, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.section-badge:hover {
    background-color: rgba(76, 111, 255, 0.15);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.75rem 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(76, 111, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(76, 111, 255, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--border-color);
}

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li::before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    color: var(--text-color);
    transform: translateX(3px);
}

.service-card:hover .service-features li::before {
    transform: scale(1.2);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 60, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    z-index: 0;
}

.process-steps {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.5rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    z-index: 0;
    border-radius: 3px;
}

.process-step {
    display: flex;
    gap: 2.5rem;
    position: relative;
    padding-bottom: 4rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(76, 111, 255, 0.3);
}

.process-step:hover .step-content h3 {
    color: var(--primary-color);
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(76, 111, 255, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.step-content {
    padding-top: 0.5rem;
    transition: all 0.3s ease;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
}

.step-duration {
    display: inline-block;
    background-color: rgba(76, 111, 255, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.process-step:hover .step-duration {
    background-color: rgba(76, 111, 255, 0.2);
    transform: translateY(-3px);
}

/* Pricing info box */
.pricing-info {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.pricing-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(76, 111, 255, 0.1);
    border-color: rgba(76, 111, 255, 0.2);
}

.pricing-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.pricing-info:hover::before {
    opacity: 1;
}

.pricing-info h4 {
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.pricing-info h4::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    bottom: -8px;
    left: 0;
    transition: all 0.4s ease;
}

.pricing-info:hover h4::after {
    width: 100%;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.pricing-info li:last-child {
    margin-bottom: 0;
}

.pricing-info li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pricing-info:hover li {
    transform: translateX(5px);
    color: var(--text-color);
}

.pricing-info:hover li::before {
    transform: translateX(3px);
}

.pricing-info li strong {
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-info:hover li strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-info {
        padding: 2rem;
    }
    
    .pricing-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .pricing-info {
        padding: 1.75rem;
    }
    
    .pricing-info h4 {
        font-size: 1.2rem;
    }
    
    .pricing-info li {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 111, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    transition: all 0.4s ease;
    border-radius: 0 0 4px 0;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(76, 111, 255, 0.1);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.faq-item h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item:hover h3::before {
    transform: scale(1.2);
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.faq-item:hover p {
    color: var(--text-color);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.75rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta .btn svg {
    transition: all 0.3s ease;
}

.cta .btn:hover svg {
    transform: rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .cta-content h2 {
        font-size: 2.4rem;
    }
    
    .process-steps::before {
        left: 2.25rem;
    }
    
    .service-card, .pricing-card, .faq-item {
        padding: 2rem;
    }
    
    .pricing-header {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .process-step {
        gap: 1.75rem;
    }
    
    .step-number {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.35rem;
    }
    
    .service-card h3, .step-content h3 {
        font-size: 1.4rem;
    }
    
    .pricing-header h3 {
        font-size: 1.6rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.03);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.03);
    }
    
    .process-steps::before {
        left: 2.1rem;
    }
}

@media (max-width: 768px) {
    section, .pricing, .services-overview, .process, .faq, .cta {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .process-steps::before {
        left: 1.75rem;
    }
    
    .step-number {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: minmax(300px, 550px);
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .popular-badge {
        right: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding-left: 2rem;
    }
    
    .process-steps::before {
        left: 1.75rem;
    }
    
    .step-number {
        position: absolute;
        top: 0;
        left: 0;
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .step-content {
        padding-top: 4.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
    }
    
    .pricing-header {
        padding: 1.75rem 1.5rem;
    }
    
    .pricing-features, .pricing-footer {
        padding: 1.75rem 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .pricing-card, .service-card, .faq-item {
        padding: 1.75rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        right: 1.25rem;
    }
    
    .pricing-notice h4 {
        font-size: 1.2rem;
    }
    
    .pricing-notice li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card, .service-card, .faq-item {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-duration {
        font-size: 0.8rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}
