/* =====================================================
   HIMscript PRICING PAGE
   Brand Colors:
   #3e4f67
   #c2995a
   #fefefe
   #0c1d31
===================================================== */


/* =====================================================
   GLOBAL
===================================================== */

body {

    margin: 0;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: #0c1d31;

    background: #fefefe;

}


* {
    box-sizing: border-box;
}


/* =====================================================
   PRICING HERO
===================================================== */

.hm-price-hero {

    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0c1d31,
            #3e4f67
        );

    color: #fefefe;

}


.price-bg-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(254,254,254,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(254,254,254,.04) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    animation: gridAnimation 20s linear infinite;

}


@keyframes gridAnimation {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(50px,50px);
    }

}


.price-glow {

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: #c2995a;

    filter: blur(130px);

    opacity: .12;

}


.price-glow-one {

    right: 10%;
    top: -150px;

}


.price-glow-two {

    left: -150px;
    bottom: -200px;

}


.hm-price-heading {

    position: relative;

    max-width: 850px;

    padding: 90px 0;

    z-index: 2;

    animation: headingReveal 1s ease both;

}


@keyframes headingReveal {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.price-kicker {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #c2995a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.hm-price-heading h1 {

    margin-top: 20px;

    margin-bottom: 20px;

    font-size: 58px;

    line-height: 1.05;

    font-weight: 800;

}


.hm-price-heading h1 span {

    display: block;

    color: #c2995a;

    font-family: Georgia, serif;

    font-style: italic;

}


.hm-price-heading p {

    max-width: 680px;

    color: rgba(254,254,254,.70);

    line-height: 1.8;

    font-size: 17px;

}


/* =====================================================
   PRICING SECTION
===================================================== */

.hm-pricing-section {

    position: relative;

    padding: 100px 0;

    background:

        linear-gradient(
            180deg,
            #fefefe,
            #f5f6f8
        );

}


.hm-price-card {

    position: relative;

    height: 100%;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e3e6ea;

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(12,29,49,.08);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.hm-price-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: #c2995a;

}


.hm-price-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 30px 65px rgba(12,29,49,.15);

    border-color: rgba(194,153,90,.55);

}


/* =====================================================
   PRICE CARD HEADER
===================================================== */

.price-card-top {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}


.price-icon {

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0c1d31;

    color: #c2995a;

    border-radius: 12px;

    font-size: 23px;

    box-shadow:
        0 10px 25px rgba(12,29,49,.20);

    transition: .35s ease;

}


.hm-price-card:hover .price-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

}


.price-label {

    color: #c2995a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.price-card-top h2 {

    margin: 5px 0 0;

    color: #0c1d31;

    font-size: 27px;

    font-weight: 750;

}


.price-intro {

    color: #66717d;

    line-height: 1.75;

    font-size: 14px;

    min-height: 75px;

}


/* =====================================================
   PRICE AMOUNT
===================================================== */

.price-amount {

    margin: 30px 0;

    padding: 20px;

    background: #f5f6f8;

    border-left: 4px solid #c2995a;

}


.price-amount small {

    display: block;

    color: #7b838c;

    font-size: 11px;

    margin-bottom: 3px;

}


.price-amount strong {

    color: #0c1d31;

    font-size: 40px;

    font-weight: 800;

}


.price-amount span {

    color: #6d747c;

    font-size: 13px;

}


/* =====================================================
   INCLUDED TITLE
===================================================== */

.included-title {

    margin-top: 25px;

    margin-bottom: 14px;

    color: #0c1d31;

    font-weight: 700;

    font-size: 14px;

}


.included-title i {

    color: #c2995a;

    margin-right: 8px;

}


/* =====================================================
   PRICE LIST
===================================================== */

.price-list {

    padding: 0;

    margin: 0;

    list-style: none;

}


.price-list li {

    position: relative;

    padding: 9px 0;

    color: #596572;

    font-size: 13px;

    border-bottom: 1px solid #eef0f2;

    transition: .3s ease;

}


