
/* =========================================================
   TRIMEROUS TECHNOLOGY
   PREMIUM PRICING PAGE CSS
   ========================================================= */


/* =========================================================
   GLOBAL PRICING VARIABLES
   ========================================================= */

.pricing-page {
    --pricing-orange: #f05125;
    --pricing-orange-dark: #d94118;
    --pricing-yellow: #faa41a;
    --pricing-dark: #111827;
    --pricing-dark-2: #1f2937;
    --pricing-text: #5f6672;
    --pricing-muted: #89919d;
    --pricing-border: #e8ebef;
    --pricing-light: #f7f8fa;
    --pricing-white: #ffffff;
    --pricing-success: #16a34a;
    --pricing-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
    --pricing-shadow-hover: 0 25px 70px rgba(15, 23, 42, 0.14);

    font-family: 'Poppins', sans-serif;
    color: var(--pricing-text);
    background: #ffffff;
    overflow: hidden;
}

.pricing-page *,
.pricing-page *::before,
.pricing-page *::after {
    box-sizing: border-box;
}

.pricing-page a {
    text-decoration: none;
}

.pricing-page img {
    max-width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.pricing-hero {
    position: relative;
    padding: 150px 0 105px;
    background:
        radial-gradient(circle at 15% 20%, rgba(240, 81, 37, 0.08), transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(250, 164, 26, 0.09), transparent 30%),
        linear-gradient(180deg, #bbb8b8 0%, #c3d6e9 100%);
}

.pricing-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(240, 81, 37, 0.10);
    border-radius: 50%;
    left: -160px;
    top: 100px;
}

.pricing-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(250, 164, 26, 0.12);
    border-radius: 50%;
    right: -120px;
    bottom: 30px;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 8px 18px;
    border: 1px solid rgba(240, 81, 37, 0.18);
    border-radius: 50px;
    background: rgba(240, 81, 37, 0.05);
    color: var(--pricing-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.pricing-main-title {
    max-width: 900px;
    margin: 0 auto 22px;
    color: var(--pricing-dark);
    font-size: 52px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.pricing-main-description {
    max-width: 760px;
    margin: 0 auto;
    color: #69717d;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

.pricing-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.pricing-primary-btn,
.pricing-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-primary-btn {
    background: var(--pricing-orange);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(240, 81, 37, 0.20);
}

.pricing-primary-btn:hover {
    background: var(--pricing-orange-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(240, 81, 37, 0.28);
}

.pricing-secondary-btn {
    border: 1px solid #dfe3e8;
    background: #ffffff;
    color: var(--pricing-dark);
}

.pricing-secondary-btn i {
    margin-right: 8px;
    color: var(--pricing-orange);
}

.pricing-secondary-btn:hover {
    border-color: var(--pricing-orange);
    color: var(--pricing-orange);
    transform: translateY(-2px);
}

.pricing-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
}

.pricing-trust-line span {
    color: #747c87;
    font-size: 12px;
    font-weight: 500;
}

.pricing-trust-line i {
    margin-right: 6px;
    color: var(--pricing-success);
}


/* =========================================================
   COMMON SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--pricing-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: var(--pricing-dark);
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #737b87;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   MONTHLY PLANS
   ========================================================= */

.pricing-plans-section {
    position: relative;
    padding: 105px 0 85px;
    background: #ffffff;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-grid > [class*="col-"] {
    display: flex;
}

.pricing-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--pricing-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--pricing-shadow);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #dfe3e8;
    box-shadow: var(--pricing-shadow-hover);
}

.pricing-card-top {
    position: relative;
    padding: 34px 28px 27px;
    border-bottom: 1px solid #edf0f3;
}

.plan-label {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--pricing-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.pricing-card-top h3 {
    min-height: 54px;
    margin: 0 0 13px;
    color: var(--pricing-dark);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.plan-description {
    min-height: 94px;
    margin: 0;
    color: #747c87;
    font-size: 12px;
    line-height: 1.75;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-top: 25px;
    color: var(--pricing-dark);
    white-space: nowrap;
}

.plan-price .currency {
    margin-right: 3px;
    color: var(--pricing-orange);
    font-size: 19px;
    font-weight: 700;
}

.plan-price .amount {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

.plan-price .period {
    margin-left: 5px;
    color: #8b929c;
    font-size: 11px;
    font-weight: 500;
}

.enterprise-price .amount {
    font-size: 29px;
}

.price-note {
    min-height: 42px;
    margin: 12px 0 22px;
    color: #9299a3;
    font-size: 10px;
    line-height: 1.65;
}

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    width: 100%;
    padding: 0 18px;
    border: 1px solid #e0e4e9;
    border-radius: 7px;
    background: #ffffff;
    color: var(--pricing-dark);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    border-color: var(--pricing-orange);
    background: var(--pricing-orange);
    color: #ffffff;
}

.pricing-card-body {
    padding: 28px;
}

.pricing-card-body > h4 {
    margin: 0 0 18px;
    color: var(--pricing-dark);
    font-size: 13px;
    font-weight: 700;
}

.pricing-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-feature-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    color: #626a75;
    font-size: 11px;
    line-height: 1.55;
}

.pricing-feature-list li i {
    flex: 0 0 17px;
    margin-top: 2px;
    color: var(--pricing-success);
    font-size: 11px;
}

.pricing-feature-list li span {
    margin-left: 5px;
    color: #a0a7b0;
    font-size: 9px;
}

.plan-work {
    margin-top: 27px;
    padding-top: 23px;
    border-top: 1px solid #edf0f3;
}

.plan-work h5,
.plan-support h5 {
    margin: 0 0 15px;
    color: var(--pricing-dark);
    font-size: 12px;
    font-weight: 700;
}

.work-item {
    margin-bottom: 17px;
}

.work-item:last-child {
    margin-bottom: 0;
}

.work-item strong {
    display: block;
    margin-bottom: 4px;
    color: #333b47;
    font-size: 10px;
    font-weight: 700;
}

.work-item p {
    margin: 0;
    color: #7b838e;
    font-size: 10px;
    line-height: 1.7;
}

.work-item small {
    display: block;
    margin-top: 5px;
    color: #9a5d00;
    font-size: 9px;
    line-height: 1.55;
}

.plan-support {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #edf0f3;
}

.plan-support p {
    margin: 7px 0;
    color: #737b86;
    font-size: 10px;
}

.plan-support p i {
    width: 18px;
    color: var(--pricing-orange);
}


/* =========================================================
   MOST POPULAR
   ========================================================= */

.pricing-card-popular {
    border: 1.5px solid rgba(240, 81, 37, 0.45);
    box-shadow:
        0 20px 65px rgba(240, 81, 37, 0.12);
}

.pricing-card-popular:hover {
    border-color: var(--pricing-orange);
    box-shadow:
        0 28px 75px rgba(240, 81, 37, 0.18);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    padding: 9px 15px;
    border-radius: 0 0 0 10px;
    background: var(--pricing-orange);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.popular-btn {
    border-color: var(--pricing-orange);
    background: var(--pricing-orange);
    color: #ffffff;
}

.popular-btn:hover {
    border-color: var(--pricing-orange-dark);
    background: var(--pricing-orange-dark);
}


/* =========================================================
   ENTERPRISE
   ========================================================= */

.enterprise-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.enterprise-card .pricing-card-top {
    background:
        linear-gradient(
            145deg,
            rgba(240, 81, 37, 0.035),
            rgba(250, 164, 26, 0.045)
        );
}

.enterprise-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding: 16px;
    border: 1px solid #eceff2;
    border-radius: 9px;
    background: #fafbfc;
}

.enterprise-note-icon {
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(240, 81, 37, 0.09);
    color: var(--pricing-orange);
    font-size: 13px;
}

.enterprise-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--pricing-dark);
    font-size: 10px;
    font-weight: 700;
}

.enterprise-note p {
    margin: 0;
    color: #7d858f;
    font-size: 9px;
    line-height: 1.65;
}


/* =========================================================
   PRICING INFORMATION BOX
   ========================================================= */

.pricing-note-section {
    padding: 25px 0 95px;
    background: #ffffff;
}

.pricing-information-box {
    position: relative;
    padding: 45px 48px;
    border: 1px solid #ebeef2;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            #fafafa 0%,
            #ffffff 100%
        );
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}

