/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Lexend", sans-serif;
}
p{
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
/* Container */
.container {
    max-width: 1232px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 74px 0 114px;
    background: linear-gradient(275.55deg, #FFF1EB -3.88%, #ACE0F9 151.45%);
}
.header {
    text-align: center;
    margin-bottom: 32px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.main-heading {
    font-size: 58px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 86px;
}
.description {
    font-size: 18px;
    color: #000000;
    line-height: 32px;
    max-width: 1100px;
    margin: 0 auto 59px;
}
/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 590px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    overflow: hidden;
    padding: 23px 30px;
}
.card {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.card:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 31px;
}
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-content {
    text-align: left;
    flex: 1;
}
.card-label {
    font-size: 14px;
    color: #62748E;
    font-weight: 400;
    line-height: 20px;
}
.card-value {
    font-size: 16px;
    color: #0F172B;
    font-weight: 400;
    line-height: 24px;
}

/* Proposal Section */
.proposal-section {
    padding: 94px 0 129px;
    background: rgba(238, 242, 254, 1);
}
.section-heading {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
    line-height: 48px;
}
.section-subtitle {
    font-size: 16px;
    color: #000000;
    text-align: center;
    margin-bottom: 32px;
    line-height: 32px;
}
.proposal-table-container {
    background: white;
    border-radius: 20px;
    max-width: 100%;
    margin: 0 auto 40px;
    overflow: hidden;
    overflow-x: auto;
}
.proposal-table-container:last-child {
    margin-bottom: 0;
}
.proposal-table {
    width: 100%;
    border-collapse: collapse;
}
.proposal-table thead {
    background: #000000;
}
.proposal-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    line-height: 24px;
    font-family: "Lexend", sans-serif;
    white-space: nowrap;
}
.proposal-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.proposal-table tbody tr:last-child {
    border-bottom: none;
}
.proposal-table tbody td {
    padding: 16px 24px;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 24px;
}
.proposal-table tbody tr:not(.summary-row):not(.total-row):hover {
    background: #f9fafb;
}
/* Summary Rows */
.proposal-table tbody tr.summary-row {
    background: #F5F7FE;
    border-bottom: 0;
}
.summary-label {
    text-align: right;
    font-weight: 600;
    color: #1a1a2e;
}
.summary-value {
    font-weight: 600;
    color: #1a1a2e;
    text-align: right;
}
.text-right {
    text-align: right !important;
}
/* Total Row */
.total-row {
    border-bottom: none;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.total-label {
    text-align: right;
}
.proposal-table .total-row .total-value {
    font-size: 24px;
    font-weight: 600;
    color: #008DF2;
    line-height: 32px;
    text-align: right;
}
.proposal-table tbody .discount-value {
    text-align: right;
    color: #FF0000;
}

/* Detailed Pricing Section */
.detailed-pricing-section {
    margin-top: 60px;
    padding: 40px 0;
}

/* Timeline Section */
.timeline-section {
    padding: 87px 136px;
    background: linear-gradient(180deg, #FFF9F0 0%, rgba(255, 251, 245, 0.9) 28.22%);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.timeline-card {
    border-radius: 20px;
    padding: 33px 42px;
    display: flex;
    gap: 24px;
}
.timeline-blue {
    background: #E1F1FF;
}
.timeline-beige {
    background: #FFF3E3;
}
.timeline-green {
    background: rgba(192, 238, 208, 0.4);
}
.timeline-purple {
    background: #FAF0FF;
}
.timeline-number {
    font-size: 25px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.34);
    letter-spacing: 0.5px;
    line-height: 32px;
    font-family: "Lexend", sans-serif;
}
.timeline-content {
    display: flex;
    flex-direction: column;
}
.timeline-title {
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
    line-height: 32px;
}
.timeline-description {
    font-size: 15.5px;
    color: #000000;
    line-height: 26.6px;
    margin: 0 0 15.52px;
}
.timeline-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.clock-icon {
    flex-shrink: 0;
}
.timeline-duration span {
    font-size: 17px;
    font-weight: 500;
    color: #008DF2;
    line-height: 26px;
}

/* Trusted Clients Section */
.clients-section {
    padding: 98px 0 127px;
    background: linear-gradient(225.6deg, rgba(255, 241, 235, 0.43) 7.39%, rgba(172, 224, 249, 0.43) 101.17%);
}
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 100%;
    margin: 35px auto 0;
}
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}
.client-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Terms & Conditions Section */
.terms-section {
    padding: 103px 0 0;
    background: rgba(255, 250, 243, 0.86);
}
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
}
.terms-content {
    display: grid;
    grid-template-columns: 234px 1fr;
    gap: 61px;
    align-items: start;
    margin: 0 auto 113px;
    max-width: 760px;
}
.terms-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.terms-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.term-item {
    position: relative;
    padding-left: 46px;
    list-style-type: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #000000;
}
.term-item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 26px;
    width: 26px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjc1IDI1LjI1QzUuODU5NzYgMjUuMjUgMC4yNSAxOS42NDAyIDAuMjUgMTIuNzVDMC4yNSA1Ljg1OTc2IDUuODU5NzYgMC4yNSAxMi43NSAwLjI1QzE5LjY0MDIgMC4yNSAyNS4yNSA1Ljg1OTc2IDI1LjI1IDEyLjc1QzI1LjI1IDE5LjY0MDIgMTkuNjQwMiAyNS4yNSAxMi43NSAyNS4yNVpNMTIuNzUgMi4zODQxNUM3LjA0ODc4IDIuMzg0MTUgMi4zODQxNSA3LjA0ODc4IDIuMzg0MTUgMTIuNzVDMi4zODQxNSAxOC40NTEyIDcuMDQ4NzggMjMuMTE1OSAxMi43NSAyMy4xMTU5QzE4LjQ1MTIgMjMuMTE1OSAyMy4xMTU5IDE4LjQ1MTIgMjMuMTE1OSAxMi43NUMyMy4xMTU5IDcuMDQ4NzggMTguNDUxMiAyLjM4NDE1IDEyLjc1IDIuMzg0MTVaIiBmaWxsPSIjMDA4REYyIiBzdHJva2U9IiMwMDhERjIiIHN0cm9rZS13aWR0aD0iMC41Ii8+CjxwYXRoIGQ9Ik0xNy42NTg1IDkuNTE5MzRDMTcuMjMxNyA5LjA5MjUxIDE2LjU2MSA5LjA5MjUxIDE2LjE2NDYgOS41MTkzNEwxMS45NTczIDEzLjcyNjdMOS45NDUxIDExLjcxNDVDOS41MTgyNyAxMS4yODc2IDguODQ3NTQgMTEuMjg3NiA4LjQyMDcxIDExLjcxNDVDNy45OTM4OCAxMi4xNDEzIDcuOTkzODggMTIuODEyIDguNDIwNzEgMTMuMjM4OUwxMS4xOTUxIDE2LjAxMzJDMTEuNDA4NSAxNi4yMjY3IDExLjY4MjkgMTYuMzE4MSAxMS45NTczIDE2LjMxODFDMTIuMjMxNyAxNi4zMTgxIDEyLjUwNjEgMTYuMjI2NyAxMi43MTk1IDE2LjAxMzJMMTcuNjg5IDExLjA0MzdDMTguMDg1MyAxMC42MTY5IDE4LjA4NTMgOS45NDYxNyAxNy42NTg1IDkuNTE5MzRaIiBmaWxsPSIjMDA4REYyIiBzdHJva2U9IiMwMDhERjIiIHN0cm9rZS13aWR0aD0iMC41Ii8+Cjwvc3ZnPg==) no-repeat center;
    transform: translateY(-50%);
}

