/* Color palette and global */
:root {
    --blue: #3e84c9;
    --dark-blue: #2f6fb7;
    --muted: #f6f8fb;
    --card: #ffffff;
    --accent: #eaf2fb;
    --balck: #000;
    --brand-blue: #3e84c9;
    --brand-blue-dark: #2f6fb7;
    --card-bg: #ffffff;
    --muted: rgba(0, 0, 0, 0.55);

    --accent-pink: #f6e6e8;
    --icon-pink: #f4dfe2;
    --muted-gray: #6b7280;
    --title-color: #0b1722;

    --card-bgg: #f4f5f6;
    --page-bg: #fffefb;
    --maroon: #850a14;
}

* {
    box-sizing: border-box
}

.font-500 {
    font-weight: 500;
}

.font-700 {
    font-weight: 700;
}

.font-900 {
    font-weight: 900;
}

.text-black {
    color: #000;
}

.text-red {
    color: #af305b;
}

.text-maroon {
    color: var(--maroon);
}
.bg-white{
    background: #fff;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #12202b;
    background: #fff
}

a {
    color: var(--dark-blue)
}

/* NAV */
.navbar {
    background: #fff;
}

.navbar-brand strong {
    letter-spacing: 0.4px
}

/* HERO section styles to match screenshot */
.hero {
    background: var(--blue);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero .headline {
    font-weight: 700;
    font-size: 3.3rem;
    line-height: 1.05;
}

.hero .sub {
    opacity: 0.95;
    margin-top: 8px;
    font-size: 1.3rem;
    font-weight: 500;
}

/* hero search card like screenshot */
.scan-card {
    background: var(--card);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(11, 35, 60, 0.08);
    max-width: 90%;
}

.scan-input {
    border: none;
    outline: none;
    box-shadow: none
}

.scan-input:focus {
    box-shadow: none
}

.hero-banner-right {
    max-width: 400px;
    margin-left: auto;
}

/* dotted decorative background on right */
.hero-deco {
    /* position: absolute;
    right: 6%;
    top: 20%;
    width: 420px;
    height: 420px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center */
    position: absolute;
    left: -128px;
    top: -71px;
    width: 250px;
    height: 250px;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); */
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-deco .phone {
    width: 220px;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(11, 35, 60, 0.12)
}

.hero-deco .dot-grid {
    position: absolute;
    inset: 14px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 3px, transparent 3px);
    background-size: 14px 14px;
    border-radius: 0px
}

/* Features cards like image */
.features .card {
    border-radius: 12px;
    overflow: hidden
}

.features .card.blue {
    background: var(--blue);
    color: #fff
}

.features .card .card-body {
    padding: 22px
}

.features .small-muted {
    color: #6b7280
}

/* info strip under features */
.info-strip {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(11, 35, 60, 0.05)
}

/* about blue band with stats */
.about-band {
    background: var(--blue);
    color: #fff;
    padding: 50px 0
}

.stat {
    background: #fff;
    color: var(--dark-blue);
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 35, 60, 0.06)
}

/* services icons and text */
.service {
    min-height: 140px
}

.service i {
    font-size: 28px;
    color: var(--dark-blue)
}

/* pricing hero */
.pricing-hero {
    background: var(--blue);
    color: #fff;
    padding: 70px 0;
    position: relative
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    color: #12202b;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(11, 35, 60, 0.08)
}

/* contact */
.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(11, 35, 60, 0.04)
}

footer {
    
    padding: 28px 0;
    color: #6b7280
}

/* small helpers */
.muted-sm {
    font-size: 13px;
    color: #6b7280
}

.heroBannerImg {
    max-width: 100%;
    position: relative;
    z-index: 9;
}

img.logo-thumb {
    width: 35px;
    margin-right: 10px;
}

.btnGet {
    width: 378px;
    background-color: #376a9d;
    color: #fff;
    border: none;
    max-width: 100%;
    font-weight: 500;
    font-size: 1rem;
}

.btnGet:hover {
    background-color: #2f5c85;
    color: #fff;
}