.pricing-information-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    bottom: 25px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(
        180deg,
        var(--pricing-orange),
        var(--pricing-yellow)
    );
}

.pricing-information-box h3 {
    margin: 0 0 12px;
    color: var(--pricing-dark);
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

.pricing-information-box p {
    max-width: 760px;
    margin: 0;
    color: #737b85;
    font-size: 12px;
    line-height: 1.8;
}

.pricing-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 25px;
    border: 1px solid var(--pricing-orange);
    border-radius: 7px;
    color: var(--pricing-orange);
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-outline-btn:hover {
    background: var(--pricing-orange);
    color: #ffffff;
}


/* =========================================================
   ONE-TIME SERVICES
   ========================================================= */

.one-time-services-section {
    padding: 100px 0 80px;
    background: #f8f9fb;
}

.one-time-grid {
    align-items: stretch;
}

.one-time-grid > [class*="col-"] {
    display: flex;
}

.service-price-card {
    position: relative;
    width: 100%;
    padding: 29px 25px;
    border: 1px solid #e7eaee;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.045);
    transition: all 0.3s ease;
}

.service-price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 81, 37, 0.28);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 19px;
    border-radius: 10px;
    background: rgba(240, 81, 37, 0.08);
    color: var(--pricing-orange);
    font-size: 15px;
}

