/* =============================
   Identifix Main Store - A/B Variant v2
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('../../../components/modal-vehicle-selector/modal-vehicle-selector.css');

:root {
    --font-primary: 'Inter', sans-serif;
}

html, body, .identifix-main-container {
    font-family: var(--font-primary) !important;
}

* {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
}


.ast-woo-shop-archive .site-content > .ast-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

.site-footer {
    display: none !important;
}

.identifix-custom-footer {
    background-color: var(--solera-jacarta);
    color: var(--solera-white);
}

.identifix-footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.identifix-footer-content a {
    color: var(--solera-white);
    text-decoration: none;
}

/* =============================
   Virtual Tech Label Tooltip
   ============================= */

.identifix-vtech-label-text {
    position: relative;
    cursor: help;
}

.identifix-vtech-label-text::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 56%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: normal;
    width: 420px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.identifix-vtech-label-text:hover::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Tooltip arrow */
.identifix-vtech-label-text::before {
    content: '';
    position: absolute;
    bottom: calc(100% - 7px);
    left: 56%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #333;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.identifix-vtech-label-text:hover::before {
    opacity: 1;
    visibility: visible;
}

.identifix-footer-content a:hover {
    color: var(--solera-gray);
}

.identifix-footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.identifix-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

/* =============================
   Layout & Containers
   ============================= */

.identifix-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin: 1rem auto;
    width: 100% !important;
}

.identifix-container {
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}
/* =============================
   Full-Width Section Containers
   ============================= */

.pricing-section-container,
.products-section-container,
.compare-section-container,
.experience-section-container,
.trusted-questions-section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.pricing-section-container {
    background-color: white;
    padding: 0;
}

.products-section-container {
    background-color: white;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.compare-section-container {
    padding: 0;
}

.experience-section-container {
    background-color: white;
    padding: 1rem 0;
}

.trusted-questions-section-container {
    background-color: white;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* =============================
   Hero Section
   ============================= */
.hero-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    background: linear-gradient(135deg, var(--solera-jacarta) 0%, #32255E 100%);
}
.identifix-hero {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    color: var(--solera-white);
    padding: 3rem 1rem 3rem;
    border-radius: 0;
}

.identifix-hero-left {
    flex: 1;
    max-width: 545px;
}

.identifix-hero-title {
    font-weight: 500 !important;
    font-size: 2.5rem;
    color: var(--solera-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.identifix-hero-title-highlight {
    color: var(--solera-sun);
}

.identifix-hero-description {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 600 !important;
}

/* Hero Rating Badge */
.identifix-hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.identifix-hero-stars {
    font-size: 1.3rem;
    color: var(--solera-sun);
    letter-spacing: 0.25rem;
    font-weight: 500;
}

.identifix-hero-rating-score {
    font-weight: 700;
    color: var(--solera-white);
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 1rem;
}

.identifix-hero-rating-text {
    color: var(--solera-white);
    font-size: 1rem;
    font-weight: 700;
}

.identifix-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.identifix-hero-right img {
    max-height: 240px;
    max-width: 100%;
    width: auto;
    border-radius: 8px;
}

/* =============================
   Hero Action Buttons
   ============================= */

.identifix-hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-items: center;
}

.identifix-hero-action-btn {
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.identifix-hero-action-primary {
    background-color: var(--solera-sun) !important;
    color: var(--solera-jacarta) !important;
}

.identifix-hero-action-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.3);
}

.identifix-hero-action-secondary {
    background-color: transparent !important;
    color: var(--solera-white) !important;
    /* border: 2px solid var(--solera-white); */
}

.identifix-hero-action-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    /* background-color: rgba(255, 255, 255, 0.1) !important; */
}

/* =============================
   Pricing Section
   ============================= */

.identifix-pricing-intro {
    text-align: center;
    background-color: transparent;
    padding: 2rem 0rem 0rem;
}

.identifix-pricing-intro h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-size: 2.8rem;
}

.identifix-pricing-callout {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #FFB1324D;
    border: 2px solid var(--solera-sun);
    border-radius: 50px;
    padding: .3rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #000;
}

.identifix-pricing-callout-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    color: var(--solera-sun);
}

.identifix-pricing-callout-text {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
}

.identifix-pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.identifix-switch-label {
    font-size: 1.125rem;
    font-weight: 500;
}

.identifix-switch-toggle {
    position: relative;
    width: 50px;
    height: 28px;
}

.identifix-switch-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.identifix-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    border-radius: 28px;
    transition: background 0.2s;
}

.identifix-switch-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: #0a2240;
    border-radius: 50%;
    transition: transform 0.2s;
}

.identifix-switch-input:checked+.identifix-switch-slider {
    background-color: #0073e6;
}

.identifix-switch-input:checked+.identifix-switch-slider:before {
    transform: translateX(22px);
}

/* =============================
   Product Grid & Cards
   ============================= */

.identifix-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
    background: transparent;
}

.identifix-product-grid.hidden {
    display: none;
}

.identifix-product-card {
    min-width: 280px;
    max-width: 380px;
    background: var(--solera-white);
    border-radius: 12px;
    border: 1px solid var(--solera-shark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex: 1 1 calc(33.333% - 2rem);
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
}

.identifix-product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Most Popular Product - Enhanced Styling */
.identifix-product-card.is-most-popular {
    background: #32255E;
    color: var(--solera-white);
    border: 2px solid #32255e;
    position: relative;
}

.identifix-product-card.is-most-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.identifix-product-card.is-most-popular .identifix-product-title,
.identifix-product-card.is-most-popular .identifix-product-short-description,
.identifix-product-card.is-most-popular .identifix-product-access,
.identifix-product-card.is-most-popular .identifix-additional-features {
    color: rgba(255, 255, 255, 0.9);
}

.identifix-product-card.is-most-popular .identifix-product-rating-label {
    color: rgba(255, 255, 255, 0.7);
}

.identifix-product-card.is-most-popular .identifix-price,
.identifix-product-card.is-most-popular .identifix-product-price-only,
.identifix-product-card.is-most-popular .identifix-product-sale-price, 
.identifix-product-card.is-most-popular .identifix-sale-price-alert {
    color: var(--solera-white);
}

.identifix-product-card .identifix-product-ribbon {
    position: static;
    margin: -1.5rem -1.5rem 0rem -1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--solera-sun);
    color: var(--solera-jacarta);
    font-weight: 600;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: 1rem;
}

.identifix-product-ribbon-star {
    display: inline;
    font-size: 1.5em;
}

.identifix-product-card .identifix-product-ribbon-spacer {
    margin: -1.5rem -1.5rem 0rem -1.5rem;
    height: 40px;
}

/* Star Rating */
.identifix-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.identifix-product-stars {
    display: inline-flex;
    gap: 0.25rem;
    font-size: 1.2rem;
    color: var(--solera-sun);
}

.identifix-product-rating-value {
    font-weight: 600;
    color: var(--solera-jacarta);
    font-size: 0.95rem;
}

.identifix-product-rating-label {
    font-size: 0.85rem;
    color: #999;
}

/* Product Title & Info */
.identifix-product-title {
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 2rem !important;
    color: #32255F !important;
    min-height: 3.5rem;
    margin: 0 !important;
    line-height: 1.2;
    align-self: center;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    text-align: center;
}

.identifix-product-card.is-most-popular .identifix-product-title {
    color: var(--solera-white) !important;
}

.identifix-product-short-description {
    color: var(--solera-shark);
    min-height: 2.5rem;
    font-size: 0.95rem;
}

/* Pricing */
.identifix-product-prices {
    display: flex;
    min-height: 2.5rem;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-self: center;
}

.identifix-product-extra-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 1.3rem;
    color: #194fa1;
    font-weight: 600;
    min-height: 1.5rem;
}

.identifix-product-extra-text h6 {
    margin: 0;
    padding: 0;
    color: inherit;
    font-weight: inherit;
    line-height: 1.4;
}

.identifix-product-extra-text::before {
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path fill="%230a2240" d="M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1.3rem;
    height: 1.3rem;
    flex-shrink: 0;
    display: inline-block;
}

.identifix-product-card.is-most-popular .identifix-product-extra-text {
    color: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.identifix-product-card.is-most-popular .identifix-product-extra-text h6 {
    color: rgba(255, 255, 255, 0.95);
}

.identifix-product-card.is-most-popular .identifix-product-extra-text::before {
    background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path fill="%23feb032" d="M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"></path></svg>');
}

.identifix-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
}

.identifix-product-regular-price {
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 400;
    opacity: 0.6;
    text-decoration: line-through;
}

.identifix-product-price-only {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    color: var(--solera-jacarta);
}

.identifix-product-sale-price {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    color: var(--solera-jacarta);
}

.identifix-price-period {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
}

.identifix-product-access {
    color: var(--solera-shark);
    min-height: 4rem;
    font-size: 0.9rem;
}

.identifix-additional-features {
    color: var(--solera-shark);
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
    min-height: 2rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.identifix-additional-features ul,
.identifix-additional-features ol {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.identifix-additional-features li {
    list-style: none;
    padding-left: 2rem;
    position: relative;
    font-size: 16px;
}

.identifix-additional-features li::before {
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="rgb(34 197 94)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.15rem;
}

.identifix-sale-price-alert {
    border-radius: 6px;
    min-height: 3.6rem;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--solera-shark);
    font-size: 1rem;
}

.identifix-more-details-link {
    text-align: center;
}

.identifix-more-details-link a {
    color: var(--solera-jacarta);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.identifix-more-details-link a:hover {
    color: var(--solera-sun);
    text-decoration: underline;
}



/* =============================
   Gradient Text Utility
   ============================= */

/* =============================
   Compare Plans Section
   ============================= */

.identifix-compare-section {
    width: 100%;
    padding: 2rem 0rem;
    text-align: center;
    scroll-margin-top: 80px;
}

.identifix-compare-section h2 {
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.identifix-compare-section h2::before,
.identifix-compare-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #d1d5db;
}

.identifix-compare-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
}

.identifix-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--solera-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px #CCCECE;
    border: 2px solid #CCCECE;
    table-layout: fixed;
}

.identifix-compare-table thead {
    background-color: var(--solera-jacarta);
    color: var(--solera-white);
}

.identifix-compare-table th {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.identifix-compare-table th:first-child {
    text-align: left;
}

.identifix-compare-table th:last-child {
    border-right: none;
}

.identifix-compare-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.identifix-compare-table tbody tr:last-child {
    border-bottom: none;
}

.identifix-compare-table td {
    padding: 1rem;
    text-align: center;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.identifix-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--solera-jacarta);
    background-color: white;
}

.identifix-compare-table .checkmark {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.5rem;
}

.identifix-compare-table .cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Clickable Plan Title Links in Table Header */
.identifix-compare-table th a {
    color: var(--solera-white);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.identifix-compare-table th a:hover {
    color: var(--solera-sun) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    opacity: 0.9;
}

/* More Details Row Styling */
.identifix-compare-more-details {
    background-color: var(--solera-white);
    border-top: 2px solid #e5e7eb;
}

.identifix-compare-more-details td {
    padding: 1.5rem 1rem;
    text-align: center;
}

.identifix-compare-more-details td:first-child {
    background-color: transparent;
}

.identifix-compare-more-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.identifix-compare-more-link:hover {
    transform: translateY(-2px);
}

.identifix-compare-section .identifix-compare-cta {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    border-radius: 8px;
}

.identifix-compare-section .identifix-compare-cta h6 {
    color: var(--solera-shark);
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.3rem;
    color: #0f172a;
}

.identifix-compare-section .identifix-compare-cta-btn {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 42%;
    max-width: 42% !important;
    text-align: center;
}

.identifix-compare-section .identifix-compare-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.3);
}

/* =============================
   Experience Section
   ============================= */

.identifix-experience {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
    scroll-margin-top: 80px;
}

.identifix-experience h2 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.identifix-experience h2::before,
.identifix-experience h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #d1d5db;
}

.identifix-experience video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.identifix-experience-btn {
    background-color: var(--solera-sun) !important;
    color: var(--solera-jacarta) !important;
    padding: 12px 24px !important;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.identifix-experience-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.3);
}


/* =============================
   Info Section
   ============================= */

.identifix-info-section {
    color: var(--solera-shark);
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

/* =============================
   Virtual Tech Checkbox & Product Visibility
   ============================= */

.identifix-vtech-checkbox-wrapper {
    min-height: 1rem;
}

.identifix-vtech-checkbox-wrapper label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.identifix-vtech-checkbox-wrapper input[type="checkbox"] {
    cursor: pointer;
}

.identifix-vtech-label-text {
    font-size: 1rem;
    font-weight: 700;
}

.identifix-vtech-checkbox-spacer {
    min-height: 1rem;
}

.identifix-product-card-hidden {
    display: none !important;
}

/* =============================
   Trusted & Questions Wrapper (2-Column with Purple Background)
   ============================= */

.identifix-ab-trusted-questions-wrapper {
    display: flex;
    gap: 0;
    margin-top: 0;
    border-radius: 0;
    overflow: visible;
    position: relative;
    min-height: 300px;
    background: white;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.identifix-ab-trusted {
    flex: 0 0 52%;
    padding: 3rem 2rem;
    background-color: var(--solera-jacarta);
    color: white;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.identifix-ab-trusted h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.identifix-ab-testimonials-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.identifix-ab-quote {
    flex: 1;
    background: transparent;
    border-left: 4px solid var(--solera-sun);
    padding: 0 0 0 1rem;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    margin: 0;
}

.identifix-ab-quote p {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.identifix-ab-quote footer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 400;
}

/* =============================
   Questions Section (Right Side of 2-Column)
   ============================= */

.identifix-ab-questions {
    flex: 0 0 48%;
    padding: 3rem 2rem;
    background-color: white;
    color: #333;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.identifix-ab-questions h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: left;
}

.identifix-ab-faqs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.identifix-ab-faq-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: transparent;
    color: #333;
    text-align: left;
    border-bottom: 1px solid #cccece7e;
    padding: .5rem;
}

.identifix-ab-faq-item:hover {
    box-shadow: none;
    border-color: transparent;
}

.identifix-ab-faq-icon {
    display: inline;
    font-size: 1.2rem;
    color: var(--solera-sun);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.identifix-ab-faq-question {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.identifix-ab-faq-answer {
    color: #888;
    font-size: 1rem;
    margin-left: auto;
}


/* =============================
   Mobile Responsive
   ============================= */

@media (max-width: 768px) {

    .identifix-main-container{
        margin: 5px 0;
    }
    /* Hero Section */
    .identifix-hero {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .identifix-hero-right {
        display: none;
    }

    .identifix-hero-title {
        font-size: 1.8rem;
    }

    .identifix-hero-description {
        font-size: 0.95rem;
    }

    .identifix-hero-rating {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .identifix-hero-stars {
        font-size: 1.1rem;
    }

    .identifix-hero-rating-score {
        font-size: 0.9rem;
        padding-right: 0.75rem;
    }

    .identifix-hero-rating-text {
        font-size: 0.9rem;
    }

    .identifix-hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .identifix-hero-action-btn {
        width: 100%;
        justify-content: center;
    }

    /* Pricing Section */
    .pricing-section-container .identifix-container {
        padding: 1.5rem 1rem;
    }

    .identifix-pricing-intro {
        padding: 1.5rem 0;
    }

    .identifix-pricing-intro h1 {
        margin-bottom: 1rem;
    }

    .identifix-pricing-callout {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    /* Product Grid */
    .products-section-container .identifix-container {
        padding: 0 1rem;
    }

    .identifix-product-grid {
        gap: 1.5rem;
        padding: 0;
    }

    .identifix-product-card {
        flex: 1 1 100%;
        min-width: unset;
        align-self: center;
    }

    /* Compare Section */
    .compare-section-container .identifix-container {
        padding: 2rem 1rem 0rem;
    }

    .identifix-compare-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .identifix-compare-table th,
    .identifix-compare-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .identifix-compare-section .identifix-compare-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .identifix-compare-section .identifix-compare-cta-btn {
        width: 100%;
        min-width: unset;
    }

    /* Experience Section */
    .experience-section-container .identifix-container {
        padding: 2rem 1rem 0rem;
    }

    .identifix-experience {
        padding: 0;
    }

    .identifix-experience h2 {
        font-size: 1.4rem;
    }

    /* Trusted & Questions Mobile */
    .identifix-ab-trusted-questions-wrapper {
        flex-direction: column;
        gap: 0;
        margin-top: 2rem;
        border-radius: 0;
        background: white !important;
    }

    .identifix-ab-trusted {
        flex: 100%;
        padding: 2rem 1.5rem;
        clip-path: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .identifix-ab-trusted h4 {
        font-size: 1.2rem;
        text-align: center;
    }

    .identifix-ab-questions {
        flex: 100%;
        padding: 2rem 1.5rem;
        clip-path: none;
    }

    .identifix-ab-questions h4 {
        font-size: 1.2rem;
        text-align: center;
    }

    .identifix-ab-faq-item {
        gap: 0.5rem;
    }

    .identifix-ab-faq-question {
        font-size: 0.9rem;
    }

    .identifix-ab-faq-answer {
        font-size: 0.85rem;
    }

    /* Footer */
    .identifix-footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .identifix-footer-left {
        text-align: center;
    }

    .identifix-footer-right {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .identifix-main-container{
        margin: 5px 0;
    }
    
    .identifix-hero-title {
        font-size: 1.4rem;
    }

    .identifix-hero-description {
        font-size: 0.9rem;
    }

    .identifix-hero-rating {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
        width: 100%;
    }

    .identifix-hero-stars {
        font-size: 1.1rem;
        order: 1;
    }

    .identifix-hero-rating-score {
        font-size: 0.95rem;
        padding: 0;
        border: none;
        order: 2;
    }

    .identifix-hero-rating-text {
        font-size: 0.95rem;
        text-align: center;
        padding: 0;
        border: none;
        flex-basis: 100%;
        order: 3;
        padding-top: 0.5rem;
    }

    .identifix-pricing-intro h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .identifix-pricing-callout {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        border-radius: 8px;
    }

    .identifix-product-title {
        font-size: 1.1rem;
        min-height: 2.8rem;
    }

    .identifix-product-price-only,
    .identifix-product-sale-price {
        font-size: 1.6rem;
    }

    .identifix-hero-action-btn {
        padding: 10px 16px !important;
        font-size: 0.9rem;
    }

    .identifix-compare-section .identifix-compare-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 1rem;
    }

    .identifix-compare-section .identifix-compare-cta h6 {
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .identifix-compare-section .identifix-compare-cta-btn {
        width: 100%;
        min-width: 100%;
        padding: 10px 16px !important;
        font-size: 1rem;
    }

    .identifix-compare-section h4,
    .identifix-experience h4,
    .identifix-testimonials h4 {
        font-size: 1.2rem;
    }
}