.price-list li:last-child {
    border-bottom: none;
}


.price-list li i {

    width: 22px;

    color: #c2995a;

    font-size: 11px;

}


.price-list li:hover {

    color: #0c1d31;

    padding-left: 6px;

}


/* =====================================================
   PRICE BUTTON
===================================================== */

.price-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 30px;

    padding: 14px 20px;

    background: #0c1d31;

    color: #fefefe !important;

    text-decoration: none !important;

    border: 1px solid #0c1d31;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: .35s ease;

}


.price-button i {

    color: #c2995a;

    transition: .35s ease;

}


.price-button:hover {

    background: #c2995a;

    color: #0c1d31 !important;

    border-color: #c2995a;

}


.price-button:hover i {

    color: #0c1d31;

    transform: translateX(5px);

}


/* =====================================================
   AI CARD
===================================================== */

.ai-card {

    border-color: rgba(194,153,90,.35);

}


.popular-ribbon {

    position: absolute;

    top: 22px;
    right: -35px;

    width: 150px;

    padding: 7px;

    text-align: center;

    background: #c2995a;

    color: #0c1d31;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    transform: rotate(45deg);

}


/* =====================================================
   AI NOTICE
===================================================== */

.ai-notice {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    margin-bottom: 20px;

    background: rgba(194,153,90,.10);

    border: 1px solid rgba(194,153,90,.25);

    color: #3e4f67;

    font-size: 12px;

}


.ai-notice i {

    color: #c2995a;

}


.ai-notice strong {

    color: #0c1d31;

}


/* =====================================================
   IDEAL TAGS
===================================================== */

.ideal-title {

    margin-top: 25px;

    margin-bottom: 12px;

    color: #0c1d31;

    font-weight: 700;

    font-size: 14px;

}


.ideal-title i {

    color: #c2995a;

    margin-right: 8px;

}


.ideal-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 15px;

}


.ideal-tags span {

    padding: 6px 9px;

    background: #f1f3f5;

    color: #52606d;

    border-radius: 20px;

    font-size: 9px;

    transition: .3s ease;

}


.ideal-tags span:hover {

    background: #0c1d31;

    color: #fefefe;

}


/* =====================================================
   FREE SAMPLE
===================================================== */

.hm-free-sample {

    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:

        linear-gradient(
            125deg,
            #0c1d31,
            #3e4f67
        );

    color: #fefefe;

}


.sample-pattern {

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:
        radial-gradient(
            #c2995a 1px,
            transparent 1px
        );

    background-size: 25px 25px;

}


.sample-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: rgba(194,153,90,.12);

    border: 1px solid rgba(194,153,90,.40);

    color: #c2995a;

    border-radius: 12px;

    font-size: 24px;

}


.sample-kicker {

    color: #c2995a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hm-free-sample h2 {

    margin: 12px 0;

    font-size: 43px;

    font-weight: 800;

}


.hm-free-sample h2 span {

    color: #c2995a;

    font-family: Georgia, serif;

    font-style: italic;

}


.hm-free-sample p {

    max-width: 700px;

    color: rgba(254,254,254,.68);

    line-height: 1.8;

    font-size: 14px;

}


.hm-free-sample p strong {

    color: #c2995a;

}


.sample-features {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;

}


.sample-features span {

    color: rgba(254,254,254,.75);

    font-size: 12px;

}


.sample-features i {

    margin-right: 5px;

    color: #c2995a;

}


.sample-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 17px 25px;

    background: #c2995a;

    color: #0c1d31 !important;

    text-decoration: none !important;

    font-weight: 800;

    font-size: 13px;

    transition: .35s ease;

}


.sample-button:hover {

    background: #fefefe;

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);

}


.sample-note {

    display: block;

    margin-top: 15px;

    color: rgba(254,254,254,.40);

    font-size: 10px;

}