.service-price-card h4 {
    min-height: 42px;
    margin: 0 0 12px;
    color: var(--pricing-dark);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.service-price {
    margin-bottom: 13px;
    color: var(--pricing-orange);
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
}

.service-price-card p {
    min-height: 68px;
    margin: 0 0 19px;
    color: #7c848e;
    font-size: 10px;
    line-height: 1.7;
}

.service-price-card > a {
    display: inline-flex;
    align-items: center;
    color: var(--pricing-dark);
    font-size: 10px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.service-price-card > a i {
    margin-left: 7px;
    color: var(--pricing-orange);
    transition: transform 0.25s ease;
}

.service-price-card > a:hover {
    color: var(--pricing-orange);
}

.service-price-card > a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ADD-ONS
   ========================================================= */

.addons-section {
    padding: 100px 0 95px;
    background: #ffffff;
}

.addons-table-wrapper {
    overflow: hidden;
    border: 1px solid #e7eaee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.055);
}

.addons-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.addons-table thead {
    background: #f8f9fa;
}

.addons-table th {
    padding: 18px 22px;
    border-bottom: 1px solid #e5e8ec;
    color: var(--pricing-dark);
    font-size: 11px;
    font-weight: 700;
    text-align: left;
}

.addons-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f3;
    color: #69717d;
    font-size: 11px;
    line-height: 1.5;
}

.addons-table tbody tr:last-child td {
    border-bottom: none;
}

.addons-table tbody tr {
    transition: background 0.2s ease;
}

.addons-table tbody tr:hover {
    background: #fafbfc;
}

.addons-table td:nth-child(2) {
    color: var(--pricing-orange);
    font-weight: 700;
}

.addons-table td:nth-child(3) {
    color: #9299a3;
    font-size: 10px;
}

.ad-spend-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 920px;
    margin: 25px auto 0;
    padding: 17px 20px;
    border: 1px solid #f0e5cf;
    border-radius: 9px;
    background: #fffaf0;
}

.ad-spend-notice > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #d58b0c;
    font-size: 14px;
}

.ad-spend-notice p {
    margin: 0;
    color: #7c6b4c;
    font-size: 10px;
    line-height: 1.7;
}

.ad-spend-notice strong {
    color: #5f4c29;
}


/* =========================================================
   PROCESS SECTION
   ========================================================= */

.pricing-process-section {
    padding: 100px 0 95px;
    background: #f8f9fb;
}

.pricing-process-grid {
    align-items: stretch;
}

.pricing-process-grid > [class*="col-"] {
    display: flex;
}

