﻿/* ===== KavachAV FREE TRIAL STYLES - FIXED LAYOUT ===== */
:root {
    --KavachAV-blue: #1e5ec7;
    --KavachAV-blue-dark: #154a9f;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
}



/* Container Styles */
.c-container__id {
    width: 100%;
}

.c-container {
    position: relative;
    width: 100%;
}

.c-container__body {
    width: 100%;
    position: relative;
    z-index: 2;
}

.l-container--fullwidth {
    width: 100%;
}

.t-bg-trans {
    background-color: transparent;
}

/* Spacer Styles */
.c-spacer {
    width: 100%;
    background-color: transparent;
}

@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);
    }
}

/* Grid System */
.aem-Grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.aem-GridColumn {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 1000px) {
    .aem-Grid--default--12 .aem-GridColumn--default--6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Padding Utilities */
@media (min-width: 768px) {
    .pl-md-60px {
        padding-left: 60px;
    }

    .pr-md-50px {
        padding-right: 50px;
    }
}

/* Hero Section Heights */
.min-ht-450px {
    min-height: 450px;
}

@media (min-width: 768px) {
    .min-ht-md-600px {
        min-height: 600px;
    }
}

@media (min-width: 1022px) {
    .min-ht-sd-400px {
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .min-ht-xl-400px {
        min-height: 400px;
    }
}

/* Background Image - Full Width */
.c-container__bg-img__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    margin-left: calc(-50vw + 50%);
}

.c-container__bg-img--fullwidth {
    width: 99.01vw;
}

.c-container__bg-img__picture {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Title Styles */
.c-title {
    width: 100%;
}

.c-title__container.leftAlign {
    text-align: left;
}

.c-title__text {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
/*    color: var(--text-dark);*/
    color: white;
}

    .c-title__text.font52px {
        font-size: 42px;
    }

@media (max-width: 767px) {
    .c-title__text.font52px {
        font-size: 32px;
    }
}

/* Text Styles */
.cmp-text {
    word-wrap: break-word;
}

    .cmp-text p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 0;
/*        color: var(--text-medium);*/
        color: white;
    }

.p-xl {
    font-size: 18px;
    font-weight: 500;
/*    color: var(--text-dark);*/
    color: white;
}

.legal-small {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-light);
}

/* Bullet Points */
.free-trial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .free-trial-list li {
        font-size: 16px;
/*        color: var(--text-medium);*/
        color: white;
        padding: 5px 0 5px 22px;
        position: relative;
    }

        .free-trial-list li:before {
            content: "•";
            color: var(--KavachAV-blue);
            font-weight: bold;
            position: absolute;
            left: 5px;
            font-size: 18px;
        }

/* Button Styles */
.c-btn.pt-0px {
    padding-top: 0;
}

.c-btn__container.t-btn--left {
    text-align: left;
}

.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: var(--KavachAV-blue);*/
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
/*    border-color: var(--KavachAV-blue);*/
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 16px;
}

    .t-btn--primary:hover {
        /*        background: var(--KavachAV-blue-dark);*/
        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;
    }

/* Responsive */
@media (max-width: 767px) {
    .t-btn--primary {
        width: 100%;
        padding: 14px 20px;
    }

    .p-xl {
        font-size: 16px;
    }

    .free-trial-list li {
        font-size: 14px;
    }
}

/* ===== KavachAV FREE TRIAL PLANS SECTION ===== */
.productpanel {
  display:flex;
  justify-content:center;
  justify-items:center;
}

/* Product Panel Styles */
.c-productpanel {
    width: 81%;
    padding: 20px 0;
}

.c-productpanel__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .c-productpanel__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .c-productpanel__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.c-productpanel__grid__product {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 24px 20px;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .c-productpanel__grid__product:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

/* Banner Styles */
.c-productpanel__banner {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.c-productpanel__banner--blue1 .c-productpanel__banner__bar {
    background: #FF6600;
    color: white;
    font-size: 12px;
    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;
}

/* Product Title */
.c-productpanel__grid__ptitle {
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.c-productpanel__grid__ptitle__product {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.c-productpanel__grid__ptitle__tier {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Device Count */
.c-productpanel__device-count {
    font-size: 13px;
    font-weight: 600;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}

/* Toggle */
.c-productpanel__grid__ptoggle {
    /*    background: #f1f5f9;*/
    background: #121212;
    border-radius: 40px;
    padding: 3px;
    display: inline-flex;
    margin-bottom: 15px;
    width: 100%;
}

.c-productpanel__toggle__rgroup {
    display: flex;
    width: 100%;
    border: none;
    position: relative;
}

.c-productpanel__toggle__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.c-productpanel__toggle__radio-label {
    flex: 1;
    text-align: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    /*    color: #64748b;*/
    color: #FF6600;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

.c-productpanel__toggle__radio:checked + .c-productpanel__toggle__radio-label {
    background: white;
    color: #FF6600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Price */
.c-productpanel__grid__pprice {
    margin-bottom: 12px;
}

.c-productpanel__price__sale {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.c-productpanel__price__term {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    margin-left: 4px;
}

/* Entnote */
.c-productpanel__grid__entnote {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 15px;
}

    .c-productpanel__grid__entnote p {
        margin-bottom: 0;
    }

/* CTA Button */
.c-productpanel__cta {
    width: 100%;
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
}

    .c-productpanel__cta: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;
    }

/* Bottom Title */
.c-productpanel__grid__product__bottom__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

/* Features List */
.c-productpanel__grid__features {
    margin-top: 5px;
}

.c-productpanel-checkmark-bullets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .c-productpanel-checkmark-bullets ul li {
        font-size: 13px;
        color: #555555;
        padding: 4px 0 4px 18px;
        position: relative;
        line-height: 1.4;
    }

        .c-productpanel-checkmark-bullets ul li:before {
            content: "•";
            color: #FF6600;
            font-weight: bold;
            position: absolute;
            left: 4px;
            font-size: 14px;
        }

/* Responsive */
@media (max-width: 767px) {
    .c-productpanel__grid__product {
        max-width: 400px;
        margin: 0 auto;
    }

    .c-productpanel__price__sale {
        font-size: 24px;
    }
}