.elementor-3988 .elementor-element.elementor-element-e11153b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a773202 */@charset "UTF-8";

/* ==========================================================================
   TCD Qualia Custom CSS (Refined)
   Color: #9F8C7D (Primary)
   ========================================================================== */
:root {
    --lp-color-primary: #9F8C7D;
    --lp-color-primary-light: #F2EFE9;
    --lp-color-primary-dark: #6D5D52;
    --lp-color-text-body: #4A4238;
    --lp-color-text-heading: #502220;
    --lp-color-bg-white: #FFFFFF;
    --lp-color-accent: #D4C5BB;
    --lp-font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --lp-font-sans: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --lp-radius: 12px;
    --lp-shadow: 0 5px 25px rgba(159, 140, 125, 0.15);
    --lp-gradient-bg: linear-gradient(135deg, #ffffff 0%, #fdfbf9 100%);
    --lp-gradient-gold: linear-gradient(135deg, #d4c5bb 0%, #bcaaa4 100%);
    --lp-shadow-premium: 0 10px 30px rgba(159, 140, 125, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    --lp-border-gold: 1px solid #e0d0c0;
}

/* Container and NAV */
.lp-voice-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.lp-voice-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Tab Buttons */
.lp-tab-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: #8a7b6e;
    transition: all 0.3s;
    border: 2px solid #e0d0c0;
    font-size: 0.95rem;
    outline: none;
    appearance: none;
}

.lp-tab-btn:hover {
    background: #f9f5f0;
    transform: translateY(-2px);
}

.lp-tab-btn.is-active {
    background: var(--lp-color-primary, #9F8C7D);
    color: #fff;
    border-color: var(--lp-color-primary, #9F8C7D);
    box-shadow: 0 4px 15px rgba(159, 140, 125, 0.4);
}

/* Tab Content Area */
.lp-tab-content {
    display: none;
    text-align: left;
    animation: fadeInTab 0.5s ease;
}

.lp-tab-content.is-active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Voice Card Styling */
.lp-voice-card {
    background: #fff;
    border: 1px solid #f0e6e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    margin-bottom: 20px;
}

.lp-voice-card::before {
    content: "VOICE";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #6D5D52;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.lp-voice-title {
    font-weight: bold;
    font-size: 1.15rem;
    color: #502220;
    margin-bottom: 15px;
    line-height: 1.5;
    border-bottom: 2px dotted #e0d0c0;
    padding-bottom: 12px;
    margin-top: 10px;
}

.lp-voice-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Wrapper & Layout */
.lp-content-wrapper {
    font-family: var(--lp-font-sans);
    color: var(--lp-color-text-body);
    line-height: 1.9;
    font-size: 16px;
    overflow-x: hidden;
}

.lp-content-wrapper * {
    box-sizing: border-box;
}

.lp-content-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Premium Design Classes */
.lp-premium-card {
    background: var(--lp-gradient-bg);
    box-shadow: var(--lp-shadow-premium);
    border: var(--lp-border-gold);
    border-radius: var(--lp-radius);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.lp-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--lp-gradient-gold);
}

.lp-text-gradient {
    background: linear-gradient(45deg, var(--lp-color-primary-dark), #9F8C7D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Grids & Flex - RESPONSIVE FIXES */
.lp-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-flex-col {
    flex: 1;
    min-width: 280px;
    /* Ensure wrapping on small screens */
}

/* Responsive Grid System */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Mobile adjustments for Grids */
@media (max-width: 900px) {
    .lp-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }
}

@media (max-width: 600px) {

    .lp-grid-3,
    .lp-grid-2 {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }

    .lp-premium-card {
        padding: 25px 20px;
        /* Less padding on mobile */
    }

    .lp-voice-nav {
        gap: 10px;
    }

    .lp-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Lists - CHECKMARK FIX */
.lp-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.lp-check-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f0eb;
    display: flex;
    /* Flexbox for alignment */
    align-items: flex-start;
    /* Align top */
    gap: 12px;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Pseudo-element for checkmark icon */
.lp-check-item::before {
    content: "✔";
    color: var(--lp-color-primary);
    font-weight: bold;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-top: 2px;
    /* Fine-tune optical alignment */
}

/* Image Frame - ASPECT RATIO FIX */
.lp-image-frame {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eee;
    /* Allow height to accommodate tall images without cropping/stretching excessively */
    height: auto;
    min-height: 200px;
}

.lp-image-frame img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
}

/* Profile Adjustments */
.lp-profile-img-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Headings */
.lp-content-wrapper h2 {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.lp-content-wrapper h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--lp-color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lp-content-wrapper h3 {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    margin-top: 30px;
    margin-bottom: 20px;
}

/* ROI Table */
.lp-roi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    box-shadow: var(--lp-shadow);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-roi-table th {
    background-color: var(--lp-color-primary);
    color: white;
    padding: 15px;
    font-family: var(--lp-font-serif);
}

.lp-roi-table td {
    background-color: white;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.lp-roi-table .highlight-cell {
    color: #C0392B;
    font-weight: bold;
    background-color: #FFFDF9;
}

/* Highlight Box */
.lp-highlight-box {
    background-color: var(--lp-color-primary-light);
    padding: 30px;
    border-radius: var(--lp-radius);
    margin: 30px 0;
}

/* Button */
.lp-btn-inner {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(135deg, #9F8C7D 0%, #8a7b6e 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(159, 140, 125, 0.4);
}

.lp-btn-inner:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(159, 140, 125, 0.5);
}

/* Responsive */
@media (max-width: 768px) {

    .lp-grid-3,
    .lp-grid-4 {
        grid-template-columns: 1fr;
    }

    .lp-content-wrapper h2 {
        font-size: 1.5rem;
    }
}

/* ======================================== 
   Accordion & FAQ 
======================================== */
.lp-accordion {
    border-top: 2px solid #f0e6e0;
}

.lp-accordion-item {
    border-bottom: 1px solid #f0e6e0;
}

.lp-accordion-item[open] {
    background-color: #faf8f6;
}

.lp-accordion-summary {
    padding: 25px 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: background-color 0.2s;
    font-size: 1.1rem;
    line-height: 1.5;
}

.lp-accordion-summary:hover {
    background-color: #faf8f6;
}

.lp-accordion-summary::-webkit-details-marker {
    display: none;
}

/* Custom Q marker */
.lp-faq-q {
    color: var(--lp-color-primary);
    font-size: 1.3rem;
    line-height: 1.2;
    flex-shrink: 0;
    font-family: var(--lp-font-serif);
}

.lp-faq-text {
    flex-grow: 1;
}

.lp-accordion-content {
    padding: 0 20px 30px 50px;
    color: #555;
    line-height: 1.8;
}

/* Mobile tweak */
@media (max-width: 600px) {
    .lp-accordion-content {
        padding: 0 20px 30px 20px;
    }
}

/* ======================================== 
   Custom Icons (CSS Only)
======================================== */
.lp-video-placeholder {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #6D5D52 0%, #502220 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(80, 34, 32, 0.2);
    border: 2px solid #8a7b6e;
}

/* Play button triangle */
.lp-video-placeholder::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Tape/Film styling details */
.lp-video-placeholder::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 15px;
    right: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* ======================================== 
   Categorized Customer Voices Section (Carousel) 
======================================== */
.lp-voice-tabs {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Carousel Container */
.lp-voice-carousel-container {
    margin-bottom: 40px;
    padding: 20px 0;
}

.lp-voice-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-color-primary, #A0522D) #f0f0f0;
    padding: 10px 0 20px 0;
}

.lp-voice-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.lp-voice-carousel-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.lp-voice-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--lp-color-primary, #A0522D);
    border-radius: 4px;
}

.lp-voice-carousel {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.lp-voice-carousel .lp-voice-card {
    flex: 0 0 calc(100% - 40px);
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
}

/* Carousel Display Logic - Show all carousels */
.lp-voice-carousel-container .lp-voice-carousel-wrapper {
    display: block;
}

/* Image Carousel */
.lp-image-carousel-container {
    margin-top: 60px;
    margin-bottom: 40px;
}

.lp-image-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-color-primary, #A0522D) #f0f0f0;
    padding: 10px 0 20px 0;
}

.lp-image-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.lp-image-carousel-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.lp-image-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--lp-color-primary, #A0522D);
    border-radius: 4px;
}

.lp-image-carousel {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.lp-image-carousel-item {
    flex: 0 0 calc(100% - 40px);
    min-width: 300px;
    max-width: 500px;
    scroll-snap-align: start;
}

.lp-image-carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .lp-voice-carousel .lp-voice-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }

    .lp-image-carousel-item {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lp-voice-carousel .lp-voice-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }

    .lp-image-carousel-item {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }
}/* End custom CSS */


