/* =========================
   3PL HERO SLIDER
========================== */

.hero-slider {
    position: relative;
    min-height: calc(100vh - 100px);
    overflow: hidden;
    background: #08090c;
}


/* =========================
   SLIDES
========================== */

.hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Extra bottom space keeps content away from dots */
    padding: 80px 30px 130px;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.9s ease,
        transform 1.2s ease,
        visibility 0.9s ease;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================
   SLIDE BACKGROUND IMAGES
========================== */

/* Slide 1 */
.hero-slide:nth-child(1) {
    background:
        linear-gradient(
            rgba(8, 9, 12, 0.60),
            rgba(8, 9, 12, 0.60)
        ),
        url("../img/bg1.png") center/cover no-repeat;
}


/* Slide 2 */
.hero-slide:nth-child(2) {
    background:
        linear-gradient(
            rgba(8, 9, 12, 0.60),
            rgba(8, 9, 12, 0.60)
        ),
        url("../img/bg2.png") center/cover no-repeat;
}


/* Slide 3 */
.hero-slide:nth-child(3) {
    background:
        linear-gradient(
            rgba(8, 9, 12, 0.60),
            rgba(8, 9, 12, 0.60)
        ),
        url("../img/bg3.png") center/cover no-repeat;
}


/* =========================
   ACTIVE SLIDE
========================== */

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}


/* =========================
   HERO CONTENT
========================== */

.hero-slide .hero-content {
    position: relative;
    z-index: 3;

    max-width: 900px;

    opacity: 0;
    transform: translateY(35px);
}


/* Animate Active Content */

.hero-slide.active .hero-content {
    animation: heroContentAnimation 0.9s ease forwards;
}


@keyframes heroContentAnimation {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   BADGE
========================== */

.hero-slider .hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 17px;
    margin-bottom: 25px;

    border: 1px solid rgba(139, 111, 255, 0.28);
    border-radius: 50px;

    background: rgba(116, 77, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ad9aff;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 10px 35px rgba(84, 52, 200, 0.08);
}


/* =========================
   HEADING
========================== */

.hero-slider h1 {
    margin-bottom: 25px;

    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.05;

    letter-spacing: -3px;
}


.hero-slider h1 span {
    background: linear-gradient(
        90deg,
        #ffffff,
        #9c82ff,
        #754aff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =========================
   PARAGRAPH
========================== */

.hero-slider p {
    max-width: 720px;

    margin: 0 auto 35px;

    color: #a7a9b3;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================
   HERO BUTTONS
========================== */

.hero-slider .hero-buttons {
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    /*
       Creates space between buttons
       and slider navigation dots.
    */
    margin-bottom: 10px;
}


/* =========================
   SLIDER DOTS
========================== */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 28px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transform: translateX(-50%);
}


.slider-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.25);

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.slider-dot:hover {
    background: rgba(255, 255, 255, 0.55);
}


.slider-dot.active {
    width: 30px;

    background: linear-gradient(
        90deg,
        #7657ff,
        #9a57ff
    );

    box-shadow:
        0 0 18px rgba(121, 82, 255, 0.6);
}


/* =========================
   DECORATIVE GLOW
========================== */

.hero-slider::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(110, 66, 255, 0.12);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;

    z-index: 5;
}


/* =========================
   TABLET
========================== */

@media (max-width: 900px) {

    .hero-slide {
        padding: 70px 25px 120px;
    }

    .hero-slider h1 {
        font-size: clamp(42px, 8vw, 62px);
        letter-spacing: -2px;
    }

    .hero-slider p {
        font-size: 17px;
    }
}


/* =========================
   MOBILE
========================== */

@media (max-width: 700px) {

    .hero-slider {
        min-height: 680px;
    }


    /* More controlled mobile spacing */

    .hero-slide {
        padding: 55px 20px 100px;
    }


    /* Badge */

    .hero-slider .hero-badge {
        padding: 7px 13px;
        margin-bottom: 20px;

        font-size: 12px;
    }


    /* Heading */

    .hero-slider h1 {
        margin-bottom: 20px;

        font-size: 40px;
        line-height: 1.08;

        letter-spacing: -2px;
    }


    /* Paragraph */

    .hero-slider p {
        max-width: 100%;

        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.6;
    }


    /* Mobile Buttons */

    .hero-slider .hero-buttons {
        flex-direction: row;

        gap: 10px;

        margin-bottom: 15px;
    }


    .hero-slider .primary-btn,
    .hero-slider .secondary-btn {
        width: auto;
        max-width: none;

        min-width: 0;
        height: 44px;

        padding: 0 16px;

        font-size: 13px;

        white-space: nowrap;
    }


    /* Slider dots */

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }


    .slider-dot {
        width: 7px;
        height: 7px;
    }


    .slider-dot.active {
        width: 24px;
    }
}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 450px) {

    .hero-slider {
        min-height: 650px;
    }


    .hero-slide {
        padding: 45px 16px 90px;
    }


    .hero-slider h1 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }


    .hero-slider p {
        font-size: 14px;
    }


    /* Even smaller buttons */

    .hero-slider .primary-btn,
    .hero-slider .secondary-btn {
        height: 40px;

        padding: 0 13px;

        font-size: 12px;
    }


    .hero-slider .hero-buttons {
        gap: 8px;
    }


    .slider-dots {
        bottom: 16px;
    }
}


/* =========================
   WHY CHOOSE US
========================== */

.why-choose {
    position: relative;

    padding: 100px 30px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(112, 71, 255, 0.10),
            transparent 32%
        ),
        #0b0c10;

    overflow: hidden;
}


.why-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================
   SECTION HEADING
========================== */

.why-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}


.why-label {
    display: inline-flex;

    padding: 7px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(130, 93, 255, 0.25);
    border-radius: 50px;

    background: rgba(113, 72, 255, 0.08);

    color: #a991ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.why-heading h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;

    letter-spacing: -2px;
}


.why-heading h2 span {
    background: linear-gradient(
        90deg,
        #9e82ff,
        #713df0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.why-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #9699a5;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   GRID
========================== */

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================
   CARD
========================== */

.why-card {
    position: relative;

    min-height: 230px;

    padding: 35px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* Small glow line */

.why-card::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 70px;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #7b50ff,
        transparent
    );

    opacity: 0;

    transition: 0.35s ease;
}


/* Hover */

.why-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(126, 88, 255, 0.30);

    background:
        linear-gradient(
            145deg,
            rgba(120, 79, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.30);
}


.why-card:hover::before {
    opacity: 1;
    width: 130px;
}


/* =========================
   ICON
========================== */

.why-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(126, 88, 255, 0.22);

    border-radius: 15px;

    background:
        rgba(113, 70, 255, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.why-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #9c7cff;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.why-card:hover .why-icon {
    transform:
        translateY(-3px)
        scale(1.05);

    background:
        rgba(113, 70, 255, 0.15);

    box-shadow:
        0 8px 30px
        rgba(102, 62, 230, 0.20);
}


/* =========================
   CARD TEXT
========================== */

.why-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 650;
}


