body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.site-header .header-inner .site-branding .site-logo img {
    width: 230px;
}

/* header section........................... */

header .toplinks {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .toplinks .login {
    color: #090f1b;
    background-color: transparent;
    border-radius: 8px;
    padding: 10px 25px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid #e1e1e3;
}

header .toplinks .login:hover {
    background-color: #ff4b25;
    color: #fff;
    border: 1px solid #ff4b25;
}

header .toplinks .book-call {
    color: #fff;
    background-color: #ff4b25;
    border: 1px solid #ff4b25;
    border-radius: 8px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    font-weight: 500;
    transition: all .3s;
}

header .toplinks .book-call:hover {
    background-color: #fff;
    color: #ff4b25;
}

header .toplinks .book-call:hover svg path {
    fill: #ff4b25;
}

header .site-navigation ul.menu li a {
    color: #071833;
    transition: all .3s;
}

header .site-navigation ul.menu li a:hover,
header .site-navigation ul.menu li.current-menu-item a {
    color: #ff4b25;
}

/* header .toplinks .book-call::after {
    content: "→";
    position: absolute;
    width: 25px;
    height: 25px;
    right: 10px;
    top: 8px;
} */

/* header section........................... */



/* footer section........................... */

footer.site-footer .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: start;

}

.site-footer .footer-inner .site-branding .site-logo img {
    max-width: 250px;
}

.site-footer .footer-inner .site-branding .desc-and-social-footer {
    margin-top: 20px;
}

.site-footer .footer-inner .site-navigation ul.menu li {
    display: block;
    padding: 0;
}

.site-footer .footer-inner .site-navigation ul.menu li ul {
    position: static;
    background: transparent;
}

@media (min-width: 991px) {
    .site-footer .footer-inner .site-branding .desc-and-social-footer {
        width: 250px;
    }
}

@media (max-width: 991px) {
    footer.site-footer .footer-inner {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }
}

@media (max-width: 685px) {
    footer.site-footer .footer-inner {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

footer.site-footer {
    background: #0c1d37;
    color: #fff;
    padding: 50px 0;
}

footer .site-navigation ul.menu {
    width: 100%;
}

footer .site-navigation ul.menu li {
    flex: 1;
}

footer .site-navigation ul.menu li ul {
    display: block;
    top: 100%;
    min-width: 0;
}


footer .site-navigation ul.menu li a {
    color: #fff;
}

footer .site-navigation ul.menu li ul li {
    border: none;
}

footer .site-navigation ul.menu li ul li a {
    font-size: 14px;
    color: #b6c1d7;
    transition: all .3s;
}

footer .site-navigation ul.menu li ul li a:hover {
    color: #ff4b25;
}

footer .site-navigation ul.menu li.menu-item-has-children::after {
    display: none;
}

footer .footer-inner .call-us-action h3 {
    font-size: 1rem;
}

footer .footer-inner .call-us-action p {
    font-size: 14px;
    color: #b6c1d7;
}

footer .footer-inner .call-us-action a.book-btn {
    color: #fff;
    background-color: #ff4b25;
    border-radius: 8px;
    padding: 14px 24px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all .3s;
}

footer .footer-inner .call-us-action a.book-btn:hover {
    background-color: #fff;
    color: #ff4b25;
}

footer .footer-inner .call-us-action a.book-btn svg path {
    fill: #fff;
}

footer .footer-inner .call-us-action a.book-btn:hover svg path {
    fill: #ff4b25;
}

footer .footer-inner .call-us-action .contact-info .contact-item {
    padding: 10px 0 0;
}

footer .footer-inner .call-us-action .contact-info .contact-item a {
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

footer .footer-inner .call-us-action .contact-info .contact-item a:hover {
    color: #ff4b25;
}

footer .footer-inner .call-us-action .contact-info .contact-item svg path {
    fill: #fff;
    transition: all .3s;
}

footer .footer-inner .call-us-action .contact-info .contact-item a:hover svg path {
    fill: #ff4b25;
}

footer .footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

footer .footer-bottom .footer-copyright p {
    margin: 0;
}

@media (min-width: 576px) and (max-width: 1200px) {

    .site-footer .footer-inner,
    .site-header .header-inner {
        max-width: 100% !important;
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 992px) {
    .site-header .header-inner .site-navigation-toggle-holder {
        order: 3;
    }
}

@media (min-width: 992px) and (max-width: 1099px) {
    .site-header .header-inner .toplinks {
        margin-top: 20px;
    }
}

@media (min-width: 685px) and (max-width: 1200px) {
    footer .footer-bottom {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .site-footer:not(.footer-stacked) .footer-inner .site-navigation {
        text-align: left;
    }
}

@media (max-width: 685px) {

    footer.site-footer {
        padding: 30px 20px;
    }
}

@media (max-width: 625px) {
    .site-header .header-inner {
        gap: 20px;
    }
}

/* footer section........................... */





/* first section..................................... */

.connected-arrow::after {
    position: absolute;
    content: "";
    background: #FF4B25;
    border-radius: 50%;
    bottom: -36px;
    z-index: 1;
    left: 47%;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    padding: 27px;
    rotate: 90deg;
}

@media only screen and (max-width:767px) {
    .connected-arrow::after {
        bottom: -32px;
        padding: 23px;
        left: 47%;
    }
}

@media only screen and (max-width:500px) {
    .connected-arrow::after {
        bottom: -27px;
        padding: 15px;
        background-size: 10px 10px;
    }
}

@media only screen and (max-width:380px) {
    .connected-arrow::after {
        bottom: -23px;
        padding: 13px;
    }
}

.homepage-snapshot .elementor-icon {
    padding: 13px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 5px 18px 10px rgba(17, 24, 39, 0.05);
}

/* first section..................................... */





/* approch section...................................... */
.approach-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ff4b2b;
}

.approach-icon::before {
    content: "";
    position: absolute;
    left: calc(100% + 60px);
    top: 50%;
    width: 9px;
    height: 9px;
    background: #ff4b2b;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.approach-icon::after {
    content: "";
    position: absolute;
    left: calc(100% + 0px);
    top: 51%;
    width: 130px;
    border-top: 2px dotted #358fd6;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

@media only screen and (max-width:767px) {

    .approach-icon::before,
    .approach-icon::after {
        display: none;
    }
}

/* approch section...................................... */






/* influence section.................................... */


#influence-section .cards-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 820px;
}

#influence-section .card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

#influence-section .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    flex-shrink: 0
}

#influence-section .ic-green {
    background: #e6f9ed
}

#influence-section .ic-blue {
    background: #e8f1ff
}

#influence-section .ic-orange {
    background: #fff0e8
}