/* =====================================================
   PROCESS SECTION
===================================================== */

.hm-process-section {

    padding: 110px 0;

    background: #f5f6f8;

}


.process-heading {

    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;

}


.process-heading > span {

    color: #c2995a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.process-heading h2 {

    margin: 15px 0;

    color: #0c1d31;

    font-size: 44px;

    font-weight: 800;

}


.process-heading h2 strong {

    color: #c2995a;

}


.process-heading p {

    color: #697582;

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   PROCESS FLOW
===================================================== */

.hm-process-flow {

    position: relative;

    max-width: 850px;

    margin: auto;

}


/* Vertical line */

.hm-process-flow::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 36px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            #c2995a,
            #3e4f67,
            #c2995a
        );

}


.process-step {

    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 20px 25px;

    margin-bottom: 15px;

    background: #ffffff;

    border: 1px solid #e3e6e9;

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(12,29,49,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    opacity: 0;

    animation:
        processReveal .7s ease forwards;

}


.process-step:nth-of-type(1) {
    animation-delay: .1s;
}

.process-step:nth-of-type(2) {
    animation-delay: .2s;
}

.process-step:nth-of-type(3) {
    animation-delay: .3s;
}

.process-step:nth-of-type(4) {
    animation-delay: .4s;
}

.process-step:nth-of-type(5) {
    animation-delay: .5s;
}

.process-step:nth-of-type(6) {
    animation-delay: .6s;
}

.process-step:nth-of-type(7) {
    animation-delay: .7s;
}

.process-step:nth-of-type(8) {
    animation-delay: .8s;
}


@keyframes processReveal {

    from {

        opacity: 0;

        transform:
            translateX(-30px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


.process-step:hover {

    transform: translateX(8px);

    border-color: rgba(194,153,90,.45);

    box-shadow:
        0 15px 35px rgba(12,29,49,.10);

}


/* =====================================================
   STEP NUMBER
===================================================== */

.step-number {

    position: relative;

    z-index: 3;

    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0c1d31;

    color: #c2995a;

    border: 2px solid #c2995a;

    border-radius: 50%;

    font-size: 7px;

    font-weight: 800;

}


/* =====================================================
   STEP ICON
===================================================== */

.step-icon {

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f3f5;

    color: #3e4f67;

    border-radius: 10px;

    font-size: 19px;

    transition: .35s ease;

}


.process-step:hover .step-icon {

    background: #0c1d31;

    color: #c2995a;

    transform:
        rotate(5deg)
        scale(1.05);

}


/* =====================================================
   STEP CONTENT
===================================================== */

.step-content {

    flex: 1;

}


.step-content > span {

    color: #c2995a;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.step-content h3 {

    margin: 5px 0;

    color: #0c1d31;

    font-size: 17px;

    font-weight: 750;

}


.step-content p {

    margin: 0;

    color: #71808d;

    font-size: 12px;

    line-height: 1.6;

}


/* =====================================================
   FLOW ARROW
===================================================== */

.flow-arrow {

    position: relative;

    z-index: 4;

    width: 74px;

    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: -3px 0 -3px 0;

    color: #c2995a;

    font-size: 13px;

    animation: arrowPulse 1.5s ease-in-out infinite;

}


@keyframes arrowPulse {

    0%,
    100% {
        transform: translateY(0);
        opacity: .55;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }

}


/* =====================================================
   FINAL STEP
===================================================== */

.final-step {

    border-color:
        rgba(194,153,90,.55);

}


.final-step .step-icon {

    background: #c2995a;

    color: #0c1d31;

}


.process-complete {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    max-width: 500px;

    margin: 45px auto 0;

    padding: 15px;

    border: 1px solid rgba(194,153,90,.45);

    background: rgba(194,153,90,.08);

    color: #3e4f67;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.process-complete i {

    color: #c2995a;

}


/* =====================================================
   FINAL CTA
===================================================== */

.hm-price-cta {

    padding: 70px 0;

    background: #0c1d31;

}


.cta-box {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px 40px;

    background: #172c43;

    border: 1px solid rgba(194,153,90,.30);

    border-radius: 12px;

}


.cta-icon {

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(194,153,90,.10);

    color: #c2995a;

    border-radius: 10px;

    font-size: 22px;

}


.cta-box > div:nth-child(2) {

    flex: 1;

}


.cta-box span {

    color: #c2995a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.cta-box h2 {

    margin: 6px 0;

    color: #fefefe;

    font-size: 27px;

    font-weight: 750;

}


.cta-box p {

    margin: 0;

    color: rgba(254,254,254,.50);

    font-size: 12px;

    line-height: 1.6;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: #c2995a;

    color: #0c1d31 !important;

    text-decoration: none !important;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition: .35s ease;

}


.cta-button:hover {

    background: #fefefe;

    transform: translateY(-3px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hm-price-heading h1 {

        font-size: 48px;

    }


    .hm-price-heading {

        text-align: center;

        margin: auto;

    }


    .hm-price-heading p {

        margin-left: auto;
        margin-right: auto;

    }


    .hm-free-sample {

        text-align: center;

    }


    .sample-icon {

        margin-left: auto;
        margin-right: auto;

    }


    .sample-features {

        justify-content: center;

    }


    .sample-button {

        margin-top: 35px;

    }


    .cta-box {

        flex-wrap: wrap;

        text-align: center;

        justify-content: center;

    }


    .cta-box > div:nth-child(2) {

        flex: 0 0 100%;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .hm-price-heading {

        padding: 75px 15px;

    }


    .hm-price-heading h1 {

        font-size: 39px;

    }


    .hm-price-heading p {

        font-size: 14px;

    }


    .hm-pricing-section {

        padding: 70px 0;

    }


    .hm-price-card {

        padding: 30px 24px;

    }


    .price-card-top h2 {

        font-size: 23px;

    }


    .price-amount strong {

        font-size: 34px;

    }


    .hm-free-sample {

        padding: 70px 0;

    }


    .hm-free-sample h2 {

        font-size: 34px;

    }


    .sample-features {

        flex-direction: column;

        align-items: center;

        gap: 10px;

    }


    .hm-process-section {

        padding: 75px 0;

    }


    .process-heading {

        margin-bottom: 45px;

        padding: 0 15px;

    }


    .process-heading h2 {

        font-size: 34px;

    }


    .hm-process-flow {

        padding: 0 15px;

    }


    .hm-process-flow::before {

        left: 25px;

    }


    .process-step {

        gap: 13px;

        padding: 18px 14px;

    }


    .step-number {

        width: 20px;
        height: 20px;

        font-size: 6px;

    }


    .step-icon {

        width: 45px;
        height: 45px;

        font-size: 15px;

    }


    .step-content h3 {

        font-size: 14px;

    }


    .step-content p {

        font-size: 11px;

    }


    .flow-arrow {

        width: 55px;

    }


    .process-complete {

        margin-left: 15px;
        margin-right: 15px;

        text-align: center;

        line-height: 1.5;

    }


    .cta-box {

        padding: 30px 20px;

    }


    .cta-box h2 {

        font-size: 23px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .price-kicker {

        font-size: 9px;

        letter-spacing: 1.5px;

    }


    .hm-price-heading h1 {

        font-size: 34px;

    }


    .price-card-top {

        gap: 12px;

    }


    .price-icon {

        width: 52px;
        height: 52px;

        font-size: 19px;

    }


    .popular-ribbon {

        right: -42px;

    }


    .hm-process-flow::before {

        left: 24px;

    }


    .process-step {

        align-items: flex-start;

    }


    .step-icon {

        margin-top: 2px;

    }


    .step-content h3 {

        line-height: 1.35;

    }

}