.why-card p {
    max-width: 300px;

    margin: 0;

    color: #9396a2;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================
   TABLET
========================== */

@media (max-width: 950px) {

    .why-choose {
        padding: 80px 25px;
    }


    .why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .why-card {
        min-height: 220px;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .why-choose {
        padding: 65px 18px;
    }


    .why-heading {
        margin-bottom: 38px;
    }


    .why-label {
        font-size: 10px;

        padding: 6px 12px;

        margin-bottom: 15px;
    }


    .why-heading h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .why-heading p {
        font-size: 15px;
        line-height: 1.6;
    }


    .why-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .why-card {
        min-height: auto;

        padding: 28px 20px;

        border-radius: 15px;
    }


    .why-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 18px;
    }


    .why-icon svg {
        width: 24px;
        height: 24px;
    }


    .why-card h3 {
        font-size: 16px;
    }


    .why-card p {
        max-width: 340px;

        font-size: 13px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .why-choose {
        padding:
            55px 14px;
    }


    .why-heading h2 {
        font-size: 30px;
    }


    .why-heading p {
        font-size: 14px;
    }


    .why-card {
        padding:
            25px 17px;
    }

}


/* =========================
   MARKETPLACE INTEGRATIONS
========================== */

.integrations-section {
    position: relative;

    padding: 100px 30px;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(107, 70, 255, 0.12),
            transparent 32%
        ),
        #08090c;

    overflow: hidden;
}


.integrations-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* =========================
   LEFT CONTENT
========================== */

.integrations-content {
    max-width: 520px;
}


.integrations-label {
    display: inline-flex;

    padding: 7px 14px;
    margin-bottom: 20px;

    border: 1px solid rgba(132, 95, 255, 0.25);
    border-radius: 50px;

    background: rgba(115, 74, 255, 0.08);

    color: #a990ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.integrations-content h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;

    letter-spacing: -2.5px;
}


.integrations-content h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #a98cff,
        #7140ee
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.integrations-content p {
    max-width: 480px;

    margin: 0 0 30px;

    color: #9da0ac;

    font-size: 17px;
    line-height: 1.7;
}


.integrations-content p strong {
    color: #b29fff;
    font-weight: 600;
}


/* Button */

.integrations-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 52px;

    padding: 0 24px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #654df0,
        #7c37e9
    );

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 32px
        rgba(99, 62, 232, 0.24);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.integrations-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 38px
        rgba(99, 62, 232, 0.35);
}


/* =========================
   INTEGRATION GRID
========================== */

.integrations-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* =========================
   INTEGRATION CARD
========================== */

.integration-card {
    position: relative;

    min-height: 100px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* White card for clearer marketplace and carrier logos */
    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.integration-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: rgba(132, 95, 255, 0.45);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(112, 72, 255, 0.10);
}


/* Logos */

.integration-card img {
    display: block;

    max-width: 80%;
    max-height: 48px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform 0.3s ease;
}


.integration-card:hover img {
    transform: scale(1.06);
}


/* =========================
   DECORATIVE GLOW
========================== */

.integrations-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -220px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(110, 67, 255, 0.12);

    filter: blur(120px);

    pointer-events: none;
}


/* =========================
   TABLET
========================== */

@media (max-width: 1000px) {

    .integrations-section {
        padding: 80px 25px;
    }


    .integrations-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .integrations-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .integrations-content p {
        margin-left: auto;
        margin-right: auto;
    }


    .integrations-grid {
        max-width: 800px;

        margin: 0 auto;

        width: 100%;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .integrations-section {
        padding: 65px 18px;
    }


    .integrations-container {
        gap: 38px;
    }


    .integrations-label {
        font-size: 10px;

        padding: 6px 12px;

        margin-bottom: 16px;
    }


    .integrations-content h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .integrations-content p {
        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 24px;
    }


    .integrations-btn {
        height: 44px;

        padding: 0 18px;

        font-size: 13px;
    }


    .integrations-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .integration-card {
        min-height: 85px;

        padding: 16px;

        border-radius: 14px;
    }


    .integration-card img {
        max-height: 36px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .integrations-section {
        padding: 55px 14px;
    }


    .integrations-content h2 {
        font-size: 30px;
    }


    .integrations-content p {
        font-size: 14px;
    }


    .integrations-grid {
        gap: 10px;
    }


    .integration-card {
        min-height: 78px;

        padding: 13px;
    }


    .integration-card img {
        max-height: 31px;
    }

}

/* =========================
   FULFILMENT GROWTH SECTION
========================== */

.growth-section {
    position: relative;

    padding: 110px 30px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(112, 72, 255, 0.10),
            transparent 30%
        ),
        #0b0c10;

    overflow: hidden;
}


.growth-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


/* =========================
   IMAGE SIDE
========================== */

.growth-image-wrap {
    position: relative;

    max-width: 560px;
}


.growth-image {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(105, 66, 255, 0.08);
}


.growth-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(8, 9, 12, 0.35)
        );

    pointer-events: none;
}


.growth-image img {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.growth-image-wrap:hover .growth-image img {
    transform: scale(1.04);
}


/* =========================
   FLOATING STAT
========================== */

.growth-stat {
    position: absolute;

    right: -25px;
    bottom: 35px;

    z-index: 5;

    min-width: 160px;

    padding: 18px 22px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(148, 116, 255, 0.25);

    border-radius: 16px;

    background:
        rgba(12, 13, 18, 0.88);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
}


.growth-stat-number {
    margin-bottom: 3px;

    color: #9e7cff;

    font-size: 28px;
    font-weight: 800;
}


.growth-stat-text {
    color: #c7c8cf;

    font-size: 13px;
}


/* =========================
   DECORATIVE DOTS
========================== */

.growth-dots {
    position: absolute;

    width: 150px;
    height: 150px;

    top: -35px;
    left: -35px;

    opacity: 0.35;

    background-image:
        radial-gradient(
            rgba(155, 125, 255, 0.8) 2px,
            transparent 2px
        );

    background-size: 20px 20px;

    z-index: 0;
}


/* =========================
   CONTENT
========================== */

.growth-content {
    max-width: 560px;
}


.growth-label {
    display: inline-flex;

    padding: 7px 14px;

    margin-bottom: 20px;

    border:
        1px solid rgba(135, 99, 255, 0.25);

    border-radius: 50px;

    background:
        rgba(113, 72, 255, 0.08);

    color: #a88eff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.growth-content h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.growth-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #b39cff,
            #7548ef
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.growth-content > p {
    margin: 0 0 30px;

    max-width: 520px;

    color: #9da0aa;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================
   FEATURES
========================== */

.growth-features {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 32px;
}


.growth-feature {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #d5d6dc;

    font-size: 15px;
}


.growth-check {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(117, 72, 239, 0.13);

    border:
        1px solid rgba(145, 108, 255, 0.25);

    color: #9f7cff;

    font-size: 13px;

    font-weight: 800;
}


/* =========================
   BUTTON
========================== */

.growth-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    height: 52px;

    padding: 0 24px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #654df0,
            #7b36e9
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 35px
        rgba(102, 64, 238, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.growth-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(102, 64, 238, 0.38);
}


.growth-btn span {
    transition:
        transform 0.3s ease;
}


.growth-btn:hover span {
    transform: translateX(4px);
}


/* =========================
   TABLET
========================== */

@media (max-width: 950px) {

    .growth-section {
        padding: 85px 25px;
    }


    .growth-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .growth-image-wrap {
        width: 100%;
        max-width: 700px;

        margin: 0 auto;
    }


    .growth-image img {
        height: 460px;
    }


    .growth-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .growth-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .growth-features {
        max-width: 420px;

        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;

        align-items: flex-start;

        text-align: left;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .growth-section {
        padding: 65px 18px;
    }


    .growth-container {
        gap: 42px;
    }


    .growth-image {
        border-radius: 18px;
    }


    .growth-image img {
        height: 330px;
    }


    .growth-stat {
        right: 14px;
        bottom: 14px;

        min-width: 135px;

        padding: 13px 16px;

        border-radius: 13px;
    }


    .growth-stat-number {
        font-size: 23px;
    }


    .growth-stat-text {
        font-size: 11px;
    }


    .growth-dots {
        width: 100px;
        height: 100px;

        top: -25px;
        left: -15px;

        background-size: 16px 16px;
    }


    .growth-label {
        font-size: 10px;

        padding: 6px 12px;

        margin-bottom: 16px;
    }


    .growth-content h2 {
        font-size: 36px;

        letter-spacing: -1.5px;

        margin-bottom: 20px;
    }


    .growth-content > p {
        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 25px;
    }


    .growth-feature {
        font-size: 14px;
    }


    .growth-check {
        width: 25px;
        height: 25px;
    }


    .growth-btn {
        height: 44px;

        padding: 0 18px;

        font-size: 13px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .growth-section {
        padding: 55px 14px;
    }


    .growth-image img {
        height: 280px;
    }


    .growth-content h2 {
        font-size: 31px;
    }


    .growth-content > p {
        font-size: 14px;
    }


    .growth-stat {
        min-width: 120px;

        padding: 11px 13px;
    }


    .growth-stat-number {
        font-size: 20px;
    }

}

/* =========================
   LOGISTICS SERVICES HUB
========================== */

.services-hub-section {
    position: relative;

    padding: 110px 30px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(112, 72, 255, 0.12),
            transparent 35%
        ),
        #08090c;

    overflow: hidden;
}


.services-hub-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================== */

.services-hub-heading {
    max-width: 820px;

    margin: 0 auto 70px;

    text-align: center;
}


.services-hub-label {
    display: inline-flex;

    padding: 7px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(135, 99, 255, 0.25);
    border-radius: 50px;

    background: rgba(113, 72, 255, 0.08);

    color: #aa92ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


.services-hub-heading h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 4.5vw, 60px);

    line-height: 1.07;

    letter-spacing: -2.5px;
}


.services-hub-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #b39bff,
        #7548ee
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.services-hub-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #989ba6;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================
   HUB LAYOUT
========================== */

.services-hub-layout {
    position: relative;

    min-height: 760px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-template-rows:
        repeat(4, 1fr);

    gap: 20px;

    align-items: center;
}


/* =========================
   CENTER HUB
========================== */

.services-center-card {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

    width: 270px;

    padding: 30px 24px;

    text-align: center;

    border:
        1px solid rgba(144, 108, 255, 0.30);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(111, 72, 255, 0.14),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(111, 72, 255, 0.12);
}


.services-center-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #6a50ef,
            #8b3bea
        );

    color: #ffffff;

    font-size: 28px;
    font-weight: 800;
}


.services-center-card > span {
    display: block;

    margin-bottom: 7px;

    color: #a98fff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.services-center-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 22px;
}


.services-center-card p {
    margin: 0;

    color: #979aa5;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   SERVICE CARDS
========================== */

.service-node {
    position: relative;

    min-height: 110px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 14px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.service-node:hover {
    transform: translateY(-6px);

    border-color:
        rgba(132, 95, 255, 0.30);

    background:
        rgba(111, 72, 255, 0.07);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.25);
}


.service-node-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(113, 72, 255, 0.11);

    border:
        1px solid rgba(143, 107, 255, 0.20);

    color: #a88cff;

    font-size: 12px;

    font-weight: 800;
}


.service-node h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 15px;
}