.btnLnMr i {
    position: relative;
    top: 2px;
    margin-left: 5px;
}

.navbar-nav .nav-item a.nav-link {
    font-weight: 500;
    color: #000;
    font-size: 1.1rem;
}

.features-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* dotted background decoration */
.dotted-bg {
    position: absolute;
    top: 160px;
    left: 40px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.4;
    z-index: 0;
}

.outlined-bg {
    position: absolute;
    bottom: 50px;
    right: 60px;
    width: 200px;
    height: 200px;
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 8px);
    border-radius: 10px;
    opacity: 0.3;
    z-index: 0;
}

.features-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

.features-section p.lead {
    font-size: 1.3rem;
    color: #000;
    max-width: 700px;
    margin: 10px auto 50px;
    font-weight: 400;
}

.feature-card {
    background: #f7eaea;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* overflow: hidden; */
    position: relative;
    z-index: 1;
    height: 100%;
}

.feature-card.blue {
    background: #f2f4f8;
}

.feature-card .header {
    background: #3e84c9;
    color: #fff;
    padding: 25px;
    position: relative;
    z-index: 9;
    border-radius: 10px 10px 0 0;
}

img.icon-feature {
    width: 55px;
}

.feature-card .header h5 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.5rem;
}


.feature-card .header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.feature-card .body {
    background: #f7eaea;
    padding: 25px 25px 25px 55px;
    text-align: left;
    position: relative;
    z-index: 9;
    border-radius: 0px 0px 10px 10px;
}

.feature-card.blue .body {
    background: #f2f4f8;
}

.feature-card .body h6 {
    font-weight: 600;
}

.feature-card .body h6 i {
    text-indent: -30px;
    margin: 0;
    font-size: 1.2rem;
    position: relative;
    top: 1px;
}

.feature-card .body p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 15px;
}

.coverage-box {
    background: #ebebeb;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    padding: 28px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.coverage-box h6 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.coverage-box p {
    font-size: 1.02rem;
    color: #000;
    font-weight: 400;
}

.coverage-box .btn-primary {
    background-color: #3e84c9;
    border: none;
}

.sceAmallTitle {
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--blue);
}

.rowFeatures {
    margin-bottom: 100px;
}

.feature-card .hero-deco {
    left: -100px;
    top: -70px;
}

.feature-card .hero-deco .dot-grid {
    background-image: radial-gradient(rgba(0, 0, 0, 0.2) 3px, transparent 3px);
}

.outline-bg {
    position: absolute;
    bottom: -90px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0px, rgba(0, 0, 0, 0.04) 4px, transparent 4px, transparent 10px);
    border-radius: 10px;
    z-index: 0;
}

/* Section background */
.about-band {
    background: var(--brand-blue);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

/* Left content */
.about-band .eyebrow {
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.about-band h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800;
    margin-top: .6rem;
    margin-bottom: 1.25rem;
    line-height: 1.05;
}

.about-band p.lead {
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
    opacity: .95;
}

/* Stats wrapper (right) */
.stats-wrap {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* diagonal stripe pattern behind cards */
.stats-wrap .striped-bg {
    position: absolute;
    /* inset: 0px 6%; */
    z-index: 0;
    border-radius: 8px;
    background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0px, rgba(0, 0, 0, 0.25) 10px, transparent 10px, transparent 26px);
    opacity: .18;
    transform: translateX(0);
    pointer-events: none;
    width: 80%;
    height: 120%;
}

/* grid of cards */
.stat-grid {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(3, 18, 30, 0.12);
    padding: 22px;
    min-height: 110px;
}

.stat-card .icon {
    width: 50px;
    height: auto;
    border-radius: 50%;
    background: #f7eaea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .6rem;
}

.stat-value {
    font-size: clamp(1.4rem, 3.4vw, 2.2rem);
    font-weight: 800;
    color: #0b1722;
}

.stat-label {
    color: var(--muted);
    font-size: .92rem;
    margin-top: .35rem;
}

/* layout spacing between cards */
.stat-grid .row>[class*="col-"] {
    margin-bottom: 20px;
}

/* Section container */
.services {
    padding: 72px 0;
    background: #fffefc;
    color: var(--title-color);
    text-align: center;
}

.services .eyebrow {
    color: #2b78c8;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.services h2 {
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.6rem);
    margin: 0.55rem 0 0.6rem;
    line-height: 1.02;
}

