﻿/* ===== KavachAV GLOBAL STYLES ===== */
:root {
    --KavachAV-blue: #1e5ec7;
    --KavachAV-blue-dark: #154a9f;
    --KavachAV-gray-bg: #f8fafc;
    --KavachAV-text-dark: #1e293b;
    --KavachAV-text-medium: #334155;
    --KavachAV-text-light: #64748b;
    --KavachAV-border: #e9ecef;
    --KavachAV-gray-light: #f1f5f9;
    --KavachAV-award-bg: #d7d7d9;
    --KavachAV-promise-bg: #F2F2F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CONTAINER STYLES ===== */
.c-container__id {
    width: 100%;
}

.c-container {
    position: relative;
    width: 100%;
}

.c-container__body {
    width: 100%;
}

.l-container--fullwidth {
    width: 100%;
}

.t-bg-trans {
    background-color: transparent;
}

.t-bg-gray5 {
    background-color: #f5f5f5;
}

/* Container with rounded corners */
.c-container--round-corners {
    border-radius: 16px;
    overflow: hidden;
}

.c-container__id--round-corners {
    border-radius: 16px;
}

/* ===== SPACER STYLES ===== */
.c-spacer {
    width: 100%;
    background-color: transparent;
}

/* Spacer responsive heights */
@media (max-width: 767px) {
    [style*="--mobile-spacer-height"] {
        height: var(--mobile-spacer-height);
    }
}

@media (min-width: 768px) and (max-width: 1011px) {
    [style*="--tablet-spacer-height"] {
        height: var(--tablet-spacer-height);
    }
}

@media (min-width: 1012px) {
    [style*="--desktop-spacer-height"] {
        height: var(--desktop-spacer-height);
    }
}

/* ===== TEXT COMPONENT STYLES ===== */
.cmp-text {
    word-wrap: break-word;
}

.cmp-text.is-rtf {
    color: var(--KavachAV-text-dark);
}

.cmp-text h1,
.cmp-text h2,
.cmp-text h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cmp-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cmp-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.cmp-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--KavachAV-text-medium);
    margin-bottom: 16px;
}

.cmp-text p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--KavachAV-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cmp-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmp-text ul li {
    font-size: 16px;
    color: var(--KavachAV-text-medium);
    padding: 6px 0 6px 24px;
    position: relative;
}

.cmp-text ul li:before {
    content: "•";
    color: var(--KavachAV-blue);
    font-weight: bold;
    position: absolute;
    left: 8px;
    font-size: 18px;
}

.h1-title-2 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.h2-title-3 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.legal-lg {
    font-size: 12px;
    color: var(--KavachAV-text-light);
    line-height: 1.6;
    display: block;
}

.legal-lg strong {
    color: var(--KavachAV-text-dark);
    font-weight: 600;
    font-size: 14px;
}

.non-breaking-space {
    white-space: nowrap;
}