.service-node p {
    margin: 0;

    color: #8f929d;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================
   DESKTOP POSITIONING
========================== */

.service-node-1 {
    grid-column: 1;
    grid-row: 1;
}

.service-node-2 {
    grid-column: 2;
    grid-row: 1;
}

.service-node-3 {
    grid-column: 3;
    grid-row: 1;
}

.service-node-4 {
    grid-column: 4;
    grid-row: 1;
}


.service-node-5 {
    grid-column: 1;
    grid-row: 2;
}

.service-node-6 {
    grid-column: 4;
    grid-row: 2;
}


.service-node-7 {
    grid-column: 1;
    grid-row: 3;
}

.service-node-8 {
    grid-column: 4;
    grid-row: 3;
}


.service-node-9 {
    grid-column: 1;
    grid-row: 4;
}

.service-node-10 {
    grid-column: 2;
    grid-row: 4;
}

.service-node-11 {
    grid-column: 3;
    grid-row: 4;
}

.service-node-12 {
    grid-column: 4;
    grid-row: 4;
}


/* =========================
   SOFT CONNECTION LINES
========================== */

.services-hub-layout::before,
.services-hub-layout::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px dashed rgba(150, 125, 255, 0.13);

    border-radius: 50%;

    pointer-events: none;
}


.services-hub-layout::before {
    width: 560px;
    height: 560px;
}


.services-hub-layout::after {
    width: 410px;
    height: 410px;
}


/* =========================
   TABLET
========================== */

@media (max-width: 1000px) {

    .services-hub-section {
        padding: 85px 25px;
    }


    .services-hub-layout {
        min-height: auto;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        grid-template-rows: auto;

        gap: 16px;
    }


    .services-center-card {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        width: 100%;

        grid-column: 1 / -1;

        margin-bottom: 10px;
    }


    .service-node {
        grid-column: auto !important;
        grid-row: auto !important;
    }


    .services-hub-layout::before,
    .services-hub-layout::after {
        display: none;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .services-hub-section {
        padding: 65px 18px;
    }


    .services-hub-heading {
        margin-bottom: 42px;
    }


    .services-hub-label {
        font-size: 10px;

        padding: 6px 12px;
    }


    .services-hub-heading h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .services-hub-heading p {
        font-size: 15px;
    }


    .services-hub-layout {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .services-center-card {
        padding: 25px 20px;

        border-radius: 17px;
    }


    .service-node {
        min-height: 95px;

        padding: 17px;

        border-radius: 14px;
    }


    .service-node-icon {
        width: 38px;
        height: 38px;
    }


    .service-node h3 {
        font-size: 14px;
    }


    .service-node p {
        font-size: 11px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .services-hub-section {
        padding: 55px 14px;
    }


    .services-hub-heading h2 {
        font-size: 30px;
    }


    .services-center-card h3 {
        font-size: 19px;
    }

}

/* =========================
   FULFILMENT SOLUTIONS
========================== */

.solutions-section {
    position: relative;

    padding: 110px 30px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(112, 72, 255, 0.10),
            transparent 30%
        ),
        #0b0c10;

    overflow: hidden;
}


.solutions-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================== */

.solutions-heading {
    max-width: 820px;

    margin: 0 auto 60px;

    text-align: center;
}


.solutions-label {
    display: inline-flex;

    padding: 7px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(135, 99, 255, 0.25);
    border-radius: 50px;

    background: rgba(113, 72, 255, 0.08);

    color: #aa92ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


.solutions-heading h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 4.5vw, 60px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}


.solutions-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #b19aff,
        #7547ef
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.solutions-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #989ba6;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================
   GRID
========================== */

.solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================
   CARD
========================== */

.solution-card {
    position: relative;

    min-height: 260px;

    padding: 32px 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.solution-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #7b50ff,
            transparent
        );

    opacity: 0;

    transition: 0.35s ease;
}


.solution-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(129, 91, 255, 0.30);

    background:
        linear-gradient(
            145deg,
            rgba(113, 72, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.30);
}


.solution-card:hover::before {
    opacity: 1;
}


/* =========================
   ICON
========================== */

.solution-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        rgba(113, 72, 255, 0.10);

    border:
        1px solid rgba(143, 107, 255, 0.22);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.solution-icon span {
    color: #a88cff;

    font-size: 13px;
    font-weight: 800;
}


.solution-card:hover .solution-icon {
    transform: scale(1.06);

    background:
        rgba(113, 72, 255, 0.16);
}


/* =========================
   TEXT
========================== */

.solution-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.3;
}


.solution-card p {
    flex-grow: 1;

    margin: 0 0 22px;

    color: #92959f;

    font-size: 14px;

    line-height: 1.65;
}


.solution-card a {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    color: #a98eff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 650;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.solution-card a:hover {
    color: #c1b2ff;

    transform: translateX(4px);
}


/* =========================
   TABLET
========================== */

@media (max-width: 950px) {

    .solutions-section {
        padding: 85px 25px;
    }


    .solutions-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .solution-card {
        min-height: 245px;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .solutions-section {
        padding: 65px 18px;
    }


    .solutions-heading {
        margin-bottom: 40px;
    }


    .solutions-label {
        font-size: 10px;

        padding: 6px 12px;
    }


    .solutions-heading h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .solutions-heading p {
        font-size: 15px;
    }


    .solutions-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .solution-card {
        min-height: auto;

        padding: 25px 20px;

        border-radius: 15px;
    }


    .solution-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 18px;
    }


    .solution-card h3 {
        font-size: 16px;
    }


    .solution-card p {
        font-size: 13px;

        margin-bottom: 18px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .solutions-section {
        padding: 55px 14px;
    }


    .solutions-heading h2 {
        font-size: 30px;
    }


    .solutions-heading p {
        font-size: 14px;
    }


    .solution-card {
        padding: 22px 18px;
    }

}

/* =========================
   FOOTER
========================== */

.site-footer {
    position: relative;

    padding: 70px 30px 25px;

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(112, 72, 255, 0.08),
            transparent 25%
        ),
        #06070a;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}


.footer-container {
    width: 100%;
    max-width: 1350px;

    margin: 0 auto;
}


/* =========================
   TOP
========================== */

.footer-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 35px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 45px;
}