/* Signature Card */
.signature-card {
    background: white;
    border-radius: 20px;
    padding: 76px 60px;
    text-align: center;
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.1);
}
.signature-agreement {
    font-size: 20px;
    color: #000000;
    line-height: 35px;
    margin: 0 auto 38px auto;
    max-width: 842px;
    font-weight: 500;
}
.signature-input-container {
    margin-bottom: 18px;
}
.signature-label {
    display: block;
    font-size: 16px;
    color: #000000;
    margin-bottom: 13px;
    font-weight: 400;
    line-height: 28px;
}
.signature-input {
    width: 100%;
    max-width: 479px;
    padding: 0 19px 3px;
    font-size: 19px;
    border: 2px solid transparent;
    background: #EFEFEF;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 38px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
    font-style: italic;
    text-align: center;
}
.signature-input.error {
    border-color: #EF4444;
    background: #FEE2E2;
}
.error-message {
    color: #EF4444;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0 0 0;
    text-align: center;
    line-height: 20px;
    animation: shake 0.3s ease-in-out;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.accept-button {
    background: #008DF2;
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 10.5px 55px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 21px;
}
.accept-button:hover {
    background: #0284C7;
}
/* Success Message */
.success-message {
    background: white;
    border-radius: 20px;
    padding: 135px 60px;
    text-align: center;
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}
.success-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.success-title {
    font-size: 25px;
    font-weight: 500;
    color: #0DC15C;
    margin: 0;
    line-height: 35px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 52px 0 43px;
}
.copyright {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 400;
    line-height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 0 80px;
    }
    .main-heading {
        font-size: 36px;
        line-height: 58px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }

    .logo-text {
        font-size: 24px;
    }

    .section-heading {
        font-size: 32px;
    }

    .proposal-section {
        padding: 60px 0;
    }

    .proposal-table-container {
        overflow-x: auto;
    }

    .proposal-table {
        min-width: 680px;
    }

    .proposal-table thead th,
    .proposal-table tbody td {
        padding: 16px;
        font-size: 14px;
    }

    .timeline-section {
        padding: 60px 24px;
    }

    .timeline-card {
        padding: 32px;
    }

    .timeline-title {
        font-size: 22px;
    }

    .timeline-description {
        font-size: 15px;
    }

    .clients-section {
        padding: 60px 24px;
    }

    .clients-logos {
        gap: 40px;
        margin-top: 40px;
    }

    .client-logo {
        min-width: 120px;
    }

    .logo-brezy {
        font-size: 28px;
    }

    .logo-lasculpte {
        font-size: 28px;
    }

    .logo-engine .logo-text {
        font-size: 24px;
    }

    .guitar-top {
        font-size: 20px;
    }

    .guitar-bottom {
        font-size: 18px;
    }

    .terms-section {
        padding: 60px 0 0;
    }
    .terms-list {
        gap: 15px;
    }

    .terms-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    .terms-heading {
        font-size: 36px;
        text-align: center;
    }

    .signature-card {
        padding: 40px 30px;
    }

    .signature-agreement {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 28px;
    }

    .signature-input {
        max-width: 100%;
    }

    .error-message {
        font-size: 13px;
    }

    .success-message {
        padding: 40px 30px;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .success-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .card:last-child {
        border-left: 0;
        padding-left: 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .main-content {
        padding: 60px 0;
    }
    .logo img {
        max-height: 35px;
    }
    .main-heading {
        font-size: 32px;
        line-height: 43px;
    }
    .description {
        font-size: 15px;
        margin-bottom: 39px;
    }
    .card-icon {
        width: 48px;
        height: 48px;
    }
    .section-heading {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .proposal-section {
        padding: 40px 0;
    }
    .proposal-table thead th,
    .proposal-table tbody td {
        padding: 12px;
        font-size: 13px;
    }
    .total-value {
        font-size: 20px;
    }
    .timeline-section {
        padding: 40px 0;
    }
    .timeline-card {
        padding: 24px;
    }
    .timeline-number {
        font-size: 18px;
    }
    .timeline-title {
        font-size: 20px;
    }
    .timeline-description {
        font-size: 14px;
    }
    .timeline-duration span {
        font-size: 14px;
    }
    .clients-section {
        padding: 40px 0;
    }
    .clients-logos {
        gap: 30px;
        margin-top: 30px;
    }
    .guitar-top {
        font-size: 18px;
        letter-spacing: 3px;
    }
    .guitar-bottom {
        font-size: 16px;
    }
    .terms-section {
        padding: 40px 0 0;
    }
    .terms-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    .terms-heading {
        font-size: 28px;
    }
    .signature-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .signature-agreement {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .signature-label {
        font-size: 13px;
    }
    .signature-input {
        font-size: 15px;
    }
    .error-message {
        font-size: 12px;
    }
    .accept-button {
        width: 100%;
    }
    .success-message {
        padding: 30px 20px;
    }
    .success-icon svg {
        width: 50px;
        height: 50px;
    }
    .success-title {
        font-size: 18px;
    }
    .footer {
        padding-top: 30px;
    }
    .copyright {
        font-size: 13px;
    }
}
