/* What We Offer - Enterprise Professional Design */
.what-we-offer-home {
    padding: 80px 0;
    background: #f8f8f8;
    position: relative;
}

.what-we-offer-home > .container-standard {
    position: relative;
    z-index: 1;
}

/* Enterprise Header */
.enterprise-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.header-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6c757d;
    margin-bottom: 16px;
    display: none;
}

.header-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    color: #4f5f73;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.header-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #6c757d;
    display: none;
}

/* Grid Layout */
.what-we-offer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Left Side - Data Card */
.offer-visual-side {
    position: relative;
}

.data-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 28px;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6c757d;
    margin-bottom: 6px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    letter-spacing: -0.3px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 4px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #0c5460;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-text {
    font-size: 11px;
    font-weight: 700;
    color: #0c5460;
    letter-spacing: 1px;
}

/* Product Analysis Row */
.product-analysis-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border-bottom: 1px solid #dee2e6;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.product-meta {
    font-size: 13px;
    color: #6c757d;
}

/* Price Comparison Table */
.price-comparison-table {
    padding: 20px 28px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 12px;
}

.table-header > div {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.retailer-name {
    font-size: 15px;
    font-weight: 500;
    color: #212529;
}

.verified-badge {
    display: inline-block;
    margin-left: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    background: #28a745;
    color: white;
    border-radius: 3px;
}

.col-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.price-strike {
    font-size: 15px;
    font-weight: 500;
    color: #6c757d;
    text-decoration: line-through;
}

.price-best {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    letter-spacing: -0.3px;
}

.savings-amount {
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
}

.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 28px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    color: white;
}

.score-poor {
    background: #dc3545;
}

.score-fair {
    background: #ffc107;
    color: #212529;
}

.score-excellent {
    background: #28a745;
}

.best-row {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0 -28px;
    padding: 16px 28px;
    border-radius: 6px;
    border: 2px solid #28a745;
}

/* Market Stats */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 28px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    letter-spacing: -0.5px;
}

/* Right Side - Content */
.offer-content-side {
    text-align: left;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6c757d;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #212529;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64758b;
    margin-bottom: 32px;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: none;
}

.offer-benefits li {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    padding: 10px 0 10px 28px;
    position: relative;
}

.offer-benefits li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    background: #28a745;
    color: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-box {
    text-align: center;
    padding: 20px 16px;
    /* background: white; */
    /* border: 1px solid #dee2e6; */
    border-radius: 6px;
    transition: all 0.2s ease;
}

.stat-box:hover {
    /* border-color: #adb5bd; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    box-sizing: border-box;
}

.cta-jewelry {
    background: #274265;
    color: white;
    border: 2px solid #274265;
}

.cta-jewelry:hover {
    /* background: #343a40; */
    /* border-color: #343a40; */
}

.cta-diamonds {
    /* background: white; */
    color: #64758b;
    /* border: 2px solid #64758b; */
}

.cta-diamonds:hover {
    /* background: #212529; */
    /* color: white; */
}

.cta-btn svg {
    transition: transform 0.2s ease;
}

.cta-btn:hover svg {
    transform: translateX(3px);
}