.footer-logo {
    display: flex;

    align-items: center;

    gap: 13px;

    text-decoration: none;
}


.footer-logo-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #644df0,
            #8735e9
        );

    color: #ffffff;

    font-size: 27px;
    font-weight: 800;

    box-shadow:
        0 10px 30px
        rgba(103, 62, 233, 0.22);
}


.footer-logo-text {
    display: flex;

    flex-direction: column;
}


.footer-logo-text strong {
    color: #ffffff;

    font-size: 28px;

    letter-spacing: -1px;
}


.footer-logo-text span {
    margin-top: 3px;

    color: #9d81ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;
}


.footer-brand > p {
    max-width: 250px;

    margin: 0;

    color: #b0b2bc;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================
   SOCIAL ICONS
========================== */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 12px;
}


.footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.03);

    color: #9f82ff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.footer-socials a:hover {
    transform: translateY(-3px);

    color: #ffffff;

    background:
        rgba(113, 72, 255, 0.14);

    border-color:
        rgba(135, 99, 255, 0.30);
}


/* =========================
   QUICK LINKS
========================== */

.footer-quick-links {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;

    padding:
        22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.footer-quick-links a {
    color: #d2d3d9;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.3s ease;
}


.footer-quick-links a:hover {
    color: #a88cff;
}


/* =========================
   FOOTER GRID
========================== */

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 2.2fr;

    gap: 55px;

    padding:
        45px 0;
}


/* =========================
   FOOTER COLUMNS
========================== */

.footer-column h3 {
    margin:
        0 0 25px;

    color: #ffffff;

    font-size: 24px;

    letter-spacing: -0.8px;
}


.footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 16px;
}


.footer-column a {
    color: #a7a9b2;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-column a:hover {
    color: #a98cff;

    padding-left: 4px;
}


/* =========================
   SERVICES GRID
========================== */

.footer-services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 40px;
}


.footer-services {
    padding-left: 10px;
}


/* =========================
   FOOTER BOTTOM
========================== */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom p {
    margin: 0;

    color: #868994;

    font-size: 13px;
}


.footer-bottom span {
    color: #a88cff;

    font-weight: 600;
}


/* =========================
   TABLET
========================== */

@media (max-width: 1000px) {

    .site-footer {
        padding:
            60px 25px 25px;
    }


    .footer-top {
        align-items: flex-start;
    }


    .footer-brand {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px;
    }


    .footer-services {
        padding-left: 0;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .site-footer {
        padding:
            50px 18px 20px;
    }


    .footer-top {
        flex-direction: column;

        gap: 28px;
    }


    .footer-logo-icon {
        width: 50px;
        height: 50px;

        font-size: 23px;
    }


    .footer-logo-text strong {
        font-size: 24px;
    }


    .footer-logo-text span {
        font-size: 8px;

        letter-spacing: 3px;
    }


    .footer-brand > p {
        max-width: 100%;

        font-size: 14px;
    }


    .footer-socials {
        gap: 9px;
    }


    .footer-socials a {
        width: 34px;
        height: 34px;

        font-size: 12px;
    }


    .footer-quick-links {
        gap:
            14px 20px;

        padding:
            20px 0;
    }


    .footer-quick-links a {
        font-size: 13px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            35px 0;
    }


    .footer-column h3 {
        margin-bottom: 18px;

        font-size: 21px;
    }


    .footer-column li {
        margin-bottom: 12px;
    }


    .footer-column a {
        font-size: 13px;
    }


    .footer-services-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .site-footer {
        padding:
            45px 14px 18px;
    }


    .footer-socials {
        flex-wrap: wrap;
    }


    .footer-quick-links {
        flex-direction: column;

        gap: 12px;
    }


    .footer-bottom p {
        font-size: 12px;
    }

}

/* =========================
   PRICING SECTION
========================== */

.pricing-section {
    position: relative;

    padding: 110px 30px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(112, 72, 255, 0.12),
            transparent 32%
        ),
        #08090c;

    overflow: hidden;
}


.pricing-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================== */

.pricing-heading {
    max-width: 820px;

    margin: 0 auto 60px;

    text-align: center;
}


.pricing-label {
    display: inline-flex;

    padding: 7px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(135, 99, 255, 0.25);
    border-radius: 50px;

    background: rgba(113, 72, 255, 0.08);

    color: #aa92ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


.pricing-heading h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.pricing-heading h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #b39bff,
        #7548ef
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.pricing-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #979aa5;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   PRICING GRID
========================== */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================
   CARD
========================== */

.pricing-card {
    position: relative;

    padding: 38px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.22);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.pricing-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(130, 92, 255, 0.28);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.32);
}


/* =========================
   FEATURED CARD
========================== */

.pricing-card-featured {
    border:
        1px solid rgba(140, 103, 255, 0.35);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(117, 72, 239, 0.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(113, 72, 255, 0.10),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.30),
        0 0 50px rgba(111, 72, 255, 0.08);
}


.pricing-popular {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 10px;

    border-radius: 50px;

    background:
        rgba(113, 72, 255, 0.15);

    border:
        1px solid rgba(148, 116, 255, 0.25);

    color: #b8a4ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================
   CARD TOP
========================== */

.pricing-plan-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #9e82ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.pricing-card-top h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 28px;

    letter-spacing: -1px;
}


.pricing-card-top p {
    margin: 0;

    color: #9699a4;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================
   PRICE
========================== */

.pricing-price {
    margin-top: 35px;
}


.pricing-from {
    display: block;

    margin-bottom: 8px;

    color: #7f828d;

    font-size: 12px;
}


.pricing-price > div {
    display: flex;

    align-items: baseline;

    gap: 7px;
}


.pricing-price strong {
    color: #ffffff;

    font-size: 46px;

    letter-spacing: -2px;
}


.pricing-price > div span {
    color: #9295a0;

    font-size: 15px;
}


.pricing-price small {
    display: block;

    margin-top: 6px;

    color: #aaa3c6;

    font-size: 12px;
}


/* =========================
   CUSTOM PRICE
========================== */

.pricing-custom-price {
    margin: 35px 0 25px;

    padding: 22px;

    border-radius: 16px;

    background:
        rgba(113, 72, 255, 0.08);

    border:
        1px solid rgba(139, 105, 255, 0.18);
}


.pricing-custom-price span {
    display: block;

    margin-bottom: 7px;

    color: #9e82ff;

    font-size: 12px;

    font-weight: 700;
}


.pricing-custom-price strong {
    display: block;

    margin-bottom: 7px;

    color: #ffffff;

    font-size: 22px;
}


.pricing-custom-price p {
    margin: 0;

    color: #9295a0;

    font-size: 13px;
}


/* =========================
   DIVIDER
========================== */

.pricing-divider {
    height: 1px;

    margin: 30px 0;

    background:
        rgba(255, 255, 255, 0.08);
}


/* =========================
   FEATURES
========================== */

.pricing-features {
    margin: 0 0 30px;

    padding: 0;

    list-style: none;
}


.pricing-features li {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 14px;

    color: #c8cad1;

    font-size: 14px;
}


.pricing-check {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(113, 72, 255, 0.12);

    color: #a98dff;

    font-size: 12px;

    font-weight: 800;
}


/* =========================
   BENEFIT GRID
========================== */

.pricing-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 30px;
}


.pricing-benefits-grid div {
    padding: 14px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #c7c9d0;

    font-size: 12px;
}


.pricing-benefits-grid span {
    color: #a88cff;

    font-weight: 700;
}


/* =========================
   BUTTONS
========================== */

.pricing-btn {
    margin-top: auto;

    height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.pricing-btn-secondary {
    background: #ffffff;

    color: #090a0d;
}


.pricing-btn-secondary:hover {
    transform: translateY(-2px);

    background: #f1f1f4;
}


.pricing-btn-primary {
    background:
        linear-gradient(
            135deg,
            #654df0,
            #7d36e8
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(100, 63, 232, 0.28);
}


.pricing-btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 38px rgba(100, 63, 232, 0.40);
}


/* =========================
   PRICING NOTE
========================== */

.pricing-note {
    margin-top: 30px;

    padding: 22px 26px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.025);
}