#influence-section .ic-purple {
    background: #f0ecff
}

#influence-section .ic-teal {
    background: #e4f9f5
}

#influence-section .card-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: auto
}

#influence-section .card-metric {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: #22a05a;
    font-weight: 600;
    line-height: 1.4;
    flex-direction: column;
}

#influence-section .card-metric .sub {
    color: #888;
    font-weight: 400
}

#influence-section .arrow-up {
    font-size: 13px;
    color: #22a05a
}

@media only screen and (max-width:1024px) {
    #influence-section h2.elementor-heading-title br {
        display: none;
    }
}

@media only screen and (max-width:850px) {
    #influence-section .card {
        padding: 20px;
    }

    #influence-section .card-metric,
    #influence-section .arrow-up,
    #influence-section .card-label {
        font-size: 11px;
    }

    #influence-section .icon-wrap {
        width: 40px;
        height: 40px;
    }
}

@media(max-width:767px) {
    #influence-section .cards-row {
        flex-wrap: wrap;
    }

    #influence-section .card {
        flex: 1 1 calc(25% - 6px);
        min-width: 100px;
    }
}

@media(max-width:360px) {
    #influence-section .card {
        flex: 1 1 100%
    }
}

/* influence section.................................... */






/* AI driven section...................................... */

#ai-powered .ai-section {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#ai-powered .centre {
    position: relative;
    width: 115px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow:
        0 0 0 14px rgba(255, 255, 255, 0.65),
        0 0 0 28px rgba(255, 255, 255, 0.45),
        0 15px 45px rgba(255, 99, 71, 0.2);
    z-index: 3;
}

#ai-powered .centre::before {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 99, 71, 0.18), rgba(255, 99, 71, 0.04));
    box-shadow: 0 0 28px rgba(255, 99, 71, 0.35);
}

#ai-powered .brain {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 58px;
    color: #ff4f2e;
}

#ai-powered .brain svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#ai-powered .feature {
    position: absolute;
    width: 275px;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    z-index: 2;
}

#ai-powered .feature-left-top {
    left: 25px;
    top: 28px;
}

#ai-powered .feature-left-bottom {
    left: 25px;
    bottom: 28px;
}

#ai-powered .feature-right-top {
    right: 25px;
    top: 28px;
}

#ai-powered .feature-right-bottom {
    right: 25px;
    bottom: 28px;
}

#ai-powered .icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    flex-shrink: 0;
}

#ai-powered .icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#ai-powered .feature h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

#ai-powered .feature p {
    font-size: 11px;
    line-height: 1.4;
    color: #4b5563;
}

#ai-powered .dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

#ai-powered .dot.blue-top {
    left: 342px;
    top: 60px;
    background: #5d6bff;
}

#ai-powered .dot.blue-bottom {
    left: 342px;
    bottom: 80px;
    background: #5879ff;
}

#ai-powered .dot.orange-top {
    right: 342px;
    top: 60px;
    background: #ff5338;
}

#ai-powered .dot.purple-bottom {
    right: 342px;
    bottom: 80px;
    background: #9b4dff;
}