/* ===== GRID SYSTEM ===== */
.aem-Grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.aem-GridColumn {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Desktop grid */
@media (min-width: 1000px) {
    .aem-Grid--default--12 .aem-GridColumn--default--4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .aem-Grid--default--12 .aem-GridColumn--default--6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== PADDING UTILITIES ===== */
/* Desktop padding */
.pl-lg-80px { padding-left: 80px; }
.pr-lg-80px { padding-right: 80px; }
.pl-lg-60px { padding-left: 60px; }
.pr-lg-60px { padding-right: 60px; }
.pl-lg-40px { padding-left: 40px; }
.pr-lg-40px { padding-right: 40px; }
.pl-lg-0px { padding-left: 0; }
.pr-lg-0px { padding-right: 0; }
.pt-lg-5px { padding-top: 5px; }
.pt-lg-0px { padding-top: 0; }
.pb-lg-40px { padding-bottom: 40px; }
.pb-lg-15px { padding-bottom: 15px; }
.pb-lg-0px { padding-bottom: 0; }

/* Tablet padding */
@media (min-width: 768px) {
    .pl-md-90px { padding-left: 90px; }
    .pr-md-90px { padding-right: 90px; }
    .pl-md-60px { padding-left: 60px; }
    .pr-md-60px { padding-right: 60px; }
    .pt-md-40px { padding-top: 40px; }
    .pt-md-50px { padding-top: 50px; }
    .pb-md-40px { padding-bottom: 40px; }
}

/* Mobile/Base padding */
.pl-20px { padding-left: 20px; }
.pr-20px { padding-right: 20px; }
.pr-10px { padding-right: 10px; }
.pt-10px { padding-top: 10px; }
.pt-40px { padding-top: 40px; }
.pb-20px { padding-bottom: 20px; }
.pb-30px { padding-bottom: 30px; }
.pb-120px { padding-bottom: 120px; }

/* ===== IMAGE COMPONENT ===== */
.c-image {
    width: 100%;
}

.c-image__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-image__container.typ--center-align {
    text-align: center;
}

.c-image__picture-container {
    display: inline-block;
    max-width: 100%;
}

.c-image__img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Award logos specific sizing */
.c-image__img[alt*="Award"] {
    max-height: 100px;
    width: auto;
}

@media (min-width: 768px) {
    .c-image__img[alt*="Award"] {
        max-height: 120px;
    }
}

/* ===== BUTTON STYLES ===== */
.t-btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    text-align: center;
/*    border: 2px solid transparent;*/
}

.t-btn--primary {
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
/*    border-color: var(--KavachAV-blue);*/
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 16px;
}

    .t-btn--primary:hover {
        background: linear-gradient(135deg, #E62E2E 0%, #FF6600 100%);
/*        border-color: var(--KavachAV-blue-dark);*/
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
        color: white;
    }

.t-btn--medium {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
}

/* ===== PRODUCT HERO SECTION ===== */
.c-prodhero {
    position: relative;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.c-prodhero__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-prodhero__wrap.img-right {
    flex-direction: column;
}

.c-prodhero__img-sec {
    width: 100%;
    line-height: 0;
}

.c-prodhero__picture {
    display: block;
    width: 100%;
}

.c-prodhero__picture__img {
    width: 100%;
    height: 100%;

    border-radius: 16px;
}
.c-prodhero__picture__img1 {
    width: 100%;
/*    height: 490px;*/
    height: 100%;

    border-radius: 16px;
}
.c-prodhero__picture__img3 {
    width: 100%;
    height: 100%;

    border-radius: 16px;
}

.c-prodhero__content {
    flex: 1;
    padding: 0 20px;
}

.c-prodhero__title {
    margin-bottom: 16px;
}

.c-prodhero__title__size-44 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--KavachAV-text-dark);
}

.c-prodhero__title__size-36 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--KavachAV-text-dark);
}

.c-prodhero__subtitle {
    margin-bottom: 24px;
}

.c-prodhero__subtitle p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--KavachAV-text-medium);
    margin-bottom: 16px;
}

/* Product pricing toggle */
.t-toggle {
    /*    background: var(--KavachAV-gray-light);*/
    background: #121212;
   
    border-radius: 40px;
    padding: 4px;
    display: inline-block;
    margin-bottom: 20px;
    width: auto;
    min-width: 200px;
}

.t-toggle__rgroup {
    display: flex;
    border: none;
    position: relative;
}

.t-toggle__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.t-toggle__radio-label {
    flex: 1;
    text-align: center;
/*    padding: 4px 8px;*/
    font-size: 18px;
    font-weight: 600;
    /*    color: var(--KavachAV-text-light);*/
    color: white;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    z-index: 2;
    position: relative;
}

.t-toggle__radio:checked + .t-toggle__radio-label {
    background: white;
    /*    color: var(--KavachAV-blue);*/
    color: #121212;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.c-prodhero__pricecont {
    margin-bottom: 20px;
}