.process-card {
    position: relative;
    width: 100%;
    padding: 34px 27px 30px;
    border: 1px solid #e5e8ec;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.045);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

.process-number {
    position: absolute;
    top: 17px;
    right: 19px;
    color: #edf0f3;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 19px;
    border-radius: 10px;
    background: rgba(240, 81, 37, 0.08);
    color: var(--pricing-orange);
    font-size: 15px;
}

.process-card h4 {
    margin: 0 0 11px;
    color: var(--pricing-dark);
    font-size: 15px;
    font-weight: 700;
}

.process-card p {
    margin: 0;
    color: #7b838d;
    font-size: 10px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pricing-final-cta {
    padding: 35px 0 90px;
    background: #f8f9fb;
}

.pricing-cta-box {
    position: relative;
    overflow: hidden;
    padding: 52px 50px;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #161a20 0%,
            #222830 100%
        );
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.pricing-cta-box::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -110px;
    border: 1px solid rgba(250, 164, 26, 0.25);
    border-radius: 50%;
}

.pricing-cta-box::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -80px;
    bottom: -100px;
    border: 1px solid rgba(240, 81, 37, 0.25);
    border-radius: 50%;
}

.pricing-cta-box .section-subtitle {
    color: var(--pricing-yellow);
}

.pricing-cta-box h2 {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.35;
    font-weight: 700;
}

.pricing-cta-box p {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0;
    color: #b8bec7;
    font-size: 11px;
    line-height: 1.8;
}

.pricing-cta-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 0 25px;
    border-radius: 7px;
    background: var(--pricing-orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(240, 81, 37, 0.25);
    transition: all 0.3s ease;
}

.pricing-cta-button:hover {
    background: var(--pricing-yellow);
    color: #ffffff;
    transform: translateY(-2px);
}

.pricing-phone-link {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 14px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
}

.pricing-phone-link i {
    margin-right: 6px;
    color: var(--pricing-yellow);
}

.pricing-phone-link:hover {
    color: var(--pricing-yellow);
}


/* =========================================================
   TERMS
   ========================================================= */

.pricing-terms-section {
    padding: 0 0 90px;
    background: #f8f9fb;
}

.pricing-terms {
    padding: 35px 40px;
    border: 1px solid #e4e8ec;
    border-radius: 13px;
    background: #ffffff;
}

.pricing-terms h3 {
    margin: 0 0 20px;
    color: var(--pricing-dark);
    font-size: 17px;
    font-weight: 700;
}

.pricing-terms ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-terms li {
    position: relative;
    padding: 8px 0 8px 20px;
    color: #777f89;
    font-size: 10px;
    line-height: 1.75;
}

.pricing-terms li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pricing-orange);
}


/* =========================================================
   CONTACT STRIP
   ========================================================= */

.pricing-contact-strip {
    padding: 55px 0;
    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #fffdf9 100%
        );
    border-top: 1px solid #f0ebe7;
}

.pricing-contact-strip h3 {
    margin: 0 0 8px;
    color: var(--pricing-dark);
    font-size: 23px;
    line-height: 1.4;
    font-weight: 700;
}

.pricing-contact-strip p {
    margin: 0;
    color: #7b838d;
    font-size: 11px;
}

.contact-strip-link {
    display: inline-block;
    margin: 4px 0;
    color: #4f5762;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.contact-strip-link i {
    width: 20px;
    color: var(--pricing-orange);
}