.pricing-note div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.pricing-note strong {
    color: #ffffff;

    font-size: 13px;
}


.pricing-note span {
    color: #888b96;

    font-size: 12px;
}


/* =========================
   TABLET
========================== */

@media (max-width: 850px) {

    .pricing-section {
        padding: 85px 25px;
    }


    .pricing-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        margin: 0 auto;
    }


    .pricing-note {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .pricing-section {
        padding: 65px 18px;
    }


    .pricing-heading {
        margin-bottom: 42px;
    }


    .pricing-label {
        font-size: 10px;

        padding: 6px 12px;
    }


    .pricing-heading h1 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .pricing-heading p {
        font-size: 15px;
    }


    .pricing-card {
        padding: 28px 22px;

        border-radius: 18px;
    }


    .pricing-card-top h2 {
        font-size: 24px;
    }


    .pricing-price strong {
        font-size: 39px;
    }


    .pricing-benefits-grid {
        grid-template-columns: 1fr;
    }


    .pricing-note {
        grid-template-columns: 1fr;

        padding: 18px;
    }


    .pricing-btn {
        height: 46px;

        font-size: 13px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .pricing-section {
        padding: 55px 14px;
    }


    .pricing-heading h1 {
        font-size: 30px;
    }


    .pricing-card {
        padding: 24px 18px;
    }


    .pricing-price strong {
        font-size: 34px;
    }

}


/* =================================================
   PREPFLOW INTERACTIVE PRICING
================================================== */

.pf-pricing {
    position: relative;
    padding: 110px 30px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(112, 72, 255, 0.12),
            transparent 30%
        ),
        #08090c;
    color: #ffffff;
    overflow: hidden;
}


.pf-pricing-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =================================================
   HEADING
================================================== */

.pf-pricing-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}


.pf-pricing-eyebrow,
.pf-step-label,
.pf-overview-badge {
    display: inline-flex;
    padding: 7px 14px;
    border: 1px solid rgba(139, 108, 255, 0.25);
    border-radius: 50px;
    background: rgba(113, 72, 255, 0.08);
    color: #aa91ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


.pf-pricing-heading h2 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}


.pf-pricing-heading h2 span,
.pf-step-content h3 span,
.pf-account-section h3 span,
.pf-additional-heading h3 span,
.pf-overview-panel h3 span {
    background: linear-gradient(
        90deg,
        #b49dff,
        #7343ed
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.pf-pricing-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #9699a5;
    font-size: 17px;
    line-height: 1.7;
}


/* =================================================
   VOLUME TABS
================================================== */

.pf-volume-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 65px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}


.pf-volume-tab {
    min-height: 70px;
    padding: 12px 18px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: #9497a2;
    cursor: pointer;
    transition: 0.3s ease;
}


.pf-volume-tab span,
.pf-volume-tab strong {
    display: block;
}


.pf-volume-tab span {
    margin-bottom: 3px;
    font-size: 11px;
}


.pf-volume-tab strong {
    font-size: 14px;
}


.pf-volume-tab:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}


.pf-volume-tab.active {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #644bef,
        #7f38e9
    );
    box-shadow: 0 10px 30px rgba(103,65,232,0.22);
}


/* =================================================
   PANELS
================================================== */

.pf-volume-panel {
    display: none;
}


.pf-volume-panel.active {
    display: block;
    animation: pfPanelIn 0.45s ease;
}


@keyframes pfPanelIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =================================================
   PRICE STEPS
================================================== */

.pf-price-step {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 85px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}


.pf-price-step.pf-reverse .pf-step-content {
    order: 2;
}


.pf-price-step.pf-reverse > :last-child {
    order: 1;
}


.pf-step-content {
    max-width: 520px;
}


.pf-step-number {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg,#654df0,#8238e8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}


.pf-step-content .pf-step-label {
    margin-bottom: 15px;
}


.pf-step-content h3,
.pf-account-section h3,
.pf-additional-heading h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(36px,4vw,52px);
    line-height: 1.08;
    letter-spacing: -2px;
}


.pf-step-content h3 span {
    display: block;
}


.pf-step-content p {
    margin: 0;
    color: #979aa5;
    font-size: 16px;
    line-height: 1.75;
}


.pf-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}


.pf-mini-features span {
    padding: 8px 11px;
    border: 1px solid rgba(139,105,255,0.15);
    border-radius: 50px;
    background: rgba(113,72,255,0.06);
    color: #b1a5d6;
    font-size: 11px;
}


/* =================================================
   COMMON CARD
================================================== */

.pf-step-card,
.pf-interactive-card,
.pf-shipping-card,
.pf-overview-panel {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.018)
        );
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}


.pf-card-title,
.pf-cost-heading {
    padding: 20px 24px;
    background: rgba(113,72,255,0.10);
    border-bottom: 1px solid rgba(139,107,255,0.15);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}


.pf-price-row,
.pf-cost-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}


.pf-price-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.pf-price-row strong {
    font-size: 14px;
}


.pf-price-row span {
    color: #848792;
    font-size: 11px;
}


.pf-price-row b {
    color: #b095ff;
    font-size: 17px;
}


.pf-price-row b small {
    font-size: 11px;
    font-weight: 500;
}


.pf-free {
    color: #9f80ff !important;
    font-weight: 800;
}


.pf-card-note {
    padding: 16px 24px;
    color: #80838e;
    font-size: 11px;
}


/* =================================================
   STORAGE
================================================== */

.pf-storage-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}


.pf-storage-card {
    min-height: 140px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 17px;
    background: rgba(255,255,255,0.025);
    transition: 0.3s ease;
}


.pf-storage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(133,96,255,0.28);
    background: rgba(113,72,255,0.07);
}


.pf-storage-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(112,72,255,0.12);
    color: #a98dff;
    font-size: 24px;
}


.pf-storage-card strong {
    color: #ffffff;
    font-size: 20px;
}


.pf-storage-card h4 {
    margin: 5px 0 3px;
    color: #c9cad0;
    font-size: 14px;
}


.pf-storage-card span {
    color: #777a85;
    font-size: 11px;
}


/* =================================================
   PICK & PACK
================================================== */

.pf-interactive-card {
    padding: 26px;
}


.pf-interactive-card > h4,
.pf-shipping-card > h4 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 16px;
}


.pf-packaging-tabs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
    margin-bottom: 24px;
}


.pf-package-tab,
.pf-weight-tab {
    min-height: 45px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #9598a3;
    cursor: pointer;
    font-size: 12px;
    transition: 0.25s ease;
}


.pf-package-tab:hover,
.pf-weight-tab:hover {
    color: #ffffff;
    border-color: rgba(139,105,255,0.25);
}


.pf-package-tab.active,
.pf-weight-tab.active {
    color: #ffffff;
    border-color: rgba(142,107,255,0.40);
    background: linear-gradient(
        135deg,
        #634bef,
        #8039e9
    );
}


.pf-package-tab:nth-child(4),
.pf-package-tab:nth-child(5) {
    grid-column: span 1;
}


.pf-package-price {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 15px;
}


.pf-cost-row span {
    color: #b8bac2;
    font-size: 13px;
}


.pf-cost-row strong {
    color: #aa8dff;
    font-size: 16px;
}


.pf-package-description {
    margin: 18px 3px 0;
    color: #888b95;
    font-size: 12px;
    line-height: 1.6;
}


/* =================================================
   SHIPPING
================================================== */

.pf-shipping-card {
    padding: 26px;
}


.pf-shipping-origin {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
}


.pf-shipping-origin span {
    font-size: 22px;
}


.pf-shipping-origin strong {
    font-size: 14px;
}


.pf-weight-tabs {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 7px;
    margin-bottom: 25px;
}


.pf-weight-tab {
    min-height: 38px;
    padding: 6px;
}


.pf-shipping-rates {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}


.pf-rate-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 16px;
    border: 1px solid rgba(139,105,255,0.14);
    border-radius: 11px;
    background: rgba(113,72,255,0.06);
}


.pf-rate-card span {
    color: #c3c4cb;
    font-size: 12px;
}


.pf-rate-card strong {
    color: #a98dff;
    font-size: 13px;
}


.pf-shipping-note {
    margin: 18px 0 0;
    color: #777a85;
    font-size: 11px;
    font-style: italic;
}