.services .lead {
    max-width: 760px;
    margin: 0 auto 40px;
    color: var(--muted-gray);
    font-size: 1rem;
}

/* Service item */
.service-item {
    padding: 20px 16px;
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--icon-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(3, 18, 30, 0.06);
    margin-bottom: 14px;
}

.service-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-desc {
    color: var(--muted-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* layout for the 5-card pattern: top row 3, bottom row 2 centered */
.services-grid {
    margin-top: 18px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 64px 0 0px;
}

.eyebrow {
    color: var(--dark-blue);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .78rem;
}

.contact-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    margin-top: .5rem;
}

.contact-desc {
    color: var(--muted-gray);
    max-width: 680px;
    margin-top: 1rem;
}

.email-btn {
    margin-top: 18px;
    padding: .56rem .9rem;
    border: 1px solid rgba(47, 111, 183, 0.25);
    color: var(--dark-blue);
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
}

/* right contact card */
.contact-card {
    background: var(--card-bgg);
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(3, 18, 30, 0.05);
    max-width: 420px;
}

.contact-card .email {
    font-weight: 700;
    color: #0b1722;
}

.contact-card .hours {
    color: var(--muted-gray);
    margin-top: 10px;
    font-size: .95rem;
}

/* centered shield divider */
.footer-divider {
    margin: 95px 0 57px;
    position: relative;
}

.footer-divider::before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(3, 18, 30, 0.06);
    width: 100%;
}

.divider-shield {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
    border-radius: 50%;
    padding: 10px;
    width: 90px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.divider-shield svg {
    width: 44px;
    height: 44px;
}

/* footer links + legal text */
footer {
    padding: 32px 0 56px;
    text-align: center;
    color: #fff;
}

.footer-links a {
    color: #374151;
    font-weight: 700;
    margin: 0 18px;
    font-size: .95rem;
    text-decoration: none;
}

.legal-text {
    max-width: 900px;
    margin: 18px auto 20px;
    font-size: .92rem;
    line-height: 1.6;
    color: #46505a;
}

/* payment icons row */
.payments {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    align-items: center;
}

.payments img {
    max-width: 370px;
}

/* decorative shield / dotted outline background (using SVG) */
.prtecn-decor {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .12;
}

.prtecn-decor svg {
    width: 70%;
    height: 100%;
    display: block;
    margin-left: auto;
}

.prtecn {
    /* min-height: 520px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 7rem 1rem 9rem;
    background: #4687cb url(../images/blue-sild.png) no-repeat;
    position: relative;
    background-size: 510px;
    background-position: 80% 60px;
}

.prtecn h1 {
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.05;
    margin: 0 0 6rem;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* card */
.prtecn-pricing-card {
    width: min(850px, 100%);
    background: var(--card-bg);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 6px 20px rgba(10, 20, 30, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    /* gap: 1.5rem; */
    align-items: stretch;
    position: relative;
    overflow: visible;
}

.pricing-left {
    flex: 0 0 50%;
}

.pricing-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0
}

.features li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: .75rem;
    font-weight: 600;
    color: #222;
    font-size: 0.95rem
}

.features li .icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px
}

.small-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem
}

/* badge */
.badge-peak {
    position: absolute;
    left: 50%;
    top: -52px;
    transform: translateX(-50%);
    background: transparent;
    padding: 0;
    border-radius: 50%;
    width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    z-index: 5;
}

.badge-peak .inner {
    font-weight: 700;
    font-size: 14px;
    text-align: center
}

.badge-peak .inner small {
    display: block;
    font-size: 10px;
    font-weight: 600
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0
}

.price-suffix {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-left: .4rem
}

.cta-btn {
    margin-top: 14px;
    align-self: stretch
}