#ai-powered .line {
    position: absolute;
    height: 1px;
    background: #d8e1ff;
    z-index: 1;
}

#ai-powered .line.left-top {
    width: 92px;
    left: 278px;
    top: 61px;
    transform: rotate(12deg);
}

#ai-powered .line.left-bottom {
    width: 92px;
    left: 278px;
    bottom: 80px;
    transform: rotate(-12deg);
}

#ai-powered .line.right-top {
    width: 92px;
    right: 278px;
    top: 61px;
    transform: rotate(-12deg);
}

#ai-powered .line.right-bottom {
    width: 92px;
    right: 278px;
    bottom: 80px;
    transform: rotate(12deg);
}

@media only screen and (max-width:1024px) {
    #ai-powered h2.elementor-heading-title br {
        display: none;
    }
}

@media only screen and (max-width:880px) {
    #ai-powered .feature {
        width: 250px;
    }

    #ai-powered .centre {
        width: 96px;
        height: 120px;
    }

    #ai-powered .centre::before {
        width: 70px;
        height: 70px;
    }

    #ai-powered .brain {
        width: 40px;
        height: 50px;
    }

    #ai-powered .dot.blue-top {
        left: 315px;
        top: 65px;
    }

    #ai-powered .dot.blue-bottom {
        left: 315px;
        bottom: 70px;
    }

    #ai-powered .dot.orange-top {
        right: 315px;
        top: 65px;
    }

    #ai-powered .dot.purple-bottom {
        right: 315px;
        bottom: 70px;
    }

    #ai-powered .line.left-top {
        left: 230px;
        top: 61px;
    }

    #ai-powered .line.left-bottom {
        left: 230px;
        bottom: 65px;
    }

    #ai-powered .line.right-top {
        right: 230px;
        top: 61px;
    }

    #ai-powered .line.right-bottom {
        right: 230px;
        bottom: 65px;
    }
}

@media (max-width: 768px) {
    #ai-powered .ai-section {
        height: auto;
        padding: 40px 16px;
        flex-direction: column;
        gap: 22px;
    }

    #ai-powered .feature {
        position: static;
        width: 100%;
        max-width: 330px;
    }

    #ai-powered .centre {
        order: -1;
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    #ai-powered .dot,
    #ai-powered .line,
    #ai-powered .ai-section::before,
    #ai-powered .ai-section::after {
        display: none;
    }
}

/* AI driven section...................................... */





/* about main section...................................... */

.about-main-section .wrapper {
    width: 100%;
    position: relative;
}

.about-main-section .hero-img {
    width: 100%;
    display: block;
    border-radius: 20px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
}

.about-main-section .stats-card {
    position: relative;
    margin: -44px 20px 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 8px 18px;
    z-index: 2;
}

.about-main-section .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6px 10px;
}

.about-main-section .stat:not(:last-child) {
    border-right: 1px solid #ebebeb;
}

.about-main-section .stat__icon {
    width: 26px;
    height: 26px;
    margin-bottom: 7px;
    color: #666;
}

.about-main-section .stat__value {
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 700;
    color: #D85A30;
    line-height: 1.1;
}

.about-main-section .stat__label {
    font-size: clamp(10px, 2.4vw, 13px);
    color: #888;
    margin-top: 5px;
    line-height: 1.3;
}

.about-main-section .stat--star .stat__icon {
    color: #1A2B5F;
}

@media (max-width: 380px) {
    .about-main-section .stats-card {
        margin: -32px 10px 0;
        padding: 14px 4px 12px;
    }

    .about-main-section .stat {
        padding: 4px 6px;
    }
}

/* about main section...................................... */




/* pricing section...................................... */

.pricing-main-section .elementor-icon-box-wrapper .elementor-icon-box-icon {
    padding: 10px;
    background: #f6f6f6;
    border-radius: 10px;
}

.plan-pricing {
    position: relative !important;
    overflow: hidden !important;
}

.plan-pricing .decor-circles {
    position: absolute;
    top: -120px;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, transparent 0 18px, rgba(240, 80, 31, 0.25) 19px 20px);
    pointer-events: none;
    right: 0;
}

.plan-pricing .decor-dots {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 140px;
    height: 90px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
}

.plan-pricing .header {
    text-align: center;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.plan-pricing .header h2 {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #fff;
}

.plan-pricing .header h2 span {
    color: #f0501f;
}

.plan-pricing .header p {
    color: #fff;
    font-size: 16px;
    margin: 0 0 20px;
}

.plan-pricing .header hr {
    width: 70px;
    border: none;
    border-top: 3px solid #f0501f;
    margin: 0 auto;
}

.plan-pricing .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plan-pricing .card {
    background: #0f1730;
    border: 1px solid #23304f;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-pricing .card:hover {
    border: 1px solid #f0501f;
}

.plan-pricing .card.featured {
    border: 2px solid #f0501f;
    box-shadow: 0 0 40px rgba(240, 80, 31, 0.25);
    background: #fff;
}

.plan-pricing .card.featured .icon-circle {
    border-color: #f0501f;
}

.plan-pricing .card.featured h2,
.plan-pricing .card.featured p,
.plan-pricing .card.featured .features li,
.plan-pricing .card.featured .price .period {
    color: #0f1730;
}

.plan-pricing .badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #f0501f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-pricing .icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-pricing .icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
}