/* =================================================
   ACCOUNT MANAGEMENT
================================================== */

.pf-account-section {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 70px;
    align-items: center;
    padding: 85px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}


.pf-account-section > div:first-child {
    max-width: 560px;
}


.pf-account-section .pf-step-label {
    margin-bottom: 15px;
}


.pf-account-section p {
    color: #9699a5;
    font-size: 15px;
    line-height: 1.7;
}


.pf-account-price {
    padding: 35px;
    border: 1px solid rgba(139,106,255,0.22);
    border-radius: 20px;
    background: rgba(113,72,255,0.07);
}


.pf-account-price > span {
    color: #8c8f9a;
    font-size: 12px;
}


.pf-account-price strong {
    display: block;
    margin: 10px 0;
    color: #ffffff;
    font-size: 44px;
    letter-spacing: -2px;
}


.pf-account-price strong small {
    color: #9295a0;
    font-size: 14px;
    letter-spacing: 0;
}


.pf-account-price p {
    margin: 0;
    color: #9589b9;
    font-size: 11px;
}


/* =================================================
   ADDITIONAL
================================================== */

.pf-additional-section {
    padding: 85px 0 20px;
}


.pf-additional-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}


.pf-additional-heading .pf-step-label {
    margin-bottom: 12px;
}


.pf-additional-heading h3 {
    margin-bottom: 0;
}


.pf-additional-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}


.pf-additional-card {
    padding: 26px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 17px;
    background: rgba(255,255,255,0.025);
}


.pf-additional-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(113,72,255,0.12);
    color: #a98cff;
    font-size: 18px;
}


.pf-additional-card h4 {
    margin: 0 0 10px;
    font-size: 16px;
}


.pf-additional-card p {
    min-height: 65px;
    margin: 0 0 18px;
    color: #8f929d;
    font-size: 12px;
    line-height: 1.6;
}


.pf-status,
.pf-small-button {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(112,72,255,0.14);
    color: #aa8fff;
    font-size: 10px;
    font-weight: 800;
}


.pf-status-variable {
    color: #d2c8f7;
}


.pf-small-button {
    text-decoration: none;
}


/* =================================================
   VOLUME OVERVIEWS
================================================== */

.pf-overview-panel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 45px;
}


.pf-overview-panel h3 {
    margin: 18px 0 14px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -2px;
}


.pf-overview-panel h3 span {
    display: block;
}


.pf-overview-panel > p {
    max-width: 650px;
    margin: 0 0 35px;
    color: #9295a0;
    font-size: 15px;
    line-height: 1.7;
}


.pf-overview-table {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 15px;
}


.pf-overview-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}


.pf-overview-row:last-child {
    border-bottom: 0;
}


.pf-overview-row strong,
.pf-overview-row span {
    padding: 20px;
}


.pf-overview-row strong {
    color: #ffffff;
    background: rgba(255,255,255,0.025);
}


.pf-overview-row span {
    color: #a2a4ad;
}


.pf-enterprise {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(121,76,240,0.16),
            transparent 35%
        ),
        rgba(255,255,255,0.025);
}


.pf-enterprise-button {
    display: inline-flex;
    margin-top: 28px;
    height: 50px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: linear-gradient(135deg,#634bef,#8138e9);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* =================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .pf-pricing {
        padding: 85px 25px;
    }


    .pf-price-step {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 65px 0;
    }


    .pf-price-step.pf-reverse .pf-step-content,
    .pf-price-step.pf-reverse > :last-child {
        order: initial;
    }


    .pf-step-content {
        max-width: 700px;
    }


    .pf-account-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .pf-account-price {
        max-width: 500px;
    }

}


/* =================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .pf-pricing {
        padding: 65px 18px;
    }


    .pf-pricing-heading {
        margin-bottom: 38px;
    }


    .pf-pricing-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }


    .pf-pricing-heading p {
        font-size: 14px;
    }


    /* Volume tabs */

    .pf-volume-tabs {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 40px;
    }


    .pf-volume-tab {
        min-height: 58px;
    }


    /* Steps */

    .pf-price-step {
        padding: 50px 0;
        gap: 30px;
    }


    .pf-step-number {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        font-size: 11px;
    }


    .pf-step-content h3,
    .pf-account-section h3,
    .pf-additional-heading h3 {
        font-size: 32px;
        letter-spacing: -1.3px;
    }


    .pf-step-content p {
        font-size: 14px;
    }


    /* Receiving */

    .pf-price-row,
    .pf-cost-row {
        padding: 16px;
        gap: 15px;
    }


    /* Storage */

    .pf-storage-grid {
        grid-template-columns: 1fr;
    }


    /* Packaging */

    .pf-interactive-card,
    .pf-shipping-card {
        padding: 18px;
        border-radius: 16px;
    }


    .pf-packaging-tabs {
        grid-template-columns: repeat(2,1fr);
    }


    .pf-package-tab {
        min-height: 42px;
        padding: 8px;
        font-size: 11px;
    }


    /* Weight */

    .pf-weight-tabs {
        grid-template-columns: repeat(3,1fr);
    }


    /* Shipping */

    .pf-shipping-rates {
        grid-template-columns: 1fr;
    }


    /* Account */

    .pf-account-section {
        padding: 55px 0;
    }


    .pf-account-price {
        padding: 25px;
    }


    .pf-account-price strong {
        font-size: 36px;
    }


    /* Additional */

    .pf-additional-section {
        padding-top: 55px;
    }


    .pf-additional-heading {
        flex-direction: column;
        gap: 5px;
    }


    .pf-additional-grid {
        grid-template-columns: 1fr;
    }


    .pf-additional-card p {
        min-height: auto;
    }


    /* Overview */

    .pf-overview-panel {
        padding: 25px 18px;
        border-radius: 17px;
    }


    .pf-overview-panel h3 {
        font-size: 32px;
    }


    .pf-overview-row {
        grid-template-columns: 1fr;
    }


    .pf-overview-row strong {
        padding-bottom: 5px;
        background: transparent;
    }


    .pf-overview-row span {
        padding-top: 6px;
    }

}


/* =================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .pf-pricing {
        padding: 55px 14px;
    }


    .pf-pricing-heading h2 {
        font-size: 30px;
    }


    .pf-step-content h3,
    .pf-account-section h3,
    .pf-additional-heading h3 {
        font-size: 28px;
    }


    .pf-packaging-tabs {
        grid-template-columns: 1fr;
    }


    .pf-weight-tabs {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================
   PREPFLOW SERVICES PAGE
========================== */

.services-page {
    position: relative;
    padding: 110px 30px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(111, 72, 255, 0.12),
            transparent 32%
        ),
        #08090c;

    overflow: hidden;
}


.services-page-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================== */

.services-page-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}


.services-page-label {
    display: inline-flex;

    padding: 7px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(135, 99, 255, 0.25);
    border-radius: 50px;

    background: rgba(113, 72, 255, 0.08);

    color: #aa92ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


.services-page-heading h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.08;

    letter-spacing: -2.5px;
}


.services-page-heading h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #b29aff,
        #7547ef
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.services-page-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #989ba6;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   GRID
========================== */

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================
   CARD
========================== */

.service-page-card {
    position: relative;

    min-height: 265px;

    padding: 32px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.018)
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* top glow line */

.service-page-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #8259ff,
        transparent
    );

    transition: 0.35s ease;
}


/* hover */

.service-page-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(133, 96, 255, 0.30);

    background:
        linear-gradient(
            145deg,
            rgba(113,72,255,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 22px 55px rgba(0,0,0,0.30);
}


.service-page-card:hover::before {
    width: 130px;
}


/* =========================
   ICONS
========================== */

.service-page-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    border:
        1px solid rgba(143,107,255,0.22);

    background:
        rgba(113,72,255,0.10);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.service-page-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #a98cff;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.service-page-card:hover .service-page-icon {
    transform:
        translateY(-3px)
        scale(1.06);

    background:
        rgba(113,72,255,0.17);

    box-shadow:
        0 10px 30px
        rgba(104,64,230,0.18);
}


/* =========================
   TEXT
========================== */

.service-page-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.3;
}