.contact-strip-link:hover {
    color: var(--pricing-orange);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .pricing-main-title {
        font-size: 46px;
    }

    .pricing-card-top,
    .pricing-card-body {
        padding-left: 23px;
        padding-right: 23px;
    }

    .pricing-card-top h3 {
        font-size: 19px;
    }

    .plan-price .amount {
        font-size: 30px;
    }

    .enterprise-price .amount {
        font-size: 25px;
    }

    .pricing-information-box {
        padding: 38px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 991px) {

    .pricing-hero {
        padding: 130px 0 85px;
    }

    .pricing-main-title {
        font-size: 42px;
    }

    .pricing-plans-section,
    .one-time-services-section,
    .addons-section,
    .pricing-process-section {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 33px;
    }

    .pricing-grid > [class*="col-"] {
        margin-bottom: 25px !important;
    }

    .pricing-card-top h3 {
        min-height: auto;
    }

    .plan-description {
        min-height: auto;
    }

    .price-note {
        min-height: auto;
    }

    .pricing-information-box {
        padding: 35px 30px;
    }

    .pricing-information-box .text-lg-right,
    .pricing-cta-box .text-lg-right,
    .pricing-contact-strip .text-lg-right {
        text-align: left !important;
        margin-top: 25px;
    }

    .pricing-cta-box {
        padding: 42px 35px;
    }

    .pricing-cta-box h2 {
        font-size: 26px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pricing-hero {
        padding: 110px 0 70px;
    }

    .pricing-eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .pricing-main-title {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -0.8px;
    }

    .pricing-main-description {
        padding: 0 10px;
        font-size: 13px;
        line-height: 1.8;
    }

    .pricing-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .pricing-primary-btn,
    .pricing-secondary-btn {
        width: 100%;
        max-width: 310px;
    }

    .pricing-trust-line {
        flex-direction: column;
        gap: 9px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading p {
        font-size: 12px;
    }

    .pricing-plans-section,
    .one-time-services-section,
    .addons-section,
    .pricing-process-section {
        padding: 65px 0;
    }

    .pricing-card {
        border-radius: 13px;
    }

    .pricing-card-top {
        padding: 30px 25px 25px;
    }

    .pricing-card-body {
        padding: 25px;
    }

    .pricing-card-top h3 {
        font-size: 21px;
    }

    .plan-description {
        font-size: 11px;
    }

    .plan-price .amount {
        font-size: 34px;
    }

    .enterprise-price .amount {
        font-size: 28px;
    }

    .popular-badge {
        font-size: 7px;
        padding: 8px 12px;
    }

    .pricing-note-section {
        padding: 5px 0 65px;
    }

    .pricing-information-box {
        padding: 32px 25px;
    }

    .pricing-information-box h3 {
        font-size: 21px;
    }

    .pricing-information-box p {
        font-size: 11px;
    }

    .one-time-grid > [class*="col-"] {
        margin-bottom: 18px !important;
    }

    .service-price-card {
        padding: 27px 23px;
    }

    .addons-table-wrapper {
        overflow-x: auto;
    }

    .addons-table {
        min-width: 620px;
    }

    .addons-table th,
    .addons-table td {
        padding: 15px 17px;
    }

    .ad-spend-notice {
        padding: 15px;
    }

    .pricing-process-section {
        padding-bottom: 60px;
    }

    .pricing-process-grid > [class*="col-"] {
        margin-bottom: 18px;
    }

    .process-card {
        padding: 29px 23px;
    }

    .pricing-final-cta {
        padding: 10px 0 65px;
    }

    .pricing-cta-box {
        padding: 35px 25px;
        border-radius: 13px;
    }

    .pricing-cta-box h2 {
        font-size: 23px;
    }

    .pricing-cta-box p {
        font-size: 10px;
    }

    .pricing-terms-section {
        padding-bottom: 65px;
    }

    .pricing-terms {
        padding: 28px 22px;
    }

    .pricing-terms h3 {
        font-size: 16px;
    }

    .pricing-terms li {
        font-size: 10px;
    }

    .pricing-contact-strip {
        padding: 45px 0;
    }

    .pricing-contact-strip h3 {
        font-size: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .pricing-hero {
        padding: 100px 0 60px;
    }

    .pricing-main-title {
        font-size: 29px;
    }

    .pricing-main-description {
        font-size: 12px;
    }

    .pricing-primary-btn,
    .pricing-secondary-btn {
        min-height: 48px;
        font-size: 11px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .pricing-card-top,
    .pricing-card-body {
        padding-left: 21px;
        padding-right: 21px;
    }

    .plan-price .amount {
        font-size: 31px;
    }

    .enterprise-price .amount {
        font-size: 25px;
    }

    .pricing-information-box {
        padding: 28px 21px;
    }

    .pricing-information-box h3 {
        font-size: 19px;
    }

    .pricing-cta-box {
        padding: 31px 21px;
    }

    .pricing-cta-box h2 {
        font-size: 21px;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .pricing-page *,
    .pricing-page *::before,
    .pricing-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    .pricing-hero-actions,
    .pricing-final-cta,
    .pricing-contact-strip,
    .pricing-primary-btn,
    .pricing-secondary-btn,
    .plan-btn,
    .pricing-outline-btn {
        display: none !important;
    }

    .pricing-card,
    .service-price-card,
    .process-card,
    .pricing-information-box,
    .pricing-terms {
        box-shadow: none !important;
        break-inside: avoid;
    }

}
