    :root {
        --primary-green: #008755;
        --primary-blue: #4ec3ec;
        --dark: #1a1a1a;
        --gray: #666666;
        --light-gray: #f9f9f9;
    }

    /* Hero Section Enhanced */
    .quote-hero {
        background: linear-gradient(135deg, var(--primary-green) 0%, #005a3a 50%, var(--primary-blue) 100%);
        color: white;
        padding: 80px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .quote-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 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.5;
    }

    .quote-hero .container {
        position: relative;
        z-index: 1;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        animation: float 3s ease-in-out infinite;
    }

    .hero-icon i {
        font-size: 36px;
        color: white;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .quote-hero h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .quote-hero .hero-subtitle {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.6;
        opacity: 0.95;
    }

    /* Trust Section */
    .trust-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 40px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .trust-item {
        text-align: center;
        background: white;
        padding: 25px 15px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #e5e5e5;
        transition: all 0.3s ease;
    }

    .trust-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 135, 85, 0.1);
        border-color: var(--primary-green);
    }

    .trust-number {
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 8px;
    }

    .trust-label {
        font-size: 13px;
        color: var(--gray);
        font-weight: 500;
        line-height: 1.3;
    }

    /* Featured Project Card */
    .project-card-featured {
        position: relative;
        border-color: var(--primary-green) !important;
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.03), rgba(78, 195, 236, 0.03)) !important;
    }

    .project-card-featured::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        border-radius: 14px;
        z-index: -1;
        opacity: 0.3;
    }

    .project-badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(0, 135, 85, 0.3);
    }

    /* Progress Bar */
    .progress-container {
        margin-bottom: 30px;
    }

    .progress-bar {
        height: 8px;
        background: #e5e5e5;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
        border-radius: 10px;
        transition: width 0.5s ease;
    }

    .progress-text {
        text-align: right;
        font-size: 13px;
        color: var(--gray);
        font-family: 'Poppins', sans-serif;
    }

    .progress-text span {
        font-weight: 600;
        color: var(--primary-green);
    }

    /* Project Card Icon */
    .project-card-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.1), rgba(78, 195, 236, 0.1));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .project-card-icon i {
        font-size: 28px;
        color: var(--primary-green);
    }

    .project-card-icon img {
        width: 32px;
        height: 32px;
    }

    .project-card.selected .project-card-icon {
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    }

    .project-card.selected .project-card-icon i {
        color: white;
    }

    /* Project Card Timeline */
    .project-card-timeline {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--primary-blue);
        font-weight: 500;
        margin: 15px 0;
        padding: 8px 12px;
        background: rgba(78, 195, 236, 0.1);
        border-radius: 6px;
    }

    .project-card-timeline i {
        font-size: 14px;
    }

    /* Payment Calculator */
    .payment-calculator {
        margin-top: 20px;
        padding: 20px;
        background: linear-gradient(135deg, rgba(78, 195, 236, 0.08), rgba(0, 135, 85, 0.08));
        border-radius: 12px;
        border: 1px solid rgba(0, 135, 85, 0.2);
    }

    .payment-calculator-header {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .payment-calculator-header i {
        color: var(--primary-blue);
        font-size: 18px;
    }

    .payment-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .payment-option {
        cursor: pointer;
    }

    .payment-option input {
        display: none;
    }

    .payment-option-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 10px;
        background: white;
        border: 2px solid #e5e5e5;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .payment-option input:checked + .payment-option-content {
        border-color: var(--primary-green);
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.05), rgba(78, 195, 236, 0.05));
        box-shadow: 0 4px 15px rgba(0, 135, 85, 0.15);
    }

    .payment-option:hover .payment-option-content {
        border-color: var(--primary-green);
    }

    .payment-months {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .payment-amount {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-green);
    }

    .payment-note {
        margin-top: 12px;
        font-size: 12px;
        color: var(--gray);
        text-align: center;
    }

    .payment-note i {
        color: var(--primary-blue);
        margin-right: 5px;
    }

    /* FAQ Section - Scoped styles to avoid Tailwind conflicts */
    .faq-section {
        padding: 80px 0 !important;
        background: #ffffff !important;
        box-sizing: border-box !important;
    }

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

    .faq-section .faq-title {
        font-family: 'Poppins', sans-serif !important;
        font-size: 36px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        text-align: center !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
    }

    .faq-section .faq-subtitle {
        font-size: 18px !important;
        color: #666666 !important;
        text-align: center !important;
        margin: 0 0 50px 0 !important;
        padding: 0 !important;
        line-height: 1.5 !important;
    }

    .faq-section .faq-grid {
        max-width: 800px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .faq-section .faq-item {
        border: 2px solid #e5e5e5 !important;
        border-radius: 12px !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        background: white !important;
        box-sizing: border-box !important;
    }

    .faq-section .faq-item:hover {
        border-color: #008755 !important;
    }

    .faq-section .faq-item.open {
        border-color: #008755 !important;
        box-shadow: 0 5px 20px rgba(0, 135, 85, 0.1) !important;
    }

    .faq-section .faq-question {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 20px 25px !important;
        margin: 0 !important;
        cursor: pointer !important;
        background: white !important;
        transition: background 0.3s ease !important;
        border: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-section .faq-question:hover {
        background: #f9f9f9 !important;
    }

    .faq-section .faq-question span {
        font-family: 'Poppins', sans-serif !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        text-align: left !important;
        flex: 1 !important;
        padding-right: 15px !important;
    }

    .faq-section .faq-question i {
        color: #008755 !important;
        transition: transform 0.3s ease !important;
        font-size: 14px !important;
        flex-shrink: 0 !important;
    }

    .faq-section .faq-item.open .faq-question i {
        transform: rotate(180deg) !important;
    }

    .faq-section .faq-answer {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, padding 0.3s ease !important;
        padding: 0 25px !important;
        background: white !important;
    }

    .faq-section .faq-item.open .faq-answer {
        max-height: 500px !important;
        padding: 0 25px 25px 25px !important;
    }

    .faq-section .faq-answer p {
        color: #666666 !important;
        line-height: 1.7 !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        font-size: 15px !important;
    }

    .faq-section .faq-answer ul {
        margin: 0 !important;
        padding: 0 0 0 20px !important;
        color: #666666 !important;
        list-style: disc !important;
    }

    .faq-section .faq-answer li {
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        line-height: 1.6 !important;
        font-size: 15px !important;
    }

    .faq-section .faq-cta {
        text-align: center !important;
        margin: 50px auto 0 !important;
        padding: 30px !important;
        background: #f9f9f9 !important;
        border-radius: 12px !important;
        max-width: 800px !important;
    }

    .faq-section .faq-cta p {
        font-size: 16px !important;
        color: #666666 !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
    }

    .faq-section .btn-cta {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 14px 30px !important;
        background: linear-gradient(135deg, #008755, #4ec3ec) !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        font-family: 'Poppins', sans-serif !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }

    .faq-section .btn-cta:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 30px rgba(0, 135, 85, 0.3) !important;
    }

    /* Step Transitions and Animations */
    .form-step {
        animation: fadeIn 0.4s ease forwards;
    }

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

    /* Project Card Hover Animation */
    .project-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 135, 85, 0.15);
    }

    .project-card.selected {
        animation: selectPulse 0.5s ease;
    }

    @keyframes selectPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }

    /* Module Card Animation */
    .module-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .module-card.selected {
        animation: moduleSelect 0.3s ease;
    }

    @keyframes moduleSelect {
        0% { transform: scale(1); }
        50% { transform: scale(1.03); }
        100% { transform: scale(1); }
    }

    /* Button Animations */
    .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .btn:active {
        transform: translateY(-1px);
    }

    /* Price Update Animation */
    @keyframes priceUpdate {
        0% { transform: scale(1); color: inherit; }
        50% { transform: scale(1.1); color: var(--primary-blue); }
        100% { transform: scale(1); color: inherit; }
    }

    .price-row-value.updating {
        animation: priceUpdate 0.4s ease;
    }

    .quote-badges {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .quote-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        padding: 12px 24px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
    }

    .quote-badge i {
        font-size: 24px;
    }

    .quote-section {
        padding: 80px 0;
        background: var(--light-gray);
    }

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

    .quote-form {
        background: white;
        padding: 50px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

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

    .step-indicator {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        position: relative;
    }

    .step-indicator::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background: #e5e5e5;
        z-index: 0;
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e5e5e5;
        color: #999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }

    .step.active .step-number {
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        color: white;
        transform: scale(1.2);
    }

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

    .step-label {
        font-size: 13px;
        color: #999;
        font-weight: 500;
        text-align: center;
    }

    .step.active .step-label {
        color: var(--primary-green);
        font-weight: 600;
    }

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

    .form-group label {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        margin-bottom: 10px;
        color: var(--dark);
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e5e5e5;
        border-radius: 8px;
        font-family: 'Lato', sans-serif;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(0, 135, 85, 0.1);
    }

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

    .error-message {
        color: #dc3545;
        font-size: 13px;
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 5px;
        animation: slideDown 0.3s ease;
    }

    .error-message::before {
        content: '⚠';
        font-size: 14px;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Project Type Cards */
    .project-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .project-card {
        border: 2px solid #e5e5e5;
        border-radius: 12px;
        padding: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
        user-select: none;
        outline: none;
        position: relative;
    }

    .project-card:hover {
        border-color: var(--primary-green);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 135, 85, 0.15);
    }

    .project-card:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(78, 195, 236, 0.3);
    }

    .project-card.selected {
        border-color: var(--primary-green);
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.05), rgba(78, 195, 236, 0.05));
        box-shadow: 0 10px 30px rgba(0, 135, 85, 0.2);
        animation: cardSelect 0.3s ease;
    }

    @keyframes cardSelect {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .project-card input[type="radio"] {
        display: none;
    }

    .project-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .project-card-title {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: var(--dark);
    }

    .project-card-price {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-green);
    }

    .project-card-desc {
        color: var(--gray);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .project-card-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .project-card-features li {
        padding: 5px 0;
        font-size: 13px;
        color: var(--gray);
    }

    .project-card-features li i {
        color: var(--primary-green);
        margin-right: 8px;
    }

    /* Modules Configurator */
    .modules-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .module-card {
        position: relative;
        border: 2px solid #e5e5e5;
        border-radius: 12px;
        padding: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        cursor: pointer;
        user-select: none;
        outline: none;
    }

    .module-card:hover {
        border-color: var(--primary-green);
        box-shadow: 0 5px 15px rgba(0, 135, 85, 0.1);
        transform: translateY(-2px);
    }

    .module-card:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(78, 195, 236, 0.3);
    }

    .module-card.selected {
        border-color: var(--primary-green);
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.08), rgba(78, 195, 236, 0.08));
        box-shadow: 0 5px 20px rgba(0, 135, 85, 0.2);
        animation: moduleSelect 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes moduleSelect {
        0% { transform: scale(1); }
        30% { transform: scale(1.05); }
        50% { transform: scale(0.98); }
        70% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }

    .module-card.selected::before {
        content: '✓';
        position: absolute;
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        background: var(--primary-green);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        animation: checkmarkAppear 0.3s ease;
    }

    @keyframes checkmarkAppear {
        0% { transform: scale(0) rotate(-180deg); opacity: 0; }
        50% { transform: scale(1.2) rotate(0deg); }
        100% { transform: scale(1) rotate(0deg); opacity: 1; }
    }

    .module-card:has(input[disabled]) {
        cursor: default;
        opacity: 0.8;
    }

    .module-card:has(input[disabled]):hover {
        transform: none;
    }

    .module-card:has(input[disabled])::before {
        display: none;
    }

    /* Modules Counter Badge */
    .modules-counter-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        color: white;
        padding: 12px 20px;
        border-radius: 50px;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 4px 15px rgba(0, 135, 85, 0.3);
    }

    .modules-counter-label {
        font-size: 14px;
        font-weight: 500;
    }

    .modules-counter-value {
        background: white;
        color: var(--primary-green);
        font-weight: 700;
        font-size: 18px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .counter-bounce {
        animation: counterBounce 0.5s ease;
    }

    @keyframes counterBounce {
        0%, 100% { transform: scale(1); }
        25% { transform: scale(1.2); }
        50% { transform: scale(0.9); }
        75% { transform: scale(1.1); }
    }

    .module-header {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }

    .module-checkbox {
        width: 24px;
        height: 24px;
        cursor: pointer;
        margin-top: 2px;
        accent-color: var(--primary-green);
        transition: transform 0.2s ease;
    }

    .module-checkbox:not(:disabled):hover {
        transform: scale(1.15);
    }

    .module-checkbox:checked {
        transform: scale(1.1);
    }

    .module-info {
        flex: 1;
    }

    .module-title {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .module-price {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 10px;
    }

    .module-desc {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.5;
    }

    /* Quantity Selector */
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        border: 2px solid var(--primary-green);
        background: white;
        color: var(--primary-green);
        border-radius: 6px;
        cursor: pointer;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .quantity-btn:hover {
        background: var(--primary-green);
        color: white;
    }

    .quantity-input {
        width: 60px;
        text-align: center;
        border: 2px solid #e5e5e5;
        border-radius: 6px;
        padding: 5px;
    }

    /* Price Summary */
    .price-summary {
        position: sticky;
        top: 20px;
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.05), rgba(78, 195, 236, 0.05));
        border: 2px solid var(--primary-green);
        border-radius: 12px;
        padding: 25px;
        margin-top: 30px;
    }

    .price-summary-title {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 20px;
        text-align: center;
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .price-row:last-child {
        border-bottom: none;
    }

    .price-row-label {
        font-size: 14px;
        color: var(--gray);
    }

    .price-row-value {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
    }

    .price-total {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid var(--primary-green);
    }

    .price-total .price-row-label {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
    }

    .price-total .price-row-value {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-green);
    }

    .price-note {
        margin-top: 15px;
        font-size: 12px;
        color: var(--gray);
        text-align: center;
        line-height: 1.5;
    }

    /* Quote Preview */
    .quote-preview {
        background: white;
        border: 2px solid #e5e5e5;
        border-radius: 12px;
        padding: 40px;
        margin-bottom: 30px;
    }

    .quote-preview-header {
        border-bottom: 3px solid var(--primary-green);
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .quote-preview-logo {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 10px;
    }

    .quote-preview-title {
        font-size: 14px;
        color: var(--gray);
    }

    .quote-section-title {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--dark);
        margin: 25px 0 15px 0;
        padding-bottom: 8px;
        border-bottom: 2px solid #e5e5e5;
    }

    .quote-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .quote-info-item {
        font-size: 14px;
    }

    .quote-info-label {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .quote-info-value {
        color: var(--gray);
    }

    .quote-items-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .quote-items-table th {
        background: var(--light-gray);
        padding: 12px;
        text-align: left;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
        border-bottom: 2px solid #e5e5e5;
    }

    .quote-items-table td {
        padding: 12px;
        font-size: 14px;
        color: var(--gray);
        border-bottom: 1px solid #e5e5e5;
    }

    .quote-items-table tr:last-child td {
        border-bottom: none;
    }

    .quote-total-row {
        background: linear-gradient(135deg, rgba(0, 135, 85, 0.05), rgba(78, 195, 236, 0.05));
        font-weight: 700;
    }

    .quote-total-row td {
        padding: 15px 12px;
        font-size: 16px;
        color: var(--dark);
    }

    .quote-footer {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
        font-size: 12px;
        color: var(--gray);
        line-height: 1.8;
    }

    .form-buttons {
        display: flex;
        gap: 15px;
        margin-top: 40px;
    }

    .btn {
        padding: 14px 30px;
        border: none;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-prev {
        background: #e5e5e5;
        color: #666;
    }

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

    .btn-next {
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        color: white;
    }

    .btn-next:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 135, 85, 0.3);
    }

    .btn-download {
        background: white;
        border: 2px solid var(--primary-green);
        color: var(--primary-green);
    }

    .btn-download:hover {
        background: var(--primary-green);
        color: white;
        transform: translateY(-2px);
    }

    .btn-submit {
        width: 100%;
        background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        color: white;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 135, 85, 0.3);
    }

    .btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .success-message {
        text-align: center;
        padding: 60px 20px;
    }

    .success-icon {
        font-size: 80px;
        color: var(--primary-green);
        margin-bottom: 20px;
    }

    .success-title {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .success-text {
        font-size: 18px;
        color: var(--gray);
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    @media (max-width: 992px) {
        .trust-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .trust-item {
            padding: 20px 10px;
        }

        .trust-number {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .quote-hero {
            padding: 60px 0 50px;
        }

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

        .hero-icon {
            width: 70px;
            height: 70px;
        }

        .hero-icon i {
            font-size: 30px;
        }

        .quote-hero .hero-subtitle {
            font-size: 16px;
            padding: 0 20px;
        }

        .quote-badges {
            gap: 15px;
        }

        .quote-badge {
            padding: 10px 18px;
            font-size: 13px;
        }

        .trust-section {
            padding: 30px 0;
        }

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

        .trust-item {
            padding: 20px 15px;
        }

        .trust-number {
            font-size: 28px;
        }

        .trust-label {
            font-size: 12px;
        }

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

        .step-label {
            font-size: 11px;
        }

        .project-types {
            grid-template-columns: 1fr;
        }

        .project-badge {
            top: -10px;
            right: 15px;
            font-size: 11px;
            padding: 5px 12px;
        }

        .modules-grid {
            grid-template-columns: 1fr;
        }

        .modules-counter-badge {
            padding: 8px 15px;
            font-size: 12px;
        }

        .modules-counter-label {
            display: none;
        }

        .modules-counter-value {
            width: 32px;
            height: 32px;
            font-size: 16px;
        }

        .quote-info-grid {
            grid-template-columns: 1fr;
        }

        .quote-preview {
            padding: 25px 15px;
        }

        .quote-items-table {
            font-size: 12px;
        }

        .quote-items-table th,
        .quote-items-table td {
            padding: 8px;
        }
    }

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

        .hero-icon {
            width: 60px;
            height: 60px;
        }

        .hero-icon i {
            font-size: 26px;
        }

        .quote-badges {
            flex-direction: column;
            align-items: center;
        }

        .quote-badge {
            width: 100%;
            max-width: 200px;
            justify-content: center;
        }

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

        .trust-item {
            padding: 18px 12px;
        }

        .trust-number {
            font-size: 24px;
        }

        .trust-label {
            font-size: 11px;
        }

        .payment-options {
            grid-template-columns: 1fr;
        }

        .faq-title {
            font-size: 28px;
        }

        .faq-subtitle {
            font-size: 16px;
            padding: 0 15px;
        }

        .faq-question {
            padding: 15px 20px;
        }

        .faq-question span {
            font-size: 14px;
        }

        .faq-item.open .faq-answer {
            padding: 0 20px 20px 20px;
        }
    }