.service-page-card p {
    max-width: 300px;

    margin: 0 0 20px;

    color: #92959f;

    font-size: 13px;

    line-height: 1.65;
}


.service-page-card a {
    display: inline-flex;

    align-items: center;

    color: #a88cff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.service-page-card a:hover {
    color: #c4b5ff;

    transform: translateX(4px);
}


/* =========================
   TABLET
========================== */

@media (max-width: 950px) {

    .services-page {
        padding: 85px 25px;
    }


    .services-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 650px) {

    .services-page {
        padding: 65px 18px;
    }


    .services-page-heading {
        margin-bottom: 40px;
    }


    .services-page-label {
        font-size: 10px;

        padding: 6px 12px;
    }


    .services-page-heading h1 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .services-page-heading p {
        font-size: 14px;
    }


    .services-page-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .service-page-card {
        min-height: auto;

        padding: 28px 20px;

        border-radius: 15px;
    }


    .service-page-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 18px;
    }


    .service-page-icon svg {
        width: 24px;
        height: 24px;
    }


    .service-page-card h3 {
        font-size: 16px;
    }


    .service-page-card p {
        font-size: 13px;
    }

}


/* =========================
   SMALL MOBILE
========================== */

@media (max-width: 400px) {

    .services-page {
        padding: 55px 14px;
    }


    .services-page-heading h1 {
        font-size: 30px;
    }


    .service-page-card {
        padding: 24px 17px;
    }

}

/* =========================================
   PREPFLOW QUOTE FORM - FIXED RESPONSIVE
========================================= */

.quote-page,
.quote-page * {
    box-sizing: border-box;
}


/* Same font family as main website */
.quote-page {
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   FORM WRAPPER
========================================= */

.quote-form-wrapper {
    width: 100%;

    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,0.30);

    overflow: hidden;
}


/* =========================================
   FORM
========================================= */

.quote-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* =========================================
   2 COLUMN ROW
========================================= */

.quote-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.quote-field {
    width: 100%;
    min-width: 0;
}


/* =========================================
   LABELS
========================================= */

.quote-field label {
    display: block;

    margin-bottom: 8px;

    color: #d3d4da;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   INPUTS
========================================= */

.quote-field input,
.quote-field select,
.quote-field textarea {
    display: block;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;

    outline: none;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;

    background: rgba(255,255,255,0.035);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    box-sizing: border-box;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.quote-field input,
.quote-field select {
    height: 52px;

    padding: 0 16px;
}


.quote-field textarea {
    min-height: 140px;

    padding: 15px 16px;

    resize: vertical;
}


/* Placeholder */

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #727682;

    opacity: 1;
}


/* Focus */

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: rgba(136, 99, 255, 0.60);

    background: rgba(113,72,255,0.045);

    box-shadow:
        0 0 0 3px rgba(113,72,255,0.07);
}


/* Select */

.quote-field select {
    cursor: pointer;
}


.quote-field select option {
    background: #111218;
    color: #ffffff;
}


/* =========================================
   FORM HEADING FONT FIX
========================================= */

.quote-form-heading > span {
    font-family: Arial, Helvetica, sans-serif;

    color: #9d81ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.quote-form-heading h2 {
    margin: 8px 0 7px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -1px;
}


.quote-form-heading p {
    margin: 0;

    color: #858894;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
}


/* =========================================
   ORDER VOLUME OPTIONS
========================================= */

.quote-options {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 9px;
}


.quote-option {
    position: relative;

    width: 100%;

    margin: 0 !important;

    cursor: pointer;
}


.quote-option input {
    position: absolute;

    opacity: 0;

    width: 1px;
    height: 1px;

    pointer-events: none;
}


.quote-option span {
    width: 100%;
    min-height: 47px;

    padding: 9px 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;

    background: rgba(255,255,255,0.035);

    color: #989ba6;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}


.quote-option input:checked + span {
    color: #ffffff;

    border-color: rgba(145,109,255,0.45);

    background:
        linear-gradient(
            135deg,
            #654df0,
            #8039e8
        );

    box-shadow:
        0 8px 24px rgba(101,65,228,0.16);
}


/* =========================================
   SERVICES CHECKBOXES
========================================= */

.quote-services {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.quote-services label {
    width: 100%;

    margin: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;

    background: rgba(255,255,255,0.025);

    cursor: pointer;
}


.quote-services input {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    accent-color: #7750ef;
}


.quote-services span {
    color: #a9abb4;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.quote-submit {
    width: 100%;
    height: 54px;

    border: 0;
    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #654df0,
            #8138e8
        );

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .quote-form-wrapper {
        padding: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .quote-page {
        padding: 55px 16px;
    }


    .quote-container {
        display: block;
    }


    .quote-intro {
        position: static;

        margin-bottom: 38px;
    }


    .quote-form-wrapper {
        width: 100%;

        padding: 24px 16px;

        border-radius: 18px;
    }


    .quote-form-heading {
        margin-bottom: 26px;
    }


    .quote-form-heading h2 {
        font-size: 24px;
    }


    /*
       IMPORTANT:
       Two columns become one column
    */

    .quote-form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .quote-field input,
    .quote-field select {
        height: 48px;

        font-size: 14px;
    }


    .quote-field textarea {
        min-height: 125px;
    }


    /* Order volume */

    .quote-options {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 8px;
    }


    /* Services */

    .quote-services {
        grid-template-columns: 1fr;
    }


    .quote-submit {
        height: 48px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .quote-page {
        padding: 45px 12px;
    }


    .quote-form-wrapper {
        padding: 21px 14px;
    }


    .quote-form-heading h2 {
        font-size: 22px;
    }


    .quote-field label {
        font-size: 12px;
    }


    /*
       Order options also become
       one per row on very small screens
    */

    .quote-options {
        grid-template-columns: 1fr;
    }


    .quote-option span {
        min-height: 44px;
    }

}

/* =========================================
   PREPFLOW QUOTE PAGE
========================================= */

.quote-page {
    min-height: 100vh;

    padding: 100px 30px;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(110, 66, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 60%,
            rgba(113, 54, 225, 0.08),
            transparent 25%
        ),
        #08090c;

    color: #ffffff;
}


.quote-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


/* =========================================
   INTRO
========================================= */

.quote-intro {
    position: sticky;

    top: 40px;
}


.quote-label {
    display: inline-flex;

    padding: 7px 14px;

    margin-bottom: 20px;

    border:
        1px solid rgba(137, 100, 255, 0.28);

    border-radius: 50px;

    background:
        rgba(113, 72, 255, 0.08);

    color: #aa91ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.quote-intro h1 {
    margin:
        0 0 24px;

    font-size:
        clamp(42px, 5vw, 66px);

    line-height: 1.04;

    letter-spacing: -3px;
}


.quote-intro h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #b49dff,
            #7745ef
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.quote-intro > p {
    max-width: 500px;

    margin:
        0 0 35px;

    color: #9b9eaa;

    font-size: 16px;

    line-height: 1.75;
}


/* Benefits */

.quote-benefits {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.quote-benefit {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 16px;

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.025);
}


.quote-benefit-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(113,72,255,0.14);

    color: #aa8fff;

    font-size: 12px;

    font-weight: 800;
}


.quote-benefit strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 14px;
}


.quote-benefit span {
    color: #858894;

    font-size: 12px;

    line-height: 1.55;
}


/* Help card */

.quote-help-card {
    margin-top: 28px;

    padding: 22px;

    border:
        1px solid rgba(139,105,255,0.18);

    border-radius: 16px;

    background:
        rgba(113,72,255,0.06);
}


.quote-help-card > span {
    display: block;

    margin-bottom: 5px;

    color: #9587c4;

    font-size: 11px;
}


.quote-help-card strong {
    color: #ffffff;

    font-size: 15px;
}


.quote-help-card p {
    margin:
        7px 0 0;

    color: #8b8e99;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   FORM WRAPPER
========================================= */

.quote-form-wrapper {
    padding: 40px;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.30);
}


.quote-form-heading {
    margin-bottom: 32px;
}


.quote-form-heading > span {
    color: #9d81ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.quote-form-heading h2 {
    margin:
        8px 0 6px;

    color: #ffffff;

    font-size: 28px;

    letter-spacing: -1px;
}


.quote-form-heading p {
    margin: 0;

    color: #777a85;

    font-size: 12px;
}


/* =========================================
   FORM
========================================= */

.quote-form {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.quote-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


.quote-field {
    min-width: 0;
}


.quote-field label {
    display: block;

    margin-bottom: 8px;

    color: #c8cad1;

    font-size: 12px;

    font-weight: 600;
}


.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;

    outline: none;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.035);

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.quote-field input,
.quote-field select {
    height: 50px;

    padding:
        0 15px;
}


.quote-field textarea {
    padding: 14px 15px;

    resize: vertical;

    min-height: 130px;
}


.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #656873;
}