.plan-pricing .card h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #fff;
}

.plan-pricing .card .desc {
    color: #b9c2d8;
    font-size: 14.5px;
    line-height: 1.4;
    margin: 0 0 22px;
    min-height: 44px;
}

.plan-pricing .price {
    margin: 0 0 10px;
}

.plan-pricing .price .amount {
    color: #f0501f;
    font-size: 35px;
    font-weight: 800;
}

.plan-pricing .price .period {
    color: #b9c2d8;
    font-size: 16px;
    margin-left: 4px;
}

.plan-pricing .divider {
    border: none;
    border-top: 1px solid #23304f;
    margin: 0 0 20px;
}

.plan-pricing .features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex-grow: 1;
}

.plan-pricing .features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 14px;
    color: #fff;
}

.plan-pricing .check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f0501f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-pricing .check svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

.plan-pricing .cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #f0501f;
    color: #f0501f;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.plan-pricing .cta:hover {
    background: #fff;
}

.plan-pricing .card.featured .cta {
    background: #f0501f;
    color: #fff;
}

.plan-pricing .card.featured .cta:hover {
    background: #fff;
    color: #ff6a2e;
}

.plan-pricing .card.featured .cta:hover svg path {
    fill: #ff6a2e !important;
}

/* Bottom info bar */
.plan-pricing .info-bar {
    margin: 40px auto 0;
    background: #0f1730;
    border: 1px solid #23304f;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.plan-pricing .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 28px;
    border-right: 1px solid #23304f;
}

.plan-pricing .info-item .icon-circle {
    width: 55px;
    height: 55px;
    margin: 0;
    flex-shrink: 0;
}

.plan-pricing .info-item .icon-circle svg {
    width: 24px;
    height: 24px;
}

.plan-pricing .info-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #fff;
}

.plan-pricing .info-item p {
    margin: 0;
    color: #b9c2d8;
    font-size: 13.5px;
    line-height: 1.4;
}

.plan-pricing .info-cta {
    background: #f0501f;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    min-width: 300px;
}

.plan-pricing .info-cta .phone-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-pricing .info-cta .phone-circle svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
}

.plan-pricing .info-cta p {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
}

@media (max-width: 1100px) {
    .plan-pricing .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-pricing .info-bar {
        grid-template-columns: 1fr;
    }

    .plan-pricing .info-item {
        border-right: none;
        border-bottom: 1px solid #23304f;
    }
}

@media (max-width: 600px) {
    .plan-pricing .cards {
        grid-template-columns: 1fr;
    }

    .plan-pricing .card .desc {
        min-height: auto;
        margin: 0 0 10px;
    }

    .plan-pricing .header h2 {
        font-size: 36px;
    }
}