.c-prodhero__discprice {
    font-size: 28px;
    font-weight: 800;
    color: var(--KavachAV-text-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.c-prodhero__sale-after {
    font-size: 14px;
    color: var(--KavachAV-text-light);
    font-weight: 400;
    margin-left: 4px;
}

.c-prodhero__ctawrap {
    margin: 20px 0;
}

.c-prodhero__cta {
    display: inline-block;
    width: auto;
    min-width: 200px;
}

.c-prodhero__note {
    font-size: 13px;
    color: var(--KavachAV-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.c-prodhero__note a {
    color: var(--KavachAV-blue);
    text-decoration: none;
    font-weight: 500;
}

.c-prodhero__note a:hover {
    text-decoration: underline;
}

.c-prodhero__devicecnt {
    font-size: 14px;
    color: var(--KavachAV-text-medium);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--KavachAV-border);
}

.c-prodhero__osimgcont {
    margin-top: 20px;
}

.c-prodhero__osimg {
    max-width: 100%;
    height: auto;
}

/* Desktop product hero */
@media (min-width: 768px) {
    .c-prodhero__wrap {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .c-prodhero__wrap.img-right {
        flex-direction: row-reverse;
    }

    .c-prodhero__img-sec {
        flex: 1;
    }

    .c-prodhero__content {
        flex: 1;
        padding: 0;
    }

    .c-prodhero__title__size-44 {
        font-size: 42px;
    }

    .c-prodhero__title__size-36 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .c-prodhero__title__size-44 {
        font-size: 48px;
    }

    .c-prodhero__title__size-36 {
        font-size: 42px;
    }
}

/* ===== HERO COMPONENT (CONSOLIDATED) ===== */
.c-hero {
    position: relative;
    width: 100%;
}

.c-hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-hero__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 500px;
}

.c-hero__wrap.is--rounded--corners {
    border-radius: 16px;
}

.c-hero__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.c-hero__picture.is--rounded--corners {
    border-radius: 16px;
}

.c-hero__picture__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-hero__picture__img.image-below {
    border-radius: 16px;
}

/* Dark overlay for text readability */
.c-hero__picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

.c-hero__text-container {
    padding: 40px 30px;
    background-color: transparent;
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 3;
}

.c-hero__text-container.is--rounded--corners {
    border-radius: 0 0 16px 16px;
}

.c-hero__content {
    max-width: 100%;
    margin: 0 auto;
}

.c-hero__desktop-content__width-540 {
    max-width: 540px;
}

.c-hero__tablet-content__width-606 {
    max-width: 606px;
}

.c-hero__tablet-content__width-632 {
    max-width: 632px;
}

.c-hero__desktop-content__padding-90 {
    padding: 0;
}

.c-hero__desktop-content__padding-110 {
    padding: 0;
}

.c-hero__tablet-content__padding-60 {
    padding: 0;
}

.c-hero__mobile-content__padding-30 {
    padding: 0;
}

/* Rich Text Formatting for Hero */
.c-hero .is-rtf {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-hero .is-rtf p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-hero .is-rtf h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-hero .is-rtf p:last-of-type {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button in Hero */
.c-hero__cta-wrap {
    margin-top: 10px;
}

.c-hero__btn.is--rounded--corners {
    border-radius: 40px;
}

/* Desktop hero styles */
@media (min-width: 768px) {
    .c-hero__wrap {
        flex-direction: row;
        align-items: stretch;
        min-height: 550px;
    }

    .c-hero__picture {
        position: absolute;
        border-radius: 16px;
    }

    .c-hero__picture.is--rounded--corners {
        border-radius: 16px;
    }

    .c-hero__picture__img.image-below {
        border-radius: 16px;
        height: 100%;
/*        object-fit: fill;*/
    }

    .c-hero__text-container {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 60px 40px;
        border-radius: 16px 0 0 16px;
        background-color: transparent;
        position: relative;
        z-index: 3;
    }

    .c-hero__text-container.is--rounded--corners {
        border-radius: 16px 0 0 16px;
    }

    .c-hero__desktop-content__padding-90 {
        padding: 0 40px 0 90px;
        margin-left: inherit;
    
    }

    .c-hero__desktop-content__padding-110 {
        padding: 0 20px 0 40px;
    }
}

@media (min-width: 1024px) {
    .c-hero__wrap {
        min-height: 500px;
    }

    .c-hero__text-container {
        padding: 80px 60px;
    }

    .c-hero__desktop-content__padding-90 {
        padding: 0 22px 0 24px;
    }

    .c-hero__desktop-content__padding-110 {
        padding: 0 40px 0 110px;
    }

    .c-hero .is-rtf h2 {
        font-size: 48px;
    }
}

/* ===== ATTRIBUTES ICONS SECTION ===== */
.c-attr__wrapper {
    width: 100%;
    padding: 40px 0;
}

.c-attr__container {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-attr__container--default {
    grid-template-columns: repeat(1, 1fr);
}

.c-attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.c-attr__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-attr__icon__img {
    max-width: 100%;
    max-height: 100%;
}

.c-attr__text {
    width: 100%;
}

.c-attr__titlewrap p {
    font-size: 18px;
    font-weight: 600;
    color: var(--KavachAV-text-dark);
    margin-bottom: 8px;
}

.c-attr__parawrap p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--KavachAV-text-medium);
}

/* Tablet attributes */
@media (min-width: 768px) {
    .c-attr__container--default {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Desktop attributes */
@media (min-width: 1000px) {
    .c-attr__container--default {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .c-attr {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
    }

    .c-attr__icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
}

/* ===== PLANS SECTION ===== */
.KavachAV-plans {

    padding: 60px 0;

}

.KavachAV-plans .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.KavachAV-plans h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--KavachAV-text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 28px 24px;
    transition: all 0.2s ease;
    border: 1px solid var(--KavachAV-border);
    position: relative;
}

.plan-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.best-deal-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6600;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(30, 94, 199, 0.2);
    white-space: nowrap;
}

.plan-title {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--KavachAV-text-dark);
    margin-bottom: 4px;
}

.plan-devices {
    font-size: 14px;
    color: var(--KavachAV-text-light);
    font-weight: 400;
}

.plan-toggle {
    /*    background: var(--KavachAV-gray-light);*/
    background: #121212;
    border-radius: 40px;
    padding: 4px;
    display: inline-flex;
    margin-bottom: 20px;
    width: 100%;
    max-width: 200px;
}

.toggle-btn {
    flex: 1;
    text-align: center;
/*    padding: 4px 8px;*/
    font-size: 18px;
    font-weight: 600;
    /*    color: var(--KavachAV-text-light);*/
    color: white;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

    .toggle-btn.active {
        background: white;
        /*    color: var(--KavachAV-blue);*/
        color: #121212;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

.price-section {
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: var(--KavachAV-text-dark);
    line-height: 1.2;
}

.price-term {
    font-size: 14px;
    color: var(--KavachAV-text-light);
    font-weight: 400;
    margin-left: 4px;
}

.savings-text {
    font-size: 13px;
    color: var(--KavachAV-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.savings-text a {
    color: var(--KavachAV-blue);
    text-decoration: none;
    font-weight: 500;
}

.savings-text a:hover {
    text-decoration: underline;
}

.buy-btn {
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .buy-btn:hover {
        background: linear-gradient(135deg, #E62E2E 0%, #FF6600 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
        color: white;
    }

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    color: var(--KavachAV-text-medium);
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

    .features-list li:before {
        content: "•";
        color: #FF6600;
        font-weight: bold;
        position: absolute;
        left: 4px;
        font-size: 16px;
    }

.features-list li strong {
    color: var(--KavachAV-text-dark);
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.features-list li strong:first-of-type {
    margin-top: 0;
}

.vpn-feature {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--KavachAV-border);
    font-weight: 500;
    color: var(--KavachAV-text-dark);
    font-size: 14px;
}

.vpn-feature i {
    color: var(--KavachAV-blue);
    margin-right: 8px;
    font-size: 16px;
}

.parental-control {
    margin-top: 8px;
    font-weight: 500;
    color: var(--KavachAV-text-dark);
    font-size: 14px;
}

    .parental-control i {
        color: #FF6600;
        margin-right: 8px;
        font-size: 16px;
    }

.legal-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--KavachAV-border);
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

.legal-note sup {
    font-size: 10px;
    color: var(--KavachAV-text-light);
}

/* Hide duplicate toggle states */
.price-section[data-ent="2"],
.savings-text[data-ent="2"],
.buy-btn[data-ent="2"] {
    display: none;
}

/* ===== SCAM PROTECTION UTILITIES ===== */
.min-ht-700px {
    min-height: 500px;
}

.c-container__bg-img__container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.c-container__bg-img--not-fullwidth {
    border-radius: 16px;
}

.c-container__bg-img__container--is-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.c-container__bg-img__picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-container__bg-img__picture--scale {
    transition: transform 0.3s ease;
}

.pos-center-bottom {
    object-position: center bottom;
}

.typ--light-text {
    color: white;
}

.typ--light-text .cmp-text p,
.typ--light-text .cmp-text h3,
.typ--light-text .cmp-text ul li {
    color: white;
}

.typ--light-text .cmp-text ul li:before {
    color: white;
}

@media (min-width: 768px) {
    .min-ht-700px {
        min-height: 600px;
    }

    .sd-pos-center-center {
        object-position: center center;
    }

    .md-pos-center-center {
        object-position: center center;
    }
}

@media (min-width: 1024px) {
    .min-ht-700px {
        min-height: 700px;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cmp-text h2,
    .h1-title-2,
    .h2-title-3 {
        font-size: 28px;
    }

    .cmp-text h3 {
        font-size: 24px;
    }

    .c-prodhero__cta {
        width: 100%;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .KavachAV-plans h2 {
        font-size: 28px;
    }

    .plan-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Hero mobile styles */
    .c-hero__wrap {
        min-height: auto;
        flex-direction: column;
    }

    .c-hero__picture {
        position: relative;
        height: 250px;
    }

    .c-hero__text-container {
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        margin-top: -50px;
        z-index: 3;
    }

    .c-hero .is-rtf {
        color: #ffffff;
    }
}

@media (max-width: 480px) {
    .KavachAV-plans {
        padding: 40px 0;
    }

    .plan-card {
        padding: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}