.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color:
        rgba(136, 99, 255, 0.55);

    background:
        rgba(113,72,255,0.045);

    box-shadow:
        0 0 0 3px
        rgba(113,72,255,0.06);
}


.quote-field select option {
    background: #111218;

    color: #ffffff;
}


/* =========================================
   ORDER OPTIONS
========================================= */

.quote-options {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 9px;
}


.quote-option {
    cursor: pointer;

    margin: 0 !important;
}


.quote-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.quote-option span {
    min-height: 47px;

    padding:
        8px 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.035);

    color: #9598a3;

    font-size: 11px;

    transition:
        all 0.25s ease;
}


.quote-option input:checked + span {
    color: #ffffff;

    border-color:
        rgba(145,109,255,0.45);

    background:
        linear-gradient(
            135deg,
            #654df0,
            #8039e8
        );

    box-shadow:
        0 8px 24px
        rgba(101,65,228,0.16);
}


/* =========================================
   SERVICES CHECKBOXES
========================================= */

.quote-services {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 9px;
}


.quote-services label {
    margin: 0;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.025);

    cursor: pointer;
}


.quote-services input {
    width: 15px;

    height: 15px;

    accent-color: #7750ef;
}


.quote-services span {
    color: #a9abb4;

    font-size: 12px;
}


/* =========================================
   SUBMIT
========================================= */

.quote-submit {
    width: 100%;

    height: 56px;

    padding:
        0 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #654df0,
            #8138e8
        );

    color: #ffffff;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 15px 35px
        rgba(101,63,230,0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}


.quote-submit:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 20px 45px
        rgba(101,63,230,0.38);
}


.quote-submit:disabled {
    opacity: 0.6;

    cursor: wait;

    transform: none;
}


/* Status */

.quote-status {
    display: none;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 12px;

    text-align: center;
}


.quote-status.success {
    display: block;

    border:
        1px solid rgba(74,222,128,0.20);

    background:
        rgba(74,222,128,0.07);

    color: #86efac;
}


.quote-status.error {
    display: block;

    border:
        1px solid rgba(248,113,113,0.20);

    background:
        rgba(248,113,113,0.07);

    color: #fca5a5;
}


.quote-privacy {
    margin: 0;

    color: #666975;

    text-align: center;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .quote-page {
        padding:
            80px 25px;
    }


    .quote-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .quote-intro {
        position: relative;

        top: auto;

        max-width: 750px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .quote-page {
        padding:
            60px 18px;
    }


    .quote-container {
        gap: 38px;
    }


    .quote-intro h1 {
        font-size: 36px;

        letter-spacing: -1.6px;
    }


    .quote-intro > p {
        font-size: 14px;
    }


    .quote-form-wrapper {
        padding: 25px 18px;

        border-radius: 18px;
    }


    .quote-form-heading h2 {
        font-size: 23px;
    }


    .quote-form-row {
        grid-template-columns: 1fr;
    }


    .quote-options {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }


    .quote-services {
        grid-template-columns: 1fr;
    }


    .quote-submit {
        height: 48px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .quote-page {
        padding:
            50px 14px;
    }


    .quote-intro h1 {
        font-size: 31px;
    }


    .quote-options {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   PREPFLOW QUOTE FORM - FIXED RESPONSIVE
========================================= */

.quote-page,
.quote-page * {
    box-sizing: border-box;
}


/* Same font family as main website */
.quote-page {
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   FORM WRAPPER
========================================= */

.quote-form-wrapper {
    width: 100%;

    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,0.30);

    overflow: hidden;
}


/* =========================================
   FORM
========================================= */

.quote-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* =========================================
   2 COLUMN ROW
========================================= */

.quote-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.quote-field {
    width: 100%;
    min-width: 0;
}


/* =========================================
   LABELS
========================================= */

.quote-field label {
    display: block;

    margin-bottom: 8px;

    color: #d3d4da;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   INPUTS
========================================= */

.quote-field input,
.quote-field select,
.quote-field textarea {
    display: block;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;

    outline: none;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;

    background: rgba(255,255,255,0.035);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    box-sizing: border-box;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.quote-field input,
.quote-field select {
    height: 52px;

    padding: 0 16px;
}


.quote-field textarea {
    min-height: 140px;

    padding: 15px 16px;

    resize: vertical;
}


/* Placeholder */

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #727682;

    opacity: 1;
}


/* Focus */

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: rgba(136, 99, 255, 0.60);

    background: rgba(113,72,255,0.045);

    box-shadow:
        0 0 0 3px rgba(113,72,255,0.07);
}


/* Select */

.quote-field select {
    cursor: pointer;
}


.quote-field select option {
    background: #111218;
    color: #ffffff;
}


/* =========================================
   FORM HEADING FONT FIX
========================================= */

.quote-form-heading > span {
    font-family: Arial, Helvetica, sans-serif;

    color: #9d81ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.quote-form-heading h2 {
    margin: 8px 0 7px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -1px;
}


.quote-form-heading p {
    margin: 0;

    color: #858894;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
}


/* =========================================
   ORDER VOLUME OPTIONS
========================================= */

.quote-options {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 9px;
}


.quote-option {
    position: relative;

    width: 100%;

    margin: 0 !important;

    cursor: pointer;
}


.quote-option input {
    position: absolute;

    opacity: 0;

    width: 1px;
    height: 1px;

    pointer-events: none;
}


.quote-option span {
    width: 100%;
    min-height: 47px;

    padding: 9px 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;

    background: rgba(255,255,255,0.035);

    color: #989ba6;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}


.quote-option input:checked + span {
    color: #ffffff;

    border-color: rgba(145,109,255,0.45);

    background:
        linear-gradient(
            135deg,
            #654df0,
            #8039e8
        );

    box-shadow:
        0 8px 24px rgba(101,65,228,0.16);
}


/* =========================================
   SERVICES CHECKBOXES
========================================= */

.quote-services {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.quote-services label {
    width: 100%;

    margin: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;

    background: rgba(255,255,255,0.025);

    cursor: pointer;
}


.quote-services input {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    accent-color: #7750ef;
}


.quote-services span {
    color: #a9abb4;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.quote-submit {
    width: 100%;
    height: 54px;

    border: 0;
    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #654df0,
            #8138e8
        );

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .quote-form-wrapper {
        padding: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .quote-page {
        padding: 55px 16px;
    }


    .quote-container {
        display: block;
    }


    .quote-intro {
        position: static;

        margin-bottom: 38px;
    }


    .quote-form-wrapper {
        width: 100%;

        padding: 24px 16px;

        border-radius: 18px;
    }


    .quote-form-heading {
        margin-bottom: 26px;
    }


    .quote-form-heading h2 {
        font-size: 24px;
    }


    /*
       IMPORTANT:
       Two columns become one column
    */

    .quote-form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .quote-field input,
    .quote-field select {
        height: 48px;

        font-size: 14px;
    }


    .quote-field textarea {
        min-height: 125px;
    }


    /* Order volume */

    .quote-options {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 8px;
    }


    /* Services */

    .quote-services {
        grid-template-columns: 1fr;
    }


    .quote-submit {
        height: 48px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .quote-page {
        padding: 45px 12px;
    }


    .quote-form-wrapper {
        padding: 21px 14px;
    }


    .quote-form-heading h2 {
        font-size: 22px;
    }


    .quote-field label {
        font-size: 12px;
    }


    /*
       Order options also become
       one per row on very small screens
    */

    .quote-options {
        grid-template-columns: 1fr;
    }


    .quote-option span {
        min-height: 44px;
    }

}