/* Rating Explainer */
.rating-explainer {
    margin-top: 48px;
    padding: 28px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.explainer-title {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.explainer-item {
    text-align: center;
}

.explainer-badge {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.badge-great {
    background: #28a745;
}

.badge-fair {
    background: #ffc107;
    color: #212529;
}

.badge-bad {
    background: #dc3545;
}

.explainer-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
}

.explainer-description {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #6c757d;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

/* Responsive */
@media (max-width: 1200px) {
    
    .what-we-offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        display: flex;
        flex-direction: column-reverse;
    }

    .offer-visual-side {
        order: 2;
        width: 100%;
        margin-top: 50px;
    }

    .offer-content-side {
        order: 1;
        text-align: center;
    }

    .header-title {
        font-size: 30px;
    }
     .cta-buttons {
        
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .enterprise-header .header-title span{
        font-size: 24px;
        margin-top: 0px;
    }
    .what-we-offer-home {
        padding: 60px 20px;
    }
.stat-number{
    font-size: 20px;
}
    .header-title {
        font-size: 26px;
    }
    .enterprise-header{
        margin: 0 auto 20px;
    }

    .header-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0px;
        display: flex;
        justify-content: space-around;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 400px;
        margin: 0 auto;
    }
    .stat-box{
        padding: 8px 7px;
        border-bottom: 1px solid #dee2e6;
        border-radius: 0px;
    }

    .explainer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .data-card-header {
        flex-direction: column;
        gap: 16px;
    }

    .product-analysis-row {
        flex-direction: column;
        text-align: center;
    }

    .table-header {
        font-size: 10px;
    }

    .price-row {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 8px;
        font-size: 13px;
    }

    .market-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .best-row {
        margin: 0 -20px;
        padding: 16px 20px;
    }

    .data-card-header,
    .product-analysis-row,
    .price-comparison-table,
    .market-stats {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   HOME EXPLAINED VISUAL â€” Animated Price Comparison
   (Duplicated from jewelry about-pricing with home- prefix)
   ============================================ */
.home-explained-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-explained-visual-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 4;
}

/* Central ring card (clickable <a> tag) */
.home-explained-ring-card {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 13px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid rgb(100 117 139 / 9%);
    z-index: 3;
    animation: homeExplainedRingPulse 4s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

/* Stacked product images â€” carousel slide left/right */
.home-explained-ring-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.home-explained-ring-img.active {
    transform: translateX(0);
}

.home-explained-ring-img.slide-out {
    transform: translateX(-100%);
}

/* Skip transition when resetting position after slide-out */
.home-explained-ring-img.no-transition {
    transition: none;
}

@keyframes homeExplainedRingPulse {
    0% { box-shadow: 0 0px 0px rgb(230 230 230 / 30%), 0 0 0 0px rgb(230 230 230 / 30%); }
    100% { box-shadow: 0 20px 80px rgb(190 190 190 / 0%), 0 0 0 80px rgba(201, 169, 110, 0); }
}

/* Floating price tags */
.home-explained-price-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 4;
    min-width: 120px;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-explained-price-tag.fading {
    opacity: 0;
    transform: scale(0.95);
}

/* Generic label (replaces store name) */
.home-explained-tag-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a7a6e;
}

.home-explained-tag-price {
    font-size: 18px;
    font-weight: 800;
    color: #212529;
    letter-spacing: -0.3px;
}

/* Retailer tags â€” expensive/negative visual treatment */
.home-explained-tag-retailer {
    background: rgb(255 255 255 / 42%);
    border: 1px solid rgb(228 228 228);
    box-shadow: 0 6px 24px rgb(211 47 47 / 0%);
    border-radius: 7px;
}

.home-explained-tag-retailer .home-explained-tag-label {
    color: #8a7a6e;
}

.home-explained-tag-retailer .home-explained-tag-price {
    color: #c62828;
    text-decoration: line-through;
    text-decoration-color: rgba(198, 40, 40, 0.35);
}

/* Individual tag positions + staggered float */
.home-explained-tag-1 {
    top: 30%;
    left: -10%;
    animation-name: homeExplainedTagFloat1;
    animation-delay: 0s;
}

.home-explained-tag-2 {
    top: 2%;
    left: 5%;
    animation-name: homeExplainedTagFloat2;
    animation-delay: 1s;
}

.home-explained-tag-3 {
    bottom: 23%;
    left: -8%;
    animation-name: homeExplainedTagFloat3;
    animation-delay: 2s;
}

/* Best deal tag â€” positive green treatment */
.home-explained-tag-best {
    bottom: 7%;
    right: -10%;
    background: rgb(255 255 255);
    border: 1px solid #eff0f2;
    box-shadow: 0 12px 40px rgba(67, 160, 71, 0);
    padding: 14px 18px;
    min-width: 140px;
    box-shadow: 0px 3px 7px 3px #0000000a;
}

.home-explained-tag-best .home-explained-tag-label {
    color: #212529;
    font-size: 12px;
}

.home-explained-tag-best .home-explained-tag-price {
    font-size: 24px;
    color: #1a8f35;
}

.home-explained-tag-save {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1a8f35;
    margin-top: 0px;
    /* margin-left: -13px; */
}

/* Tag float animations */
@keyframes homeExplainedTagFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 12px); }
}

@keyframes homeExplainedTagFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(6px, -10px); }
}

@keyframes homeExplainedTagFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -8px); }
}

/* Connector lines */
.home-explained-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.home-explained-line {
    animation: homeExplainedLinePulse 3s ease-in-out infinite;
}

@keyframes homeExplainedLinePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Progress dots */
.home-explained-dots {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.home-explained-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f5f7326;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-explained-dot.active {
    background: #4f5f73;
    width: 22px;
    border-radius: 4px;
}

.home-explained-dot:hover:not(.active) {
    background: rgba(134, 97, 74, 0.4);
}

/* Responsive for home-explained-visual */
@media (max-width: 1200px) {
    .home-explained-visual {
        margin: 0 auto;
        max-width: 380px;
    }

    .home-explained-ring-card {
        width: 220px;
        height: 220px;
    }

    .home-explained-tag-1 {
        right: -5%;
    }

    .home-explained-tag-3 {
        right: -5%;
    }

    
      .home-explained-price-tag {
        padding: 6px 10px;
        width: 86px;
        min-width:50px;
        border-radius: 8px;
        margin-left:10px;
        /* min-width: 100px; */
    }
    .home-explained-tag-best {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .home-explained-visual {
        margin: 0 auto 40px;
        max-width: 340px;
    }

    .home-explained-ring-card {
        width: 160px;
        height: 160px;
    }

    .home-explained-price-tag {
        padding: 8px 12px;
        min-width: 50px;
        border-radius: 10px;
        width: 50px;
    }

    .home-explained-tag-label {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .home-explained-tag-price {
        font-size: 14px;
    }

    .home-explained-tag-best {
        padding: 10px 14px;
        min-width: 115px;
    }

    .home-explained-tag-best .home-explained-tag-price {
        font-size: 17px;
    }

    .home-explained-tag-save {
        font-size: 10px;
    }

    .home-explained-connectors {
        display: none;
    }

    .home-explained-dots {
        bottom: -8px;
        display: none;
    }

    .home-explained-dot {
        width: 6px;
        height: 6px;
    }

    .home-explained-dot.active {
        width: 18px;
    }

    .home-explained-tag-1 {
        top: 20%;
        
    }

    .home-explained-tag-2 {
        top: -5%;
        
    }

    .home-explained-tag-3 {
        bottom: 18%;
        
    }

    .home-explained-tag-best {
        bottom: 0%;
        right: -20px;
        margin-bottom:-20px
    }
      .home-explained-ring-card {
        width: 200px;
        height: 200px;
    }

  
}

@media (max-width: 480px) {
    .home-explained-visual {
        max-width: 300px;
    }

  

    .home-explained-tag-price {
        font-size: 13px;
    }

    .home-explained-tag-best {
        padding: 8px 12px;
        min-width: 100px;
    }

    .home-explained-tag-best .home-explained-tag-price {
        font-size: 15px;
    }
}
.header-title span {
    display: block;
    font-weight: 700;
    margin-top: -5px;
}
.offer-websites-title {
    display: none;
}
.offer-websites-logos {
    display: flex;
    width: 100%;
}

.offer-websites-logo {
    flex: 0 0 50%;
}

.offer-websites-logo svg {
    width: 180px;
    margin-bottom: 2px;
    display: none;
}

.offer-websites-logo a {
    display: flex;
    flex-direction: column;
}

span.jewelry-logo-text svg path {
    fill: #87614b;
}

span.jewelry-logo-subtitle {
    font-size: 16px;
    color: #87614c;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: none;
}