/* .plan-pricing .pricing-wrapper {
    max-width: 1400px;
    margin: auto;
}

.plan-pricing .pricing-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.plan-pricing .pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s ease;
}

.plan-pricing .pricing-card:hover {
    transform: translateY(-8px);
}

.plan-pricing .card-header {
    padding: 26px 28px;
}

.plan-pricing .card-body {
    flex: 1;
    padding: 28px;
}

.plan-pricing .card-footer {
    margin-top: auto;
    padding: 22px 28px;
}

.plan-pricing .plan-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}

.plan-pricing .plan-subtitle {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.plan-pricing .features {
    list-style: none;
    padding: 0;
}

.plan-pricing .features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 13px;
    color: #2c3345;
    font-size: 14px;
    line-height: 1.6;
}

.plan-pricing .features li:last-child {
    margin-bottom: 0;
}

.plan-pricing .check {
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

.plan-pricing .monthly {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-pricing .price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.plan-pricing .price {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.plan-pricing .vat {
    font-size: 15px;
    font-weight: 600;
}


.plan-pricing .starter {
    background: #fff;
}

.plan-pricing .starter .card-header {
    background: #f6f6f6;
}

.plan-pricing .starter .plan-title {
    color: #ff5b1f;
}

.plan-pricing .starter .check {
    color: #ff5b1f;
}

.plan-pricing .starter .card-footer {
    background: #f6f6f6;
}

.plan-pricing .starter .monthly {
    color: #ff5b1f;
}

.plan-pricing .starter .price {
    color: #0d2245;
}

.plan-pricing .starter .vat {
    color: #5f6775;
}


.plan-pricing .growth {
    background: #fff;
}

.plan-pricing .growth .card-header {
    background: linear-gradient(135deg,
            #ff5b1f 0%,
            #ff3d14 100%);
    color: #fff;
}

.plan-pricing .growth .plan-title,
.plan-pricing .growth .plan-subtitle {
    color: #fff;
}

.plan-pricing .growth .check {
    color: #ff5b1f;
}

.plan-pricing .growth .card-footer {
    background: linear-gradient(135deg,
            #ff5b1f 0%,
            #ff3d14 100%);
    color: #fff;
}

.plan-pricing .growth .monthly,
.plan-pricing .growth .price,
.plan-pricing .growth .vat {
    color: #fff;
}


.plan-pricing .scale {
    background: #fff;
}

.plan-pricing .scale .card-header {
    background: linear-gradient(135deg,
            #041a46 0%,
            #001b52 100%);
}

.plan-pricing .scale .plan-title,
.plan-pricing .scale .plan-subtitle {
    color: #fff;
}

.plan-pricing .scale .check {
    color: #071f55;
}

.plan-pricing .scale .card-footer {
    background: linear-gradient(135deg,
            #041a46 0%,
            #001b52 100%);
}

.plan-pricing .scale .monthly,
.plan-pricing .scale .price,
.plan-pricing .scale .vat {
    color: #fff;
}


@media(max-width:1100px) {

    .plan-pricing .pricing-grid {
        flex-wrap: wrap;
    }

    .plan-pricing .pricing-card {
        flex: 0 0 calc(50% - 12px);
    }

}

@media(max-width:768px) {

    .plan-pricing .pricing-card {
        flex: 0 0 100%;
    }

    .plan-pricing .plan-title {
        font-size: 40px;
    }

    .plan-pricing .price {
        font-size: 48px;
    }

    .plan-pricing .features li {
        font-size: 15px;
    }

} */

/* pricing section...................................... */



/* blog section............................................... */

.eael-post-grid-container .eael-grid-post-holder {
    border: none;
    border-radius: 15px;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-media {
    overflow: visible;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-media .eael-entry-thumbnail>img {
    min-width: 256px;
    border-radius: 15px 0 0 15px;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-wrapper .eael-entry-header {
    color: #0B1633;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-wrapper .eael-entry-header .eael-entry-title {
    font-size: 15px;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-wrapper .eael-entry-content {
    color: #05193A;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-wrapper .eael-entry-footer {
    align-items: center;
    margin-top: 10px;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-wrapper .eael-entry-footer .eael-entry-meta {
    font-size: 13px;
    line-height: 20px;
}

.eael-post-grid-container .eael-grid-post-holder .eael-grid-post-holder-inner .eael-entry-wrapper .eael-entry-footer .eael-entry-meta .eael-posted-by a {
    color: #05193A;
}

.popular-topics-sidebar {
    background: #F8F9FB !important;
    padding: 20px !important;
    border-radius: 20px !important;
}

.popular-topics-sidebar ul {
    margin: 0;
    padding: 0 20px;
    list-style: decimal;
}

.popular-topics-sidebar ul li {
    padding-left: 5px;
    margin: 10px 0;
}

.popular-topics-sidebar .popular-topic-sidebar-links a {
    position: relative;
}

.popular-topics-sidebar .popular-topic-sidebar-links a::after {
    content: "→";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 3px;
    right: -33px;
}

@media only screen and (max-width: 1024px) {
    .growth-marketing-playbook {
        background-image: none !important;
    }
}

a.download-research-report-button {
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    border: 1px solid #FF4B25;
    background: #FF4B25;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    transition: all .3s;
}

a.download-research-report-button span {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.3;
    margin-left: 6px;
}

a.download-research-report-button span small {
    margin-top: 6px;
    font-size: 9px;
}

a.download-research-report-button:hover {
    background: #fff;
    color: #FF4B25;
}

a.download-research-report-button:hover svg path {
    stroke: #FF4B25;
}

/* blog section............................................... */





/* case study section............................................... */


.case-study-main .card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.case-study-main .card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.case-study-main .card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-main .card__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.case-study-main .stat {
    text-align: center;
    padding: 16px 6px;
    border-right: 1px solid #e8e8e8;
}

.case-study-main .stat:last-child {
    border-right: none;
}

.case-study-main .stat__value {
    color: #e8521e;
    font-weight: 700;
    font-size: clamp(0.95rem, 4vw, 1.3rem);
    margin-bottom: 4px;
    white-space: nowrap;
}

.case-study-main .stat__label {
    color: #6b6b6b;
    font-size: clamp(0.6rem, 2.2vw, 0.75rem);
    line-height: 1.3;
}

.case-study-main .case-studies-back a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FF5A1F;
}

/* Small-screen tweaks */
@media (max-width: 360px) {
    .case-study-main .stat {
        padding: 12px 4px;
    }
}

.imapct-numbers span.elementor-icon {
    padding: 15px !important;
    border: 2px solid !important;
    border-radius: 50% !important;
}

/* case study section............................................... */


/* contact us section............................................... */

.contact-form form .cf7-row {
    display: flex;
    gap: 20px;
}

.contact-form form .cf7-row .cf7-col {
    width: 50%;
}

.contact-form form p {
    margin-bottom: 10px;
}

.contact-form form p .wpcf7-spinner {
    display: none;
}

.contact-form form p input.wpcf7-submit {
    color: #fff;
    font-weight: 600;
    background-color: #ff4b25;
    border: 1px solid #ff4b25;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    margin-top: 30px;
}

.contact-form form p input.wpcf7-submit:hover {
    background-color: #fff;
    color: #ff4b25;
}

.contact-form form p label {
    width: 100%;
    color: #000009;
}

.contact-form form p label br {
    margin-bottom: 5px;
}

.contact-form form p label span input {
    border: 1px solid #e8e8e8;
    margin: 10px 0;
    padding: 15px 20px;
}

.contact-form form p label span select,
.contact-form form p label span textarea {
    border: 1px solid #e8e8e8;
    margin: 10px 0;
    padding: 15px 20px;
}

.contact-form form p label span textarea {
    height: 150px;
}

.contact-form form p label span .wpcf7-not-valid-tip {
    padding-bottom: 5px;
    font-size: 13px;
}

.contact-form form p label span input:focus-visible {
    outline: 2px solid #ff4b25;
    border: 1px solid #ff4b25;
}

.contact-form form p label span input[type="number"]::-webkit-outer-spin-button,
.contact-form form p label span input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-form form p label span input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.contact-us-main-section .elementor-icon {
    padding: 13px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 5px 18px 10px rgba(17, 24, 39, 0.05);
}

.contact-us-main-section .privacy-promise .elementor-icon {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

@media only screen and (max-width: 500px) {
    .contact-form form .cf7-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form form .cf7-row .cf7-col {
        width: 100%;
    }
}

/* contact us section............................................... */


/* how it works section.......................................... */
.five-step-process .steps-card {
    position: relative;
}

.five-step-process .steps-card .arrow-html {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eceef1;
    box-shadow: 0 2px 5px rgba(16, 24, 40, 0.08);
    z-index: 5;
}

.five-step-process .steps-card .arrow-html svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke: #e8543e;
}

@media only screen and (max-width: 767px) {
    .five-step-process .steps-card .arrow-html {
        top: 100%;
        right: 50%;
    }

    .five-step-process .steps-card .arrow-html svg {
        rotate: 90deg;
    }
}

/* how it works section.......................................... */


.performance-snapshot span.elementor-icon,
.our-approach span.elementor-icon {
    padding: 13px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 5px 18px 10px rgba(17, 24, 39, 0.05);
}

.achieve-next-result .stratagy-call .elementor-icon {
    padding: 10px;
    background: #fff;
    border-radius: 50%;
}

.achieve-next-result .case-study-pack .elementor-icon {
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #D3DDEC !important;
}


/* blog post custom css................................... */
.post-template-default.single-post .page-content {
    padding: 0 0 50px;
}

.post-template-default.single-post h1 {
    color: #0D182E;
    text-align: center;
}

.post-template-default.single-post .post-image {
    max-width: 1000px;
    margin: 0 auto;
}

.post-template-default.single-post h2.wp-block-heading {
    margin-top: 60px;
    font-size: 28px;
    color: #0D182E;
}

.post-template-default.single-post h3.wp-block-heading {
    font-size: 22px;
    margin-bottom: 0.4em;
    margin-top: 1em;
    color: #0D182E;
}

.post-template-default.single-post hr.wp-block-separator {
    margin-top: 30px;
}

.post-template-default.single-post p.wp-block-paragraph {
    color: #0D182E;
}

.post-template-default.single-post ul.wp-block-list {
    margin-bottom: 20px;
    padding-left: 15px;
}

.post-template-default.single-post ul.wp-block-list li {
    list-style: none;
    margin: 10px 0;
    line-height: normal;
}

.post-template-default.single-post ul.wp-block-list li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FF3B25' d='M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z'/%3E%3C/svg%3E");
}

@media only screen and (max-width:992px) {
    .post-template-default.single-post h1 {
        font-size: 30px;
    }

    .post-template-default.single-post h2.wp-block-heading {
        font-size: 24px;
        margin-top: 40px;
    }

    .post-template-default.single-post h3.wp-block-heading {
        font-size: 18px;
    }

    .post-template-default.single-post p.wp-block-paragraph,
    .post-template-default.single-post ul.wp-block-list li {
        font-size: 13px;
    }

    .post-template-default.single-post ul.wp-block-list li::before {
        width: 15px;
        height: 15px;
    }
}

@media only screen and (max-width:575px) {
    .post-template-default.single-post h1 {
        font-size: 25px;
    }

    .post-template-default.single-post h2.wp-block-heading {
        font-size: 20px;
        margin-top: 30px;
    }

    .post-template-default.single-post h3.wp-block-heading {
        font-size: 16px;
    }

    .post-template-default.single-post p.wp-block-paragraph,
    .post-template-default.single-post ul.wp-block-list li {
        font-size: 12px;
    }
}

.archive.category .page-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.archive.category .page-content .post {
    padding: 20px;
    border: 1px solid #ECEFF3;
    border-radius: 10px;
    box-shadow: 0px 5px 18px 0px rgba(17, 24, 39, 0.06);
}

.archive.category .page-content .post .entry-title {
    font-size: 20px;
}

.archive.category .page-content .post p {
    font-size: 15px;
}

/* blog post custom css................................... */






.marketing-research-main .book-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}

.marketing-research-main .ground-shadow {
    position: absolute;
    bottom: 2%;
    left: 50%;
    width: 78%;
    height: 10%;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 75%);
    filter: blur(6px);
    z-index: 0;
}

.marketing-research-main .book {
    position: relative;
    z-index: 1;
    width: min(100%, 340px);
    aspect-ratio: 3 / 4;
    transform: rotateY(-15deg) rotateX(3deg);
    transform-style: preserve-3d;
    filter: drop-shadow(14px 26px 30px rgba(0, 0, 0, 0.5));
}

/* thick page-block, folded out along the right seam of the cover */
.marketing-research-main .book-pages {
    position: absolute;
    top: 1.2%;
    right: -6.5%;
    width: 11%;
    height: 97.6%;
    background:
        repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0 2px, rgba(0, 0, 0, 0) 2px 4px),
        linear-gradient(90deg, #d8d8d8 0%, #fbfbfb 35%, #ffffff 55%, #cfcfcf 100%);
    transform: translateZ(-1px) rotateY(90deg) translateX(50%);
    transform-origin: right center;
    border-radius: 0 3px 3px 0;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.18);
}

.marketing-research-main .cover {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 3px 7px 7px 3px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 6%),
        radial-gradient(120% 100% at 90% 100%, rgba(255, 90, 31, 0.10), transparent 55%),
        linear-gradient(155deg, #16203a 0%, #131a2b 45%, #0f1526 100%);
    padding: 9% 10% 10%;
    display: flex;
    flex-direction: column;
    box-shadow:
        inset -2px 0 5px rgba(255, 255, 255, 0.05),
        inset 2px 0 6px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.marketing-research-main .cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 90, 31, 0.05) 18px 19px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.marketing-research-main .brand {
    font-weight: 800;
    font-size: clamp(1rem, 3vw, 1.25rem);
    letter-spacing: -0.01em;
    color: #fff;
}

.marketing-research-main .brand .dot {
    color: #ff5a1f;
}

.marketing-research-main .tagline {
    color: #ff5a1f;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
}

.marketing-research-main .cover-rule {
    width: 34px;
    height: 2px;
    background: #ff5a1f;
    border: none;
    margin: clamp(14px, 4vw, 24px) 0 clamp(10px, 3vw, 16px);
}

.marketing-research-main .cover-title {
    font-weight: 800;
    line-height: 1.05;
    font-size: clamp(1.3rem, 4.6vw, 1.9rem);
    color: #f5f6f8;
}

.marketing-research-main .cover-title .hot {
    color: #ff5a1f;
}

.marketing-research-main .cover-sub {
    margin-top: auto;
    padding-top: clamp(14px, 4vw, 22px);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: #aeb4c2;
    font-weight: 600;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
    .marketing-research-main .book {
        animation: floaty 6s ease-in-out infinite;
    }
}

@keyframes floaty {

    0%,
    100% {
        transform: rotateY(-22deg) rotateX(3deg) translateY(0);
    }

    50% {
        transform: rotateY(-22deg) rotateX(3deg) translateY(-10px);
    }
}

@media (max-width: 860px) {
    @keyframes floaty {

        0%,
        100% {
            transform: rotateY(-18deg) rotateX(3deg) translateY(0);
        }

        50% {
            transform: rotateY(-18deg) rotateX(3deg) translateY(-10px);
        }
    }
}

.free-report-form .contact-form form p label {
    color: #fff;
    font-size: 13px;
}

.free-report-form .contact-form form p label span input {
    font-size: .9rem;
    padding: 10px 15px;
}

.free-report-form .contact-form form p label br {
    margin: 0;
}

.free-report-form .contact-form form p .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
}

.free-report-form .contact-form form p .wpcf7-checkbox .wpcf7-list-item label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 15px;
}

.free-report-form .contact-form form p .wpcf7-checkbox .wpcf7-list-item label input {
    margin: 4px 0;
}

.free-report-form .contact-form form p .wpcf7-checkbox .wpcf7-list-item label span {
    line-height: normal;
}




/* blogpost CTA page....................................... */
.blogpost-cta .cta-choice-section {
    box-sizing: border-box;
    color: #fff;
}

.blogpost-cta .cta-choice-wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1.06fr);
    gap: 10px;
    align-items: stretch;
}

/* CARD */
.blogpost-cta .cta-choice-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #28313a;
    border-radius: 16px;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 75, 0, .04), transparent 28%),
        linear-gradient(135deg, #070b0f, #090e13);
    padding: 30px 34px;
    box-sizing: border-box;
}

.blogpost-cta .cta-choice-left-inner {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
}

.blogpost-cta .cta-icon-circle {
    width: 126px;
    height: 126px;
    border: 1.5px solid #FF3B25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(255, 75, 0, .15);
    margin-top: 8px;
}

.blogpost-cta .cta-icon-circle svg {
    width: 63px;
    height: 63px;
    stroke: #FF3B25;
}

.blogpost-cta .cta-eyebrow {
    color: #FF3B25;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 14px;
}

.blogpost-cta .cta-title {
    margin: 0;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -1px;
}

.blogpost-cta .cta-title .orange {
    color: #FF3B25;
}

.blogpost-cta .cta-small-line {
    width: 37px;
    height: 2px;
    background: #FF3B25;
    margin: 19px 0 17px;
}

.blogpost-cta .cta-description {
    margin: 0;
    max-width: 420px;
    color: #aeb5bc;
    font-size: 15px;
    line-height: 1.65;
}

.blogpost-cta .cta-button {
    width: 100%;
    min-height: 64px;
    margin-top: 28px;
    border-radius: 11px;
    padding: 15px 22px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1px;
    transition: .25s ease;
}

.blogpost-cta .cta-button-primary {
    color: #fff;
    background: #FF3B25;
}

.blogpost-cta .cta-button-outline {
    color: #fff;
    border: 1px solid #FF3B25;
    background: rgba(0, 0, 0, .12);
}

.blogpost-cta .cta-btn-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blogpost-cta .cta-btn-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
}

.blogpost-cta .cta-arrow {
    font-size: 27px;
    line-height: 1;
    font-weight: 300;
}

/* OR DIVIDER */
.blogpost-cta .cta-or {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogpost-cta .cta-or::before {
    content: "";
    position: absolute;
    inset: 14px 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background:
        repeating-linear-gradient(to bottom,
            rgba(255, 75, 0, .34) 0 2px,
            transparent 2px 7px);
}

.blogpost-cta .cta-or-circle {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #60666c;
    background: #090d11;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 0 0 9px rgba(5, 9, 13, .85);
}

/* RIGHT CARD */
.blogpost-cta .cta-report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 195px;
    gap: 18px;
    align-items: center;
    min-height: 100%;
}

.blogpost-cta .cta-report-book {
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .42));
}



/* TABLET */
@media (max-width: 1024px) {
    .blogpost-cta .cta-choice-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blogpost-cta .cta-or {
        min-height: 55px;
    }

    .blogpost-cta .cta-or::before {
        inset: auto 0;
        top: 50%;
        width: auto;
        height: 1px;
        left: 0;
        transform: none;
        background:
            repeating-linear-gradient(to right,
                rgba(255, 75, 0, .35) 0 2px,
                transparent 2px 7px);
    }

    .blogpost-cta .cta-or-circle {
        width: 52px;
        height: 52px;
        box-shadow: 0 0 0 10px #05090d;
    }

    .blogpost-cta .cta-button {
        max-width: 400px;
    }

    .blogpost-cta .cta-report-layout {
        grid-template-columns: minmax(0, 1fr) 30%;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .blogpost-cta .cta-choice-section {
        padding: 6px;
    }

    .blogpost-cta .cta-choice-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .blogpost-cta .cta-choice-left-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blogpost-cta .cta-icon-circle {
        width: 92px;
        height: 92px;
        margin: 0;
    }

    .blogpost-cta .cta-icon-circle svg {
        width: 49px;
        height: 49px;
    }

    .blogpost-cta .cta-title {
        font-size: 28px;
    }

    .blogpost-cta .cta-description {
        font-size: 14px;
    }

    .blogpost-cta .cta-button {
        min-height: 58px;
        padding: 14px 16px;
        font-size: 13px;
    }

    .blogpost-cta .cta-report-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

}

/* EXTRA SMALL */
@media (max-width: 420px) {
    .blogpost-cta .cta-title {
        font-size: 25px;
    }

    .blogpost-cta .cta-button {
        align-items: center;
    }

    .blogpost-cta .cta-btn-left {
        gap: 10px;
    }

    .blogpost-cta .cta-btn-icon {
        width: 22px;
        height: 22px;
    }
}

/* blogpost CTA page....................................... */