/* bottom-right logos */
.payment-logos {
    position: absolute;
    right: 0%;
    bottom: -55px;
    display: flex;
    gap: 0px;
    align-items: center
}

.payment-logos img {
    height: 22px
}

.prtecnWpr {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.svgCard svg {
    width: 55px;
    height: auto;
}

.btnLogin {
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding-left: 30px;
    padding-right: 30px;
}

.btnSignUp {
    font-weight: 600;
    font-size: 1.1rem;
    padding-left: 30px;
    padding-right: 31px;
}

.page-thankyou, .page-thankyou footer {
    background-color: #f2f2f2;
}
.page-thankyou .contact-section {
    padding: 0;
}
.page-thankyou .contact-section {
    padding: 0;
}

.tnkuBox {
    background-color: #fff;
    margin: 8rem 0;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    border: 1px solid #e3e3e3;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 18px;
}

.tnkutick {
    position: absolute;
    top: -82px;
    left: 50%;
    transform: translateX(-50%);
}

.tnkuBox h1 {
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 700;
    text-align: center;
}

.tnkuBox p {
    font-size: 1rem;
    text-align: center;
}
#emailForm input[type=email] {
    height: inherit;
}
.navbar-toggler {
    width: auto;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: transparent;
}

/* responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f6f6f6;
    width: 100%;
    z-index: 9;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    border-top: 1px solid #d9d9d9;
    padding-bottom: 20px;
    padding-top: 10px;
    border-radius: 0 0 15px 15px;
            border-bottom: 5px solid #376a9d;
    }
    .navbar-collapse .navbar-nav {
    gap:  0px !important;
    }
    .hero-deco {
        position: absolute;
        left: -82px;
        top: -15%;
        width: 222px;
        height: 222px;
    }

    .btnGet {
        max-width: 65%;
    }

    .hero .headline {
        font-size: 3rem;
        line-height: 1.3;
    }

    .hero {
        padding: 48px 0
    }

    .stats-wrap .striped-bg {
        inset: 10px 6%;
        opacity: .12;
    }

    .about-band {
        padding: 48px 0;
    }

    .row.services-grid>.col-lg-4:nth-last-child(-n+2) {
        margin-top: 18px;
    }

    /* place the last two centrally by applying offset on larger screens */
    .services-bottom {
        display: flex;
        justify-content: center;
        gap: 24px;
    }

    .contact-section {
        padding: 48px 0 28px;
    }

    .contact-card {
        margin-top: 18px;
        max-width: 100%;
    }

    .divider-shield {
        width: 80px;
        height: auto;
        padding: 8px;
    }

    .hero-banner-right {
        margin-top: 40px;
        max-width: 320px;
    }

    .scan-card {
        max-width: 100%;
    }

    .navbar .container,
    .hero .container {
        max-width: 100%;
    }
    /* .navbar-collapse > div{
        display: none !important;
    } */
    .navbar-collapse > div {
    flex-direction: column;
}

.navbar-collapse > div .btnLogin {
    padding: 0.5rem 0;
    font-size: 1.2rem;
    background-color: #cde6ff;
}
}

@media (max-width: 900px) {
    .prtecn-pricing-card {
        /* flex-direction: column; */
        padding: 3.25rem
    }

    .pricing-left {
        flex: 0 0 50%;
    }

    /* .pricing-right {
        border-left: none;
        padding-left: 0;
        padding-top: 1rem
    } */

    /* .badge-peak {
        left: 16%;
        transform: none;
        top: -32px
    } */

    .payment-logos {
        right: 0%;
    }

    .prtecn h1 {
        font-size: 1.6rem
    }

    .prtecn {
        background-size: 400px;
        background-position: 128% 42%;
        padding: 4rem 1rem 4rem;
    }
    
}

@media (max-width: 767px) {
    .hero {
        padding: 48px 0 0;
    }

    .btnLnMr {
        display: none;
    }

    .btnGet {
        width: 100%;
        max-width: 100%;
    }

    .feature-card {
        margin-bottom: 25px;
    }

    .dotted-bg,
    .outlined-bg {
        display: none;
    }

    .about-band .container {
        max-width: 100%;
    }

    .about-band h2 {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.3;
    }

    .about-band p.lead {
        text-align: center;
    }

    .about-band-left {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-wrap {
        padding-top: 1rem;
        padding-bottom: 0;
        max-width: 516px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-wrap .striped-bg {
        display: none;
    }

    .about-band-right:before {
        content: '';
        background-color: #ecd8da;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .about-band-right {
        padding-bottom: 48px;
        padding-top: 30px;
    }

    /* hide pattern on very small screens for readability */
    .stat-grid .row>[class*="col-"] {
        margin-bottom: 14px;
    }

    .service-desc {
        max-width: 100%;
        padding: 0 12px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .heroBannerImg {
        width: 100%;
        /* height: 343px;
        object-fit: cover;
        object-position: top; */
    }

    .hero-banner-right {
        margin-top: 80px;
        max-width: 360px;
        margin-right: 20%;
    }

    .m-black-bg::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: #000;
        position: absolute;
        left: 0;
    }

    .m-black-bg {
        margin-top: 30px;
    }

    .hero .headline,
    .hero .sub {
        text-align: center;
    }

    .feature-card .hero-deco,
    .outline-bg {
        display: none;
    }

    .rowFeatures {
        margin-bottom: 0px;
    }

    .coverage-box {
        margin-top: 30px;
    }


    .prtecn-pricing-card {
        flex-direction: column;
        padding: 1.25rem
    }

    .pricing-left {
        flex: unset
    }

    .pricing-right {
        border-left: none;
        padding-left: 0;
        padding-top: 1rem
    }

    .badge-peak {
        left: inherit;
        transform: none;
        top: 65%;
        transform: translateY(-50%);
        right: 0;
    }

    .prtecn h1 {
        margin: 0 0 3rem;
    }

    .stat-value {
        font-size: clamp(1.4rem, 10.4vw, 2.2rem);
    }

    .stat-label {
        font-size: 1rem;
        margin-top: 0;
    }

    .eyebrow,
    .contact-title,
    .contact-desc {
        text-align: center;
    }

    .email-btn {
        max-width: 100% !important;
        width: 100% !important;
        display: block;
        text-align: center;
    }

    .contact-card {
        margin-top: 0;
    }

    .contact-card>div>div {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-content: center;
        text-align: center;
        width: 100%;
    }

    .contact-card .email {
        justify-content: center;
    }

    .about-band {
        padding: 48px 0 0;
    }

    .feature-card.blue,
    .feature-card.blue .body {
        background: #f7eaea;
    }

    footer {
        padding: 0 0 56px;
    }

    .payments img {
        max-width: 100%;
    }
    .tnkuBox{
        padding: 4rem 2rem;
            margin: 6rem 0;
    }
    .tnkutick img {
        max-width: 100%;
    }

    .tnkutick {
        width: 100px;
        top: -47px;
    }
}

@media (max-width: 575px) {
    /* .hero-deco {
        display: none
    } */

    .scan-card {
        padding: 14px
    }

    .hero .headline {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 1.35rem;
    }

    .contact-desc {
        font-size: .95rem;
    }

    .footer-links a {
        margin: 0 12px;
        display: inline-block;
    }

    .prtecn {
        padding: 6rem 1rem 5rem;
        background-size: 109px;
        background-position: 3% 3%;
    }

    .hero-banner-right {
        margin-right: auto;
    }
    
}

@media (max-width:480px) {
    .prtecn {
        padding: 4rem 1rem 5rem;
    }
    .hero .sub{
        font-size: 1.1rem;
    }
    .prtecn h1,
    .about-band h2,
    .features-section h2 {
        font-size: clamp(1.6rem, 2.6vw, 2.6rem);
        line-height: 1.3;
    }

    /* .badge-peak {
        left: 50%;
        transform: translateX(-50%)
    } */

    .payment-logos {
        right: 6%
    }

    .prtecn h1 br {
        display: none;
    }

    .badge-peak {
        top: 49%;
    }
}

.footer-links a.active {
    background-color:#0056b3b0;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}