/* System Overwrite */
html, body {
    overflow-x: clip;
}

/* Pricing Hero Section */
.pricing-hero-section {
    background: transparent;
    position: relative;
}

.pricing-hero-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.pricing-hero-content {
    flex: 1;
    max-width: 375px;
}

.pricing-hero-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    gap: 0.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.pricing-label-icon {
    width: 1.1rem;
    height: 1.1rem;
}

.pricing-hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    color: white;
}

.pricing-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1rem;
    font-weight: 400;
    white-space: nowrap;
    font-style: italic;
}

.pricing-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 400;
    font-style: italic;

}

.pricing-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-printer-img {
    width: 100%;
    height: 100%;
    transform: translateX(10%);
}

/* Pricing Packages Section */
.pricing-packages-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
}

.pricing-packages-wrapper {
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: auto;
    z-index: 2;
}

.pricing-packages-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    gap: 0.5rem;
    border-radius: 50px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.pricing-packages-label .pricing-label-icon {
    width: 25px;
    height: 25px;
}

.pricing-packages-subtitle {
    margin: 2rem 0;
    font-size: 2.25rem;
    font-weight: 600;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features-list li {
    font-size: 1.25rem;
    color: #999;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.25;
    font-weight: 700;
}

.pricing-features-list li::before {
    content: '•';
    color: #999;
    position: relative;
    left: -10px;
    font-size: 1.2rem;
    font-weight: 900;
}

@media (max-width: 1024px) {
    .pricing-hero-visual {
        height: 350px;
    }

    .pricing-hero-title {
        font-size: 3rem;
    }

    .pricing-packages-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .pricing-hero-wrapper {
        margin-top: 6rem;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2.5rem;
    }

    .pricing-packages-wrapper {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .pricing-packages-left, .pricing-packages-right {
        width: 100%;
        text-align: center;
    }

    .pricing-features-list {
        width: 100%;
        text-align: center;
    }

    .pricing-packages-wheel {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-packages-title {
        font-size: 1.75rem;
    }

    
}




/* Web Development Section */
.web-development-section {
    background: transparent;
    text-align: center;
}

.web-development-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.web-development-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    gap: 0.5rem;
    margin-bottom: 4rem;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.web-development-label .web-dev-label-icon {
    width: 25px;
    height: 25px;
}

.web-development-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
    background: rgb(27, 27, 27);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card-migration {
    border-top: 10px solid #8db6ee;
}

.pricing-card-basic {
    border-top: 10px solid #4a90e2;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-name {
    font-size: 1.375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.pricing-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.pricing-card-price-note {
    font-size: 0.875rem;
    color: #999999;
}

.pricing-card-description {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.pricing-card-features {
    list-style: none;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.pricing-card-features li {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
}

.pricing-card-startup .pricing-special-feature {
    color: #7d97f4;
}

.pricing-card-business .pricing-special-feature {
    color: #febbba;
}

.pricing-card-enterprise .pricing-special-feature {
    color: #ff9784;
}

.pricing-card-features li::before {
    content: "";
    position: absolute;
    left: -2rem;
    width: 1.3rem;
    height: 1.3rem;
    background-color: currentColor;
    -webkit-mask: url('img/grayCheck.svg') no-repeat center / contain;
    mask: url('img/grayCheck.svg') no-repeat center / contain;
}


.pricing-card-button {
    background: #4F52FF;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
    margin-top: auto;
}

.pricing-card-button:hover {
    background: rgb(79,82,255, 0.7);
}

.pricing-card-launch {
    font-size: 0.875rem;
    color: #999999;
    text-align: center;
}

/* ERP Services Section */
.erp-services-section {
    position: relative;
    background: transparent;
    text-align: center;
    z-index: 99;
}

.erp-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-services-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    gap: 0.5rem;
    margin-bottom: 4rem;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.erp-services-label .erp-label-icon {
    width: 25px;
    height: 25px;
}

.erp-services-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.pricing-card-startup {
    border-top: 10px solid rgb(254, 187, 186);
}

.pricing-card-business {
    border-top: 10px solid rgb(255,151,132);
}

.pricing-card-enterprise {
    border-top: 10px solid rgb(181,52,34);
}

.pricing-special-feature {
    font-weight: 600;
}

/* Pricing Table Styles */
.pricing-table-container {
    margin: 2rem 0 3rem;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgb(27, 27, 27);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
}

.pricing-table thead {
    background: linear-gradient(178deg, rgb(41, 41, 41, 1) 0%, rgb(15, 15, 15, 1) 50%);
}

.pricing-table-header-work,
.pricing-table-header-range,
.pricing-table-header-coverage {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-table-header-range {
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table-work-type,
.pricing-table-range,
.pricing-table-coverage {
    padding: 1.5rem 1.5rem;
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-table-work-type {
    font-weight: 600;
    color: #ff9784;
}

.pricing-table-range {
    text-align: right;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.pricing-table-coverage {
    color: #cccccc;
    font-style: italic;
}

.pricing-coverage-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-plain-english {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    font-style: normal;
}

.pricing-examples-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-examples-list li {
    font-size: 0.9rem;
    color: #cccccc;
    padding-left: 1.25rem;
    position: relative;
    font-style: normal;
    line-height: 1.5;
}

.pricing-examples-list li::before {
    content: '•';
    color: #ff9784;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: 900;
}

.pricing-emotional-promise {
    font-size: 0.95rem;
    color: #ff9784;
    margin: 0;
    margin-top: 0.5rem;
    font-style: italic;
    font-weight: 500;
}

.pricing-emotional-promise em {
    font-style: italic;
}

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

.pricing-table-cta .pricing-card-button {
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table-header-work,
    .pricing-table-header-range,
    .pricing-table-header-coverage,
    .pricing-table-work-type,
    .pricing-table-range,
    .pricing-table-coverage {
        padding: 1rem;
    }

    .pricing-plain-english {
        font-size: 0.95rem;
    }

    .pricing-examples-list li {
        font-size: 0.85rem;
    }

    .pricing-emotional-promise {
        font-size: 0.9rem;
    }

    .web-development-cards,
    .erp-services-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .web-development-title,
    .erp-services-title {
        font-size: 1.875rem;
    }

    .pricing-card {
        max-width: 400px;
    }

    .pricing-coverage-content {
        gap: 0.75rem;
    }

    .pricing-plain-english {
        font-size: 0.9rem;
    }

    .pricing-examples-list {
        gap: 0.4rem;
    }

    .pricing-examples-list li {
        font-size: 0.8rem;
        padding-left: 1rem;
    }

    .pricing-emotional-promise {
        font-size: 0.85rem;
    }
}




/* Branding Services Section */
.branding-services-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.branding-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.branding-services-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.branding-services-label .branding-label-icon {
    width: 25px;
    height: 25px;
}

.branding-services-description {
    font-size: 1.125rem;
    color: #9e9e9e;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 4rem;
}

/* Pricing Tables */
.pricing-table-section {
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table-header {
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    margin: 0 auto;
}

.pricing-table-title {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    gap: 0.5rem;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.pricing-table-title .pricing-table-label-icon {
    width: 25px;
    height: 25px;
}

.pricing-consultation-btn {
    background: #4F52FF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pricing-consultation-btn:hover {
    background: #2c5aa0;
}

/* Branding Table Layout */
.branding-pricing-container {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 16px;
}

.branding-vertical-backgrounds {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

.branding-vertical-bg {
    border-radius: 20px;
    position: relative;
}

.branding-vertical-bg-empty {
    /* Empty space for service labels */
}

.branding-vertical-bg-basic {
    background: rgb(254,187,186);
}

.branding-vertical-bg-advanced {
    background: rgb(255,151,132);
}

.branding-vertical-bg-premium {
    background: rgb(237,101,76);
}

.branding-table-headers {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: -1rem;
}

.branding-header-empty {
    /* Empty space above service labels */
}

.branding-column-header {
    text-align: center;
    margin-bottom: 60px;
}

.branding-column-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: white;
    padding: 1rem 0;
    border-radius: 8px 8px 0 0;
}

.copywriting-table-subheader {
    font-size: 0.85rem;
    color: #e8e8e8;
    font-style: italic;
    font-weight: 400;
    margin: 0.25rem 0;
}

.branding-pricing-rows {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.branding-pricing-row {
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr;
    gap: 2rem;
    background: linear-gradient(178deg, rgb(41, 41, 41, 1) 0%, rgb(15, 15, 15, 1) 50%);
    border-radius: 12px 0 0 12px;
    padding: .5rem 0;
    align-items: center;
}
.branding-pricing-row::after {
    content: '';
    position: absolute;
    top: 0;
    right: -35px;
    width: 35px;
    height: 100%;
    background: rgb(15, 15, 15);
    border-radius: 0 12px 12px 0;

}

.branding-service-label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.branding-service-icon {
    width: 2.5rem;
}

.branding-service-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.branding-pricing-cell {
    font-style: italic;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.branding-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.branding-price-details {
    font-size: 0.85rem;
    color: #999999;
    font-style: italic;
}

.branding-mobile-layout {
    display: none;
}

@media (max-width: 1024px) {
    .branding-pricing-container {
        padding: 0 1rem;
    }

    .branding-vertical-backgrounds {
        display: none;
    }

    .branding-table-headers {
        display: none;
    }

    .branding-pricing-rows {
        display: none;
    }

    .branding-mobile-layout {
        display: block;
    }

    .branding-mobile-service {
        margin-bottom: 3rem;
    }

    .branding-mobile-service:last-child {
        margin-bottom: 0;
    }

    .branding-mobile-service-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgb(200, 101, 65);
        border-radius: 12px;
        border: 1px solid rgba(255, 107, 53, 0.3);
    }

    .branding-service-header-mission {
        display: flex;
        margin-bottom: 0;
    }

    .branding-mobile-service-name {
        font-size: 1.25rem;
        font-weight: 600;
        color: white;
    }

    .branding-mobile-pricing-options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .branding-mobile-pricing-card {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .branding-mobile-tier-name {
        font-size: 1.125rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.5rem;
    }

    .branding-mobile-price {
        font-size: 1.75rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.25rem;
    }

    .branding-mobile-price-details {
        font-size: 0.9rem;
        color: #999999;
        font-style: italic;
    }

    .pricing-table-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .branding-vertical-backgrounds,
    .branding-table-headers,
    .branding-pricing-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .branding-service-label {
        justify-content: center;
    }

    .branding-vertical-backgrounds {
        display: none; /* Hide vertical backgrounds on mobile */
    }

    .pricing-table-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pricing-table-title, .pricing-consultation-btn {
        display: none;
    }

    .branding-services-description {
        margin-bottom: 0;
    }
}

footer {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .branding-services-title {
        font-size: 2rem;
    }
}