/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */


.announcement-bar-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}



/* ==========================================================================
   HERO SECTION 
   ========================================================================== */



.hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 2;
}

/* 鍏ㄥ缁濆瀹氫綅锛岃礋璐ｅ瀭鐩村竷灞€ */
.hero-body {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;       /* 鍨傜洿灞呬腑 */
    /* 绉婚櫎浜嗗悜涓婂亸绉荤殑 padding-bottom锛ofSeconds璁舵洿鎺ヨ繎瀹樼綉鐨勫瀭鐩村眳涓亸涓嬩綅缃?*/
}

/* 鏂囨鍖猴細宸︿晶锛屾渶澶у绾﹀乏鍗婂睆 */
.hero-body .hero-content {
    text-align: left !important;
    max-width: 48% !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
    transform: translateY(-20%) !important;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-body .hero-content .eyebrow {
    display: block !important;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px !important;
    text-shadow: none;
    text-align: left !important;
}

.hero-body .hero-content h1 {
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 32px !important;
    letter-spacing: -0.01em;
    text-align: left !important;
}

.hero-body .hero-copy {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: #4B5563;
    margin-top: 0 !important;
    margin-bottom: 36px !important;
    margin-left: 0 !important;       /* 寮哄埗瑕嗙洊 style.css 鐨?margin-left: auto */
    margin-right: 0 !important;      /* 寮哄埗瑕嗙洊 style.css 鐨?margin-right: auto */
    max-width: 440px;
    text-shadow: none;
    text-align: left !important;
}

.hero-body .hero-actions {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 !important;
}

.hero-body .btn-primary {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: none;
}
.hero-body .btn-primary.btn-pill {
    border-radius: 999px !important;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 600;
}
.hero-body .btn-primary:hover {
    background-color: #374151 !important;
}

.hero-body .btn-ghost {
    color: #111827 !important;
    border: 1px solid rgba(17, 24, 39, 0.2) !important;
}
.hero-body .btn-ghost:hover {
    background-color: rgba(17, 24, 39, 0.05) !important;
}

/* Mobile */
@media (max-width: 900px) {
    
    .hero-body .hero-content {
        max-width: 100% !important;
        transform: translateY(-10%) !important;
    }
    .hero-body .hero-content h1 {
        font-size: 34px !important;
    }
}

@media (max-width: 600px) {
    
    .hero-body .hero-content h1 {
        font-size: 28px !important;
    }
    .hero-body .hero-copy {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Placeholder Image Style
   ========================================================================== */
.placeholder-img {
    background: linear-gradient(135deg, #181818 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 2px, transparent 2px, transparent 8px);
}

/* Double Product Entry (Oura Ring Style) */
.product-entry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-card-immersive {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card-immersive:hover .product-card-bg {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
    pointer-events: none;
}

.product-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-card-text {
    flex: 1;
    color: #FFF;
    padding-right: 24px;
}

.badge-tag {
    display: inline-block;
    background: #FFF2E0; /* Accurate presale .badge-new background */
    color: #936729; /* Accurate presale .badge-new text */
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px; /* Increased from 12px to space out text */
}

.product-card-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px; /* Increased from 6px */
    color: #FFF;
    letter-spacing: 0;
    white-space: nowrap; /* Prevent wrapping */
    transition: color 0.3s ease; /* Ensure smooth transition back when mouse leaves */
}



.product-card-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6; /* Better readability */
}

.product-card-actions {
    display: flex;
    gap: 12px;
}

.btn-black,
.btn-light-gray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600; /* Bold text matching Image 2 */
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-black {
    background: #000000;
    color: #FFFFFF;
}

.btn-black:hover {
    background: #1C1C1E;
    transform: translateY(-1px);
}

.btn-light-gray {
    background: #E5E5EA; /* Apple-style light gray */
    color: #000000;
}

.btn-light-gray:hover {
    background: #D1D1D6;
    transform: translateY(-1px);
}


/* Workflow list overrides for Benefits left section */
.workflow-steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.workflow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.workflow-step-item .b-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EEF4FC;
    color: #2277FF;
}

.workflow-step-item h3 {
    margin-bottom: 4px;
    font-size: 18px;
}
.workflow-step-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}


/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.app-feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(25, 28, 29, 0.06);
}

.large-feature {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}

.app-visual {
    height: 280px;
    width: 100%;
}

.large-feature .app-visual {
    width: 55%;
    height: 380px;
}

.app-text {
    padding: 32px;
}

.large-feature .app-text {
    width: 45%;
    padding: 48px;
}

.app-text h3 {
    margin-bottom: 12px;
}

.app-text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}


/* ==========================================================================
   TESTIMONIALS (KOL) SECTION
   ========================================================================== */
.kol-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 24px;
    scrollbar-width: none;
    /* Left side is naturally aligned inside .container. Right side breaks out to viewport edge! */
    margin-right: calc(50% - 50vw);
    padding-right: 24px;
}

.kol-grid::-webkit-scrollbar,
#pro-notes-grid::-webkit-scrollbar {
    display: none;
}

.kol-card {
    position: relative;
    aspect-ratio: 9 / 16;
    height: auto;
    flex: 0 0 280px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
}

.kol-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kol-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.kol-card:hover .kol-bg {
    transform: scale(1.05);
}

.kol-top-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.kol-tag {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 6px 14px 6px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
}

.kol-tag img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.kol-plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111827;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.kol-card:hover .kol-plus-btn {
    transform: scale(1.05);
}

.kol-plus-btn i, .kol-plus-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: none;
}

.kol-bottom-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kol-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.kol-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kol-text-wrap p {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.kol-bottom-content h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    
    /* Hover color magic */
    color: #FFFFFF;
    background-image: linear-gradient(90deg, #00C9A7 0%, #2563EB 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.kol-card:hover .kol-bottom-content h3 {
    color: transparent;
    text-shadow: none;
}

@media (max-width: 1200px) {
    .kol-card {
        flex: 0 0 calc(25% - 12px);
    }
}
@media (max-width: 900px) {
    .kol-card {
        flex: 0 0 calc(33.333% - 11px);
    }
}
@media (max-width: 600px) {
    .kol-card {
        flex: 0 0 calc(75%);
    }
}




/* Responsive adjustments */
@media (max-width: 992px) {
    .product-entry-grid,
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    .large-feature {
        flex-direction: column;
    }
    .large-feature .app-visual,
    .large-feature .app-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-content h1 {
        font-size: 40px;
    }
    .hero-section .hero-content {
        padding-bottom: 100px;
    }
}

/* End of custom CSS */

/* ==========================================================================
   INTERACTIVE DEMO (WORKFLOW) PLAYER
   ========================================================================== */
.demo-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    background: transparent;
    border: none;
    padding: 0;
}
.demo-tab {
    display: inline-flex;
    align-items: center;
    background-color: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}
.demo-tab:hover {
    background-color: #E5E7EB;
}
.demo-tab.active {
    background-color: #F0F9FF;
    border-color: #3B82F6;
    color: #2563EB;
    box-shadow: none;
}

.demo-player-box {
    background-color: #E2F3F7;
    background-image: 
        radial-gradient(100% 120% at top left, #D1F4F9 0%, transparent 70%),
        radial-gradient(120% 120% at top right, #B2D4FC 0%, transparent 70%),
        radial-gradient(80% 100% at bottom left, #EAFBFD 0%, transparent 60%),
        radial-gradient(100% 100% at bottom right, #D8EAFC 0%, transparent 60%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    border: none;
    overflow: hidden;
    position: relative;
}

.demo-player-left {
    flex: 0 0 320px;
    transform: translateX(70px);
}

.apple-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.apple-feature-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
}

.apple-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    padding: 10px 20px 10px 10px;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #D2D2D7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D1D1F;
}
.pill-icon svg {
    width: 14px;
    height: 14px;
}

.pill-text {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
}

.apple-feature-desc {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #1D1D1F;
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    border: none;
    box-shadow: none;
}

.demo-feature-item.active .apple-feature-desc {
    opacity: 1;
    max-height: 200px;
    padding: 16px 20px;
    margin-top: 12px;
    transform: translateY(0);
}

.demo-player-right {
    flex: 1;
    position: relative;
    max-width: 600px;
    transform: translateX(70px);
}
.phone-mockup {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: none;
    border: 2px solid #FFFFFF;
    overflow: hidden;
    width: 280px;
    height: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}
.phone-notch {
    display: none;
}

.phone-screen {
    flex: 1;
    position: relative;
    background: linear-gradient(180deg, #E0F2FE 0%, #F8FAFC 100%);
    padding: 12px 16px 24px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}

.ios-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}
.ios-status-bar .icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.status-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

.demo-play-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    z-index: 10;
    transition: all 0.2s ease;
}
.demo-play-btn:hover {
    background: #F9FAFB;
    transform: scale(1.05);
}
.demo-play-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: none;
}

/* Animations inside mac-body */
.demo-scene {
    position: absolute;
    inset: 0;
    padding: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.demo-scene.active {
    opacity: 1;
}

/* Scene 1: Recording */
.record-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 119, 255, 0.1);
    border: 2px solid #2277FF;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-scene.active .record-circle {
    animation: pulse 2s infinite;
}
.record-circle i {
    color: #111827;
    width: 32px;
    height: 32px;
}
.waveform {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    height: 40px;
}
.waveform span {
    width: 4px;
    background: #2277FF;
    border-radius: 2px;
}
.demo-scene.active .waveform span {
    animation: wave 1s infinite ease-in-out;
}
.waveform span:nth-child(1) { height: 12px; animation-delay: 0.0s; }
.waveform span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 16px; animation-delay: 0.4s; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 119, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(34, 119, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 119, 255, 0); }
}
@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Scene 2: Transcribe */
.chat-line {
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 12px;
    max-width: 80%;
    transform: translateY(10px);
    opacity: 0;
    font-size: 16px;
}
.demo-scene.active .chat-line {
    animation: slideUp 0.4s forwards;
}
.chat-line:nth-child(1) { animation-delay: 0.2s; }
.chat-line:nth-child(2) { animation-delay: 1.2s; margin-left: auto; background: #2277FF; color: white; }
.chat-line:nth-child(3) { animation-delay: 2.2s; }
@keyframes slideUp {
    to { transform: translateY(0); opacity: 1; }
}

/* Scene 3: Summarize */
.search-mock {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.typing-text {
    border-right: 2px solid #2277FF;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    color: #111827;
    font-size: 16px;
}
.demo-scene.active .typing-text {
    animation: typing 1.5s steps(30, end) forwards, blink 0.75s step-end infinite;
    animation-delay: 0.5s;
}
.plan-header-icon.bg-gold {
    animation: float-icon 2.5s ease-in-out infinite alternate;
}

/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}
.video-modal.active .video-modal-content {
    transform: scale(1);
}
.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.video-modal-close:hover {
    background: rgba(255,255,255,0.4);
}
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container video, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-content.is-vertical {
    max-width: 450px;
    margin: 0 auto;
}
.video-modal-content.is-vertical .video-container {
    padding-top: 177.77%; /* 16:9 vertical aspect ratio */
}
.video-modal-content.is-vertical .video-container video {
    object-fit: cover;
}

/* ==========================================================================
   MEGAMENU DROPDOWN
   ========================================================================== */
.nav-dropdown-wrapper {
    position: static;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 16px;
    font-weight: 600;
}
.nav-backdrop {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: none;
    pointer-events: none;
}
.nav-dropdown-wrapper:hover .nav-backdrop {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 48px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: none;
    z-index: 999;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.nav-dropdown-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.megamenu-header {
    margin-bottom: 24px;
    text-align: left;
}
.site-nav a.megamenu-subtitle {
    padding: 0;
    background-color: transparent;
    color: #000000;
}
.site-nav a.megamenu-subtitle:hover {
    background-color: transparent !important;
    color: #111827 !important;
}
.megamenu-grid {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}
.megamenu-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 32px 24px;
    width: 300px;
    flex-shrink: 0;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}
.megamenu-card:hover {
    background: #F1F3F5;
}
.megamenu-img-wrap img {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.megamenu-card:hover .megamenu-img-wrap img {
    transform: scale(1.15);
}
.color-swatches {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 1px #E5E7EB;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.color-swatch:hover {
    transform: scale(1.1);
}
.color-swatch.active {
    box-shadow: 0 0 0 1.5px #111827;
}
@media (max-width: 900px) {
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 16px 0;
        display: none;
    }
    .nav-dropdown-wrapper:hover .nav-dropdown-menu {
        display: block;
        transform: none;
    }
    .megamenu-grid {
        flex-direction: column;
    }
}
@keyframes typing {
    to { width: 100%; }
}
@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #2277FF; }
}
.result-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(10px);
}
.demo-scene.active .result-card {
    animation: slideUp 0.4s forwards;
    animation-delay: 2.2s;
}
.skeleton-line {
    height: 12px;
    background: #E5E7EB;
    border-radius: 6px;
    margin-bottom: 8px;
}
.skeleton-line:last-child { margin-bottom: 0; width: 60%; }

@media (max-width: 900px) {
    .demo-player-box { flex-direction: column; padding: 24px; gap: 24px; }
    .demo-player-left { flex: none; width: 100%; display: flex; gap: 16px; justify-content: center; }
    .demo-feature-item { padding: 12px 0; font-size: 16px; }
}
@media (max-width: 600px) {
    .demo-tabs-container { flex-direction: column; }
    .demo-player-left { flex-wrap: wrap; }
}

/* ==========================================================================
   USER STORIES SECTION (CAROUSEL)
   ========================================================================== */
.user-stories-carousel-wrapper {
    width: 100%;
    margin-top: 32px;
}

.user-stories-track {
    display: flex;
    gap: 24px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 40px; /* Space for shadow */
}

.user-stories-track::-webkit-scrollbar {
    display: none;
}

.user-story-block {
    flex: 0 0 400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    background: #F3F4F6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.story-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.story-rating .star-icon {
    width: 20px;
    height: 20px;
    fill: #936729;
    color: #936729;
}

.story-large-quote {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #111827;
    margin-bottom: 24px;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.profile-title {
    font-size: 16px;
    color: #000000;
}

.story-rating .star-icon {
    width: 16px;
    height: 16px;
    fill: #FACC15;
    color: #FACC15;
    stroke: none; /* Make it look like solid SVG */
}

.story-author-name {
    font-size: 16px;
    color: #111827;
    margin-bottom: 16px;
}

.story-title {
    font-size: 15px;
    font-weight: 700;
    color: #4B5563;
    margin: 0 0 8px 0;
}

.story-desc {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.author-info-inline {
    display: flex;
    flex-direction: column;
}

.author-info-inline strong {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.author-info-inline span {
    font-size: 13px;
    color: #000000;
}

/* Adjust card width for smaller screens */
@media (max-width: 900px) {
    .user-story-card {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 600px) {
    .user-story-card {
        flex: 0 0 calc(85% - 12px);
        min-width: 280px;
    }
}

/* ==========================================================================
   STICKY GRADIENT TITLES (APPLE STYLE SWEEP)
   ========================================================================== */
.sticky-gradient-title {
    background-image: linear-gradient(
        90deg, 
        #00C9A7 0%,     /* Greener Teal/Cyan */
        #2563EB 33%,    /* Deepened Blue */
        currentColor 66%, 
        currentColor 100%
    );
    background-size: 300% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-gradient-title.gradient-locked {
    background-position: 0% 0;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
    background-color: #FFFFFF;
    padding-top: 64px;
    padding-bottom: 64px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: #111827;
}

.guarantee-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5px;
}

.guarantee-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
}

@media (max-width: 900px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}
@media (max-width: 600px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Bento Grid
   ========================================================================== */
.bento-benefits-section {
    padding: 80px 0;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto));
    gap: 20px;
    margin-top: 40px;
}

.bento-card {
    background: #f5f5f7; /* Apple style Gray Background */
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bento-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bento-tall {
    grid-row: span 2;
    padding-top: 32px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.bento-tall .bento-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.bento-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #1d1d1f;
    margin: 0 0 12px 0;
}

.bento-tall .bento-content h4 {
    font-size: 26px;
}

.bento-body {
    margin-top: 8px;
}

.bento-body h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 8px 0;
}

.bento-body p {
    font-size: 16px;
    line-height: 1.5;
    color: #86868b;
    margin: 0 0 8px 0;
}

.bento-body .small-note {
    font-size: 12px;
    color: #86868b;
    margin-top: 12px;
}

.bento-link {
    display: inline-block;
    margin-top: 8px;
    color: #0070f3;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.bento-link:hover {
    text-decoration: underline;
}

.bento-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.bento-payments .payment-badge {
    font-size: 11px;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .bento-tall {
        grid-row: span 1;
        grid-column: span 2;
    }
}
@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-tall {
        grid-column: span 1;
    }
}

/* ==========================================================================
   SCENARIOS (APPLE-STYLE GRID)
   ========================================================================== */
.scenario-grid-new {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    overflow-x: auto;
    padding-bottom: 21px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    
    /* Left side aligns naturally with container. 
       Right side uses negative margin to break out to the edge of the screen. */
    margin-right: calc(50% - 50vw);
    padding-right: max(24px, calc(50vw - 50%));
}

.scenario-grid-new::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.scenario-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 21px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #111827;
}

.nav-arrow:hover {
    background: #E5E7EB;
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.scenario-card-new {
    flex: 0 0 min(85vw, 340px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scenario-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #F3F4F6;
    transform: translateZ(0); /* Hardware acceleration for smoother scrolling/hover */
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenario-card-new:hover .scenario-image img {
    transform: scale(1.05);
}

.scenario-text-new {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    padding: 0 8px;
}

.scenario-text-new strong {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    /* Optional: adjustments for scenario cards on smaller screens if needed */
}
@media (max-width: 600px) {
    /* Optional: adjustments for scenario cards on smaller screens if needed */
}
/* ==========================================================================

   00. DESIGN TOKENS & GENERAL VARIABLES

   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');



:root {

    /* Brand Color: #2277FF as requested */

    --color-primary: #2277FF;

    --color-primary-hover: #0056FF;

    --color-secondary: var(--color-primary);

    --color-secondary-hover: var(--color-primary-hover);

    

    /* Layout Palette */

    --color-bg-base: #FFFFFF;

    --color-bg-alt: #F8F9FD;

    --color-bg-benefit: #EEF4FC;

    --color-text-main: #191C1D;

    --color-text-muted: #667085;

    --color-border: #E5E7EB;

    --color-border-hover: #D1D5DB;

    

    /* Highlight lines for pricing decorator */

    --color-line-pink: #FF2A85;

    --color-line-blue: #00A3FF;

    --color-line-yellow: #FFD600;

    

    /* Layout & Spacing */

    --max-width: 1128px;

    --rounded-block: 20px;

    --rounded-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.02);

    --shadow-md: 0 10px 30px rgba(16, 24, 40, 0.05);

    --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.08);

    

    /* Transitions */

    --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);

    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);

}



/* ==========================================================================

   01. CUSTOM TYPOGRAPHY TOKENS (INTER ONLY)

   ========================================================================== */

* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



html {

    scroll-behavior: smooth;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    color: var(--color-text-main);

    background-color: var(--color-bg-base);

    -webkit-font-smoothing: antialiased;

}



body {

    background-color: var(--color-bg-base);

    overflow-x: hidden;

}



/* Display (Hero, Result Page) */

.font-display, h1 {

    font-size: 32px;

    font-weight: 600;

    line-height: 40px;

    letter-spacing: -0.01em;

}



/* H1 (Page Title) */

.font-h1 {

    font-size: 24px;

    font-weight: 600;

    line-height: 32px;

    letter-spacing: -0.01em;

}



/* H2 (Section Title) */

.font-h2, h2 {

    font-size: 24px;

    font-weight: 600;

    line-height: 32px;

    letter-spacing: 0;

}



/* H3 (Card Title) */

.font-h3, h3 {

    font-size: 16px;

    font-weight: 600;

    line-height: 24px;

    letter-spacing: 0;

}



/* Body L (Reading text) */

.font-body-l {

    font-size: 16px;

    font-weight: 400;

    line-height: 24px;

    letter-spacing: 0;

}



/* Body (Regular text) */

.font-body, p {

    font-size: 16px;

    font-weight: 400;

    line-height: 23px;

    letter-spacing: 0;

}



/* Caption (Tags, auxiliary info) */

.font-caption {

    font-size: 12px;

    font-weight: 500;

    line-height: 18px;

    letter-spacing: 0.01em;

}



/* Micro (Very small tags) */

.font-micro {

    font-size: 10px;

    font-weight: 500;

    line-height: 16px;

    letter-spacing: 0.02em;

}



/* ==========================================================================

   02. UTILITIES & SYSTEM LAYOUTS

   ========================================================================== */

.container {

    width: min(100% - 48px, var(--max-width));

    margin: 0 auto;

}



.section {

    padding: 57.5px 0;

}



.section.alt-bg {

    background-color: var(--color-bg-alt);

}



.section-heading {

    text-align: center;

    max-width: 720px;

    margin: 0 auto 37px auto;

}



.section-heading .eyebrow {

    display: none;

    color: var(--color-primary);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    margin-bottom: 12px;

}



.section-heading h2 {

    margin-bottom: 11px;

}



.section-heading p {

    color: var(--color-text-muted);

}



/* ==========================================================================

   FEATURE MAP (1:1 IMAGE)

   ========================================================================== */

.feature-map-figure {

    width: 100%;

    margin: 0 auto;

}



/* ==========================================================================

   MEDIA LOGO MARQUEE

   ========================================================================== */

.media-marquee-section {

    padding: 72px 0 36px;

    overflow: hidden;

    background-color: #FFFFFF;

}



.media-logo-marquee {

    width: 100vw;

    margin-left: calc(50% - 50vw);

    overflow: hidden;

    padding: 24px 0;

    background-color: #FFFFFF;

}



.media-logo-track {

    display: flex;

    align-items: center;

    width: max-content;

    animation: mediaLogoScroll 38s linear infinite;

}



.media-logo-set {

    display: flex;

    align-items: center;

    gap: 140px;

    padding-right: 140px;

    flex: 0 0 auto;

}



.media-logo-set img {

    height: 100px;

    width: auto;

    flex: 0 0 auto;

    filter: none;

    opacity: 1;

}



.media-logo-set img[src*="slashgear."] {

    height: 48px;

}

@media (max-width: 768px) {

    .media-logo-set {

        gap: 72px !important;

        padding-right: 72px !important;

    }

}



@keyframes mediaLogoScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-20%);

    }

}



@media (prefers-reduced-motion: reduce) {

    .media-logo-track {

        animation: none;

    }



    .audience-item.active .audience-role-progress rect {

        animation: none !important;

        stroke-dashoffset: 0;

    }



    .audience-visual-image {

        transition: none !important;

    }



    .scenario-photo {

        transition: none !important;

    }

}



/* Buttons */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 24px;

    border-radius: var(--rounded-pill);

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    border: 0;

    cursor: pointer;

    transition: all var(--transition-fast);

}



.btn-primary {

    background-color: #FFFFFF;

    color: #1A1C1D;

    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);

    font-weight: 600;

}



.btn-primary:hover {

    background-color: #F3F4F6;

    transform: translateY(-1px);

}



.btn-secondary {

    background-color: #161B28;

    color: #FFFFFF;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}



.btn-secondary:hover {

    background-color: #0B0E17;

    transform: translateY(-1px);

}



.btn-outline {

    background-color: transparent;

    border: 1px solid var(--color-border);

    color: var(--color-text-main);

}



.btn-outline:hover {

    border-color: var(--color-border-hover);

    background-color: var(--color-bg-alt);

}



.btn-ghost {

    background-color: rgba(255, 255, 255, 0.1);

    color: #FFFFFF;

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(8px);

}



.btn-ghost:hover {

    background-color: rgba(255, 255, 255, 0.2);

    border-color: #FFFFFF;

}



.btn-large {

    padding: 14px 36px;

    font-size: 15px;

}



/* ==========================================================================
   03. OFFICIAL FLAT STICKY HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    transition: all var(--transition-normal);
}

.header-container {
    /* width: min(100% - 48px, var(--max-width)); removed to match homepage */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height var(--transition-normal);
}

.site-header.scrolled .header-container {
    height: 60px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 22px;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    /* gap: 12px; removed to match homepage */
}

.site-nav a {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 16px;
    font-weight: 600;
    /* padding: 8px 16px; removed to match homepage */
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.site-nav a:not(.menu-item-highlighted):hover {
    background-color: var(--color-text-main);
    color: #FFFFFF;
}

.site-nav a.menu-item-highlighted {
    background-color: #54f2f2;
    color: #000000;
}

.site-nav a.menu-item-highlighted:hover {
    background-color: #0B0E17;
    color: #FFFFFF;
}

.nav-item-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-new {
    background: linear-gradient(135deg, #FFEFBA 0%, #F6C879 100%);
    color: #784E1A;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    display: flex;
    align-items: center;
    color: var(--color-text-main);
    transition: color var(--transition-fast);
}

.header-icon:hover {
    color: var(--color-primary);
}

.header-icon svg {
    width: 20px;
    height: 20px;
}

.header-cta {
    padding: 6px 24px;
    font-size: 13px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: var(--rounded-pill);
}

/* ==========================================================================

   04. HERO SECTION (Original Video Background)

   ========================================================================== */

.hero-section {

    position: relative;

    height: 100vh;

    min-height: 600px;

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    text-align: left;

    color: #ffffff;

    overflow: hidden;

}



.hero-video {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%);

    z-index: 1;

}



.hero-shade {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 2;

}



.hero-content {

    position: relative;

    z-index: 3;

    max-width: 1000px;

    margin-left: auto;

    margin-right: auto;

    padding-bottom: 480px;

    transform: none;

    text-align: center;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

}



@media (min-width: 1900px) {

    .hero-content {

        max-width: 1400px;

        padding-bottom: 680px;

    }

    .hero-content h1 {

        white-space: nowrap;

    }

    .hero-br {

        display: none;

    }

}



.hero-content .eyebrow {

    font-size: 16px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    margin-bottom: 12px;

    color: #FFFFFF;

    opacity: 0.7;

}



.hero-content h1 {

    font-size: 62px;

    font-weight: 700;

    line-height: 1.13;

    margin-bottom: 16px;

    color: #FFFFFF;

}



.hero-copy {

    font-size: 18px;

    line-height: 28px;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.85);

    max-width: 580px;

    margin-left: auto;

    margin-right: auto;

}



.hero-actions {

    display: flex;

    justify-content: center;

    gap: 16px;

}



/* ==========================================================================

   05. BENEFITS SECTION (3 Price Columns + One-Piece Benefit Box)

   ========================================================================== */

.benefits-showcase {

    background: transparent;

    border: none;

    border-radius: 0;

    padding: 24px 0 19px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 64px;

    align-items: center;

    transform: translateX(30px);

}



#benefits.section {

    padding-top: 52.5px;

    padding-bottom: 60px;

}



#subscribe.section {

    padding-top: 40.5px;

    padding-bottom: 63px;

}



.benefits-showcase-left {

    display: flex;

    flex-direction: column;

    gap: 36px;

}



.benefits-showcase-left h2 {

    font-size: 24px;

    font-weight: 700;

    line-height: 32px;

    color: var(--color-text-main);

    margin: 0;

    letter-spacing: 0;

}



.benefits-icons-row {

    display: flex;

    gap: 32px;

    align-items: flex-start;

}



.benefit-icon-col {

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    position: relative;

}



.benefit-icon-col:not(:last-child)::after {

    content: '';

    position: absolute;

    right: -16px;

    top: 15%;

    bottom: 15%;

    width: 1px;

    background-color: rgba(25, 28, 29, 0.08);

}



.b-icon-box {

    color: var(--color-primary);

    display: flex;

    align-items: center;

    justify-content: center;

    width: 56px;

    height: 56px;

}



.b-icon-box svg {

    width: 52px;

    height: 52px;

    stroke-width: 1.5;

}



.b-icon-box img {

    width: 52px;

    height: 52px;

}



.benefit-icon-col p {

    font-size: 13px;

    font-weight: 600;

    line-height: 18px;

    color: var(--color-text-main);

    margin: 0;

}



.benefits-showcase-right {

    display: flex;

    justify-content: flex-end;

}



.benefits-showcase-right img {

    max-height: 430px;

    width: 100%;

    max-width: 500px;

    object-fit: contain;

    display: block;

}



/* ==========================================================================

   06. SUBSCRIBE SECTION

   ========================================================================== */

.subscribe-card {

    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);

    border-radius: 20px;

    padding: 48px 56px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 48px;

    align-items: center;

}



.subscribe-card-left h3 {

    font-size: 24px;

    font-weight: 700;

    line-height: 32px;

    color: var(--color-text-main);

    margin: 0;

    letter-spacing: -0.01em;

}



.subscribe-form {

    display: flex;

    flex-direction: column;

    gap: 12px;

    width: 100%;

}



.subscribe-input-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    background-color: #FFFFFF;

    border-radius: var(--rounded-pill);

    padding: 6px;

    border: 1px solid rgba(25, 28, 29, 0.08);

}



.subscribe-input-wrapper input {

    flex: 1;

    border: none;

    background: transparent;

    padding: 10px 16px;

    font-size: 16px;

    color: var(--color-text-main);

    outline: none;

}



.subscribe-input-wrapper input::placeholder {

    color: var(--color-text-muted);

}



.subscribe-submit {

    display: grid;

    place-items: center;

    width: 40px;

    height: 40px;

    background-color: #161B28;

    color: #FFFFFF;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    transition: background-color var(--transition-fast);

}



.subscribe-submit:hover {

    background-color: #0B0E17;

}



.subscribe-submit svg {

    width: 20px;

    height: 20px;

}



.subscribe-consent {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    font-size: 11px;

    color: var(--color-text-muted);

    line-height: 15px;

    cursor: pointer;

    user-select: none;

}



.subscribe-consent input[type="checkbox"] {

    margin-top: 2px;

    accent-color: #161B28;

}



.subscribe-consent a {

    color: var(--color-text-main);

    text-decoration: underline;

}



/* ==========================================================================

   07. TIMELINE SECTION

   ========================================================================== */

.timeline {

    position: relative;

    max-width: 1200px;

    margin: 0 auto;

    padding-left: 0;

    --timeline-node-center-y: 95px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    align-items: stretch;

}



.timeline::before {

    display: none;

}



.timeline-row {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    margin-bottom: 0;

    cursor: pointer;

    text-align: center;

}



.timeline-row::after {

    content: '';

    position: absolute;

    top: var(--timeline-node-center-y);

    left: 50%;

    width: calc(100% + 20px);

    height: 2px;

    background-image: repeating-linear-gradient(

        to right,

        rgba(102, 112, 133, 0.3) 0,

        rgba(102, 112, 133, 0.3) 6px,

        transparent 6px,

        transparent 14px

    );

    z-index: 0;

}



.timeline-row:last-child {

    margin-bottom: 0;

}



.timeline-row:last-child::after {

    display: none;

}



.timeline-date {

    position: static;

    width: 100%;

    text-align: center;

    padding-top: 0;

    margin-bottom: 24px;

    height: 48px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

}



.timeline-date span {

    display: block;

    font-size: 12px;

    line-height: 18px;

    color: #A0AAB5; /* Light gray for inactive */

    font-weight: 500;

    transition: color var(--transition-fast);

}



.timeline-date strong {

    display: block;

    font-size: 20px;

    font-weight: 600;

    color: #8C94A1; /* Gray for inactive */

    line-height: 26px;

    margin-top: 2px;

    transition: color var(--transition-fast);

}



.timeline-row:hover:not(.active) .timeline-date strong {

    color: #555E6D; /* Darker gray on hover */

}



.timeline-row:hover:not(.active) .timeline-date span {

    color: #8C94A1; /* Darker gray on hover */

}



.timeline-node {

    position: relative;

    left: auto;

    top: auto;

    width: 46px;

    height: 46px;

    margin: 0 auto 24px auto;

    background-color: #FFFFFF;

    border: 2px solid rgba(102, 112, 133, 0.3);

    border-radius: 50%;

    z-index: 2;

    display: grid;

    place-items: center;

    color: var(--color-text-main);

    transition: all var(--transition-normal);

}



.timeline-node svg {

    width: 20px;

    height: 20px;

    stroke-width: 1.8;

}



.timeline-card {

    min-height: 76px;

    background-color: #F5F6F8;

    border: 1px solid transparent;

    border-radius: 20px;

    padding: 16px 18px;

    box-shadow: none;

    transition: all var(--transition-normal);

    text-align: left;

    width: 100%;

    flex-grow: 1;

    display: flex;

    flex-direction: column;

}



.timeline-card p {

    color: var(--color-text-muted);

    font-size: 11px;

    font-weight: 600;

    text-transform: none;

    letter-spacing: 0;

    margin-bottom: 4px;

}



.timeline-card h3 {

    font-size: 16px;

    line-height: 20px;

    margin-bottom: 4px;

    min-height: 40px;

}



.timeline-card span {

    display: block;

    font-size: 12px;

    line-height: 18px;

    color: var(--color-text-muted);

}



.timeline-row.active .timeline-node {

    background-color: #2277FF;

    border-color: #2277FF;

    color: #FFFFFF;

    box-shadow: 0 0 0 4px rgba(34, 119, 255, 0.15);

}

.timeline-row.active .timeline-card {

    border-color: rgba(34, 119, 255, 0.65);

    background-color: rgba(34, 119, 255, 0.06);

    box-shadow: 0 8px 22px rgba(34, 119, 255, 0.08);

}



.timeline-row.active .timeline-date strong {

    color: var(--color-primary);

}



.timeline-row.active .timeline-date span {

    color: var(--color-primary);

    opacity: 0.8;

}



.timeline-row.active .timeline-card p,

.timeline-row.active .timeline-card span {

    color: var(--color-primary);

    opacity: 0.85;

}



.timeline-row.active .timeline-card h3 {

    color: var(--color-primary);

}



.timeline-card-split {

    display: grid;

    grid-template-columns: 1fr 1.25fr;

    gap: 24px;

    align-items: center;

}



.timeline-phase + .timeline-phase {

    border-left: 1px solid rgba(25, 28, 29, 0.08);

    padding-left: 24px;

}



.timeline-row.active .timeline-phase + .timeline-phase {

    border-left-color: rgba(255, 255, 255, 0.24);

}



/* ==========================================================================

   08. AI KEY MODULE

   ========================================================================== */

:root {

    --ckm-ink: #050B18;

    --ckm-soft: #5F6B7A;

    --ckm-blue: var(--color-primary);

    --ckm-ease: cubic-bezier(0.22, 1, 0.36, 1);

}



#workflow .section-heading {

    margin-bottom: 24px;

}



.ckm-module,

.ckm-module * {

    box-sizing: border-box;

}



.ckm-module {

    width: 100%;

    max-width: 1464px;

    height: 750px;

    overflow: visible;

    clip-path: inset(-150px -150px 0 -150px);

    position: relative;

    margin: 0 auto;

    color: var(--ckm-ink);

    background: transparent;

    box-shadow: none;

}



.ckm-tabs {

    position: absolute;

    top: 20px;

    left: 50%;

    z-index: 28;

    display: flex;

    gap: 12px;

    transform: translateX(-50%);

}



.ckm-tab {

    display: inline-flex;

    align-items: center;

    background-color: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-pill);

    padding: 10px 22px;

    font-size: 13px;

    font-weight: 600;

    color: var(--color-text-muted);

    cursor: pointer;

    transition: all var(--transition-fast);

}



.ckm-tab:hover {

    border-color: rgba(34, 119, 255, 0.35);

    color: var(--color-primary);

}



.ckm-tab.is-active {

    background-color: rgba(34, 119, 255, 0.06);

    border-color: rgba(34, 119, 255, 0.65);

    color: var(--color-primary);

    box-shadow: 0 8px 22px rgba(34, 119, 255, 0.08);

}



.ckm-command {

    position: absolute;

    top: 82px;

    left: 50%;

    z-index: 24;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 420px;

    max-width: 680px;

    padding: 14px 20px;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: var(--rounded-pill);

    background: rgba(255, 255, 255, 0.88);

    box-shadow: 0 12px 35px rgba(25, 54, 105, 0.05);

    backdrop-filter: blur(24px);

    transform: translateX(-50%);

}



.ckm-command-dot {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    color: var(--ckm-blue);

    margin-right: 4px;

}



@keyframes soundwave {

    0%, 100% {

        transform: scaleY(0.7);

    }

    50% {

        transform: scaleY(1.3);

    }

}



.record-icon-svg {

    overflow: visible;

}



.wave-line {

    transform-box: fill-box;

    transform-origin: center;

    animation: soundwave 1s ease-in-out infinite;

}



.wave-1, .wave-5 { animation-delay: 0s; }

.wave-2, .wave-4 { animation-delay: 0.2s; }

.wave-3 { animation-delay: 0.4s; }



.ckm-command span:last-child {

    color: #111827;

    font-size: 17px;

    font-weight: 680;

    white-space: nowrap;

}



.ckm-stage {

    position: absolute;

    top: 172px;

    left: 50%;

    z-index: 10;

    width: 1160px;

    height: 400px;

    perspective: 1500px;

    transform: translateX(-50%);

}



.ckm-slide {

    position: absolute;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    border: 1px solid rgba(255, 255, 255, 0.86);

    border-radius: 20px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));

    box-shadow: 0 30px 80px rgba(17, 48, 94, 0.13), 0 2px 10px rgba(17, 48, 94, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.56);

    opacity: 0;

    filter: blur(12px);

    backdrop-filter: blur(24px);

}



.ckm-slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: top;

    display: block;

    border-radius: inherit;

}



.ckm-slide img:not([src]),

.ckm-slide img[src=""] {

    opacity: 0;

}



.ckm-slide-main {

    top: 0;

    left: 270px;

    z-index: 6;

    width: 620px;

    transform: translateY(76px) scale(0.965);

    animation: ckm-mainIn 0.86s var(--ckm-ease) forwards;

}



.ckm-slide-left {

    top: 80px;

    left: 20px;

    z-index: 2;

    width: 400px;

    transform: translateY(88px) rotate(-7deg) scale(0.95);

    animation: ckm-leftIn 0.86s var(--ckm-ease) 0.12s forwards;

}



.ckm-slide-right {

    top: 80px;

    right: 20px;

    z-index: 2;

    width: 400px;

    transform: translateY(88px) rotate(7deg) scale(0.95);

    animation: ckm-rightIn 0.86s var(--ckm-ease) 0.17s forwards;

}







@keyframes ckm-mainIn {

    to {

        opacity: 1;

        filter: blur(0);

        transform: translateY(0) scale(1);

    }

}



@keyframes ckm-leftIn {

    to {

        opacity: 0.5;

        filter: blur(0);

        transform: translateY(0) rotate(-7deg) scale(1);

    }

}



@keyframes ckm-rightIn {

    to {

        opacity: 0.5;

        filter: blur(0);

        transform: translateY(0) rotate(7deg) scale(1);

    }

}



.ckm-slide-body {

    position: relative;

    height: 100%;

    padding: 34px 38px;

}



.ckm-kicker {

    color: #7B8797;

    font-size: 12px;

    font-weight: 760;

    text-transform: uppercase;

    letter-spacing: 0.12em;

}



.ckm-card-title {

    margin: 18px 0 0;

    font-size: 48px;

    line-height: 0.98;

    font-weight: 790;

    letter-spacing: 0;

}



.ckm-card-title.small {

    font-size: 38px;

}



.ckm-caption {

    margin-top: 16px;

    color: #687386;

    font-size: 18px;

    line-height: 1.38;

}



.ckm-pill {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 24px;

    padding: 9px 13px;

    border-radius: var(--rounded-pill);

    background: rgba(234, 242, 255, 0.95);

    color: var(--ckm-blue);

    font-size: 13px;

    font-weight: 760;

}



.ckm-orb {

    position: absolute;

    right: -54px;

    bottom: -70px;

    width: 340px;

    height: 250px;

    border-radius: 50%;

    background:

        radial-gradient(circle at 38% 25%, rgba(255, 205, 209, 0.56), transparent 35%),

        radial-gradient(circle at 56% 50%, rgba(74, 136, 255, 0.38), transparent 44%),

        linear-gradient(135deg, rgba(33, 109, 255, 0.05), rgba(33, 109, 255, 0.18));

}



.ckm-orb::before {

    content: "";

    position: absolute;

    top: 90px;

    left: -76px;

    width: 420px;

    height: 110px;

    background: linear-gradient(90deg, transparent, rgba(33, 109, 255, 0.22), rgba(33, 109, 255, 0.06), transparent);

    clip-path: polygon(0 67%, 18% 44%, 36% 64%, 52% 31%, 74% 59%, 100% 38%, 100% 100%, 0 100%);

}



.ckm-list {

    display: grid;

    gap: 18px;

    margin-top: 24px;

}



.ckm-row {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #172033;

    font-size: 16px;

    font-weight: 720;

}



.ckm-icon {

    display: grid;

    width: 34px;

    height: 34px;

    border-radius: 12px;

    place-items: center;

    background: #EDF4FF;

    color: var(--ckm-blue);

    font-size: 16px;

    font-weight: 800;

    flex: 0 0 auto;

}



.ckm-check {

    display: inline-grid;

    width: 20px;

    height: 20px;

    margin-right: 8px;

    border-radius: 50%;

    place-items: center;

    background: var(--ckm-blue);

    color: #FFFFFF;

    font-size: 12px;

}



.ckm-metric {

    position: absolute;

    right: 36px;

    bottom: 34px;

    display: grid;

    width: 112px;

    height: 112px;

    border-radius: 50%;

    place-items: center;

    background: conic-gradient(var(--ckm-blue) 0 72%, #E6EEFB 72% 100%);

}



.ckm-metric::after {

    content: "72%";

    display: grid;

    width: 72px;

    height: 72px;

    border-radius: 50%;

    place-items: center;

    background: #FFFFFF;

    font-size: 21px;

    font-weight: 780;

}



.ckm-device-zone {

    position: absolute;

    right: 0;

    bottom: -15px;

    left: 0;

    z-index: 99;

    height: 320px;

    overflow: visible;

    pointer-events: none;

    transform: translateZ(10px);

}



.ckm-device-shadow {

    position: absolute;

    bottom: 18px;

    left: 50%;

    width: 560px;

    height: 64px;

    border-radius: 50%;

    background: radial-gradient(ellipse, rgba(13, 28, 50, 0.25), transparent 68%);

    filter: blur(16px);

    transform: translateX(-50%);

}



.ckm-device-wrap {

    position: absolute;

    bottom: -400px;

    left: 50%;

    width: 650px;

    height: 650px;

    transform: translateX(-50%);

}



.ckm-device-img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    position: relative;

    z-index: 2;

    filter: drop-shadow(0 30px 45px rgba(7, 18, 38, 0.35));

}



.ckm-ai-hotspot {

    position: absolute;

    top: 25px;

    left: 413px;

    z-index: 5;

    width: 106px;

    height: 66px;

}



.ckm-ai-glow {

    position: absolute;

    inset: -7px -7px -13px -13px;

    border-radius: 100px;

    background: radial-gradient(ellipse, rgba(30, 144, 255, 0.85), rgba(30, 144, 255, 0.35) 44%, transparent 72%);

    animation: ckm-breath 2s ease-in-out infinite;

}



@keyframes ckm-breath {

    0%,

    100% {

        opacity: 0.5;

        transform: scale(0.9);

    }

    50% {

        opacity: 1;

        transform: scale(1.3);

    }

}



.ckm-ripple {

    position: absolute;

    top: calc(50% + 3px);

    left: calc(50% - 3px);

    width: 80px;

    height: 50px;

    border: 2px solid rgba(30, 144, 255, 0.95);

    box-shadow: 0 0 12px rgba(30, 144, 255, 0.8), inset 0 0 12px rgba(30, 144, 255, 0.8);

    border-radius: 100px;

    opacity: 0;

    transform: translate(-50%, -50%) scale(0.5);

}



.ckm-ripple-one {

    animation: ckm-ripple 1.9s infinite;

}



.ckm-ripple-two {

    animation: ckm-ripple 1.9s 0.6s infinite;

}



.ckm-ripple-three {

    animation: ckm-ripple 1.9s 1.2s infinite;

}



@keyframes ckm-ripple {

    0% {

        opacity: 1;

        border-width: 3px;

        box-shadow: 0 0 24px rgba(30, 144, 255, 1), inset 0 0 24px rgba(30, 144, 255, 1);

        transform: translate(-50%, -50%) scale(0.6);

    }

    100% {

        opacity: 0;

        border-width: 0px;

        box-shadow: 0 0 0px rgba(30, 144, 255, 0), inset 0 0 0px rgba(30, 144, 255, 0);

        transform: translate(-50%, -50%) scale(2.6);

    }

}



.ckm-finger-img {

    position: absolute;

    top: -5.7%;

    left: 55.1%;

    z-index: 20;

    width: 100%;

    height: auto;

    filter: drop-shadow(0 10px 18px rgba(88, 48, 30, 0.18));

}



@keyframes ckm-finger {

    0%,

    100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(14px, 14px);

    }

}



/* ==========================================================================

   09. SCENARIOS FOCUS CAROUSEL

   ========================================================================== */



.scenario-focus-gallery {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: clamp(12px, 1.4vw, 22px);

    overflow: visible;

    padding: 8px 0 0;

}



.scenario-photo {

    position: relative;

    flex: 1;

    height: 380px;

    min-width: 0;

    border-radius: 20px;

    overflow: hidden;

    border: 0;

    opacity: 0.65;

    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);

    cursor: pointer;

    transition: 

        flex 850ms cubic-bezier(0.16, 1, 0.3, 1),

        height 850ms cubic-bezier(0.16, 1, 0.3, 1),

        opacity 500ms ease,

        box-shadow 500ms ease;

}



.scenario-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}



.scenario-photo.active {

    flex: 3.2;

    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.12);

    opacity: 1;

    z-index: 2;

}



.scenario-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 50%, transparent 100%);

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    padding: 24px;

    color: #FFFFFF;

    pointer-events: none;

    opacity: 0.85;

    text-align: left;

    transition: opacity 0.5s ease;

}



.scenario-photo.active .scenario-overlay {

    opacity: 1;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.28) 60%, transparent 100%);

}



.scenario-meta {

    display: flex;

    flex-direction: column;

}



.scenario-meta h3 {

    margin: 0;

    font-size: 20px;

    font-weight: 700;

    color: #FFFFFF;

    letter-spacing: 0.02em;

    text-shadow: 0 2px 4px rgba(0,0,0,0.15);

    text-align: left;

}



.scenario-desc {

    margin: 0;

    font-size: 13.5px;

    line-height: 1.45;

    color: rgba(255, 255, 255, 0.82);

    max-width: 320px;

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transform: translateY(10px);

    text-align: left;

    transition: 

        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 

        max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), 

        margin-top 0.6s cubic-bezier(0.16, 1, 0.3, 1),

        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}



.scenario-photo.active .scenario-desc {

    opacity: 1;

    max-height: 120px;

    margin-top: 6px;

    transform: translateY(0);

    transition-delay: 0.12s;

}



/* ==========================================================================

   10. OUTPUT GALLERY (Add Eye-Catching Effects style)

   ========================================================================== */

.effects-container {

    background-color: var(--color-bg-alt);

    border-radius: var(--rounded-block);

    padding: 40px;

    border: 1px solid var(--color-border);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 24px;

}



.effects-preview {

    width: 100%;

    max-width: 100%;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

    border: 1px solid var(--color-border);

}



.effects-preview img {

    width: 100%;

    display: block;

    transition: opacity 0.2s ease;

}



.effects-tabs {

    display: flex;

    gap: 12px;

    margin-top: 24px;

    width: 100%;

    justify-content: center;

}



.effects-tab {

    display: inline-flex;

    align-items: center;

    background-color: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-pill);

    padding: 10px 22px;

    font-size: 13px;

    font-weight: 600;

    color: var(--color-text-muted);

    cursor: pointer;

    transition: all var(--transition-fast);

}



.effects-tab:hover {

    border-color: rgba(34, 119, 255, 0.35);

    color: var(--color-primary);

}



.effects-tab.active {

    background-color: rgba(34, 119, 255, 0.06);

    border-color: rgba(34, 119, 255, 0.65);

    color: var(--color-primary);

    box-shadow: 0 8px 22px rgba(34, 119, 255, 0.08);

}



/* ==========================================================================

   11. ACCESSORY ECOSYSTEM CARD GRID

   ========================================================================== */

.ecosystem-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}



.ecosystem-card {

    background-color: var(--color-bg-card);

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-block);

    padding: 24px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: transform var(--transition-normal);

}



.ecosystem-card:hover {

    transform: translateY(-2px);

}



.ecosystem-media {

    width: 100%;

    margin-bottom: 16px;

    background-color: var(--color-bg-alt);

    border-radius: 12px;

    padding: 16px;

}



.ecosystem-media img {

    width: 100%;

    display: block;

}



.ecosystem-info .color-tag {

    display: inline-block;

    padding: 2px 8px;

    border-radius: var(--rounded-pill);

    background-color: var(--color-bg-alt);

    font-size: 10px;

    font-weight: 600;

    color: var(--color-text-muted);

    margin-bottom: 8px;

}



.ecosystem-info h3 {

    font-size: 15px;

    margin-bottom: 6px;

}



.ecosystem-info .price {

    font-size: 16px;

    font-weight: 700;

    color: var(--color-primary);

}



/* ==========================================================================

   12. AUDIENCE ROTATOR

   ========================================================================== */

.audience-rotator {

    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);

    align-items: stretch;

    gap: clamp(42px, 5vw, 76px);

    margin-top: clamp(28px, 4vw, 56px);

}



.audience-visual {

    width: 100%;

    height: 100%;

    position: relative;

    background-color: transparent;

    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);

    mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);

}



.audience-visual-image {

    position: absolute;

    left: 8%;

    width: 84%;

    height: 56%;

    display: block;

    object-fit: cover;

    border-radius: 20px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);

    transition: opacity 450ms cubic-bezier(0.25, 1, 0.5, 1), transform 450ms cubic-bezier(0.25, 1, 0.5, 1), filter 450ms cubic-bezier(0.25, 1, 0.5, 1);

}



.audience-visual-image.active {

    top: 50%;

    transform: translateY(-50%) scale(1);

    z-index: 3;

    opacity: 1;

    filter: none;

    /* Square crop */

    height: auto !important;

    aspect-ratio: 1 / 1;

}



.audience-visual-image.prev {

    top: 0;

    transform: scale(0.9) translateY(0);

    transform-origin: top center;

    z-index: 1;

    opacity: 0.4;

    filter: blur(4px);

}



.audience-visual-image.next {

    bottom: 0;

    transform: scale(0.9) translateY(0);

    transform-origin: bottom center;

    z-index: 2;

    opacity: 0.4;

    filter: blur(4px);

}



.audience-visual-image.is-changing {

    opacity: 0.15;

}



.audience-visual-image.active.is-changing {

    transform: translateY(-50%) scale(0.92);

    filter: blur(2px);

}



.audience-visual-image.prev.is-changing {

    transform: scale(0.85) translateY(10px);

}



.audience-visual-image.next.is-changing {

    transform: scale(0.85) translateY(-10px);

}



.audience-list {

    display: flex;

    flex-direction: column;

    gap: 0;

    max-height: clamp(460px, 38vw, 580px);

    overflow-y: auto;

    padding: 90px 0;

    overscroll-behavior: auto;

    scrollbar-width: none;

    -ms-overflow-style: none;

    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 90px, #000 calc(100% - 90px), transparent 100%);

    mask-image: linear-gradient(to bottom, transparent 0, #000 90px, #000 calc(100% - 90px), transparent 100%);

}



.audience-list::-webkit-scrollbar {

    display: none;

    width: 0;

    height: 0;

}



.audience-item {

    display: block;

    flex: 0 0 auto !important;

    width: 100%;

    min-height: auto;

    box-sizing: border-box;

    padding: 22px 16px;

    border: 0;

    border-bottom: 1px dashed rgba(25, 28, 29, 0.08);

    border-radius: 0;

    background: transparent;

    color: var(--color-text-muted);

    text-align: left;

    cursor: pointer;

    transition: background-color var(--transition-fast), color var(--transition-fast);

}



.audience-item:last-child {

    border-bottom: none;

}



.audience-item:hover,

.audience-item:focus-visible {

    background-color: rgba(34, 119, 255, 0.035);

    color: var(--color-text-main);

}



.audience-item:focus-visible {

    outline: 2px solid rgba(34, 119, 255, 0.32);

    outline-offset: 2px;

}



.audience-copy {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 6px;

}



.audience-role-badge {

    position: relative;

    isolation: isolate;

    display: inline-flex;

    align-items: center;

    padding: 0 0 6px 0;

    border-radius: 0;

    min-height: auto;

    color: var(--color-text-muted);

    margin-bottom: 2px;

}



.audience-role-badge::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(to right, #0A69FE, #32E8D6);

    transform: scaleX(0);

    transform-origin: left;

    border-radius: var(--rounded-pill);

    opacity: 0;

    transition: opacity var(--transition-fast);

}



.audience-role {

    position: relative;

    z-index: 1;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;

    color: inherit;

    text-transform: uppercase;

    letter-spacing: 0.04em;

}



.audience-role-progress {

    display: none !important;

}



.audience-copy > strong {

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;

    color: var(--color-text-main);

    margin-top: 4px;

}



.audience-copy > span:last-child {

    display: block;

    max-width: 440px;

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-muted);

    margin-top: 4px;

}



.audience-item.active {

    background-color: transparent;

    color: var(--color-text-main);

}



.audience-item.active .audience-role-badge {

    color: var(--color-primary);

}



.audience-item.active .audience-role-badge::after {

    opacity: 1;

    animation: audienceLineProgress 5.4s linear forwards;

}



@keyframes audienceLineProgress {

    from {

        transform: scaleX(0);

    }

    to {

        transform: scaleX(1);

    }

}



/* ==========================================================================

   13. COMPLIANCE & COMPARISON TABLE ( 忡j i?

   ========================================================================== */

.compliance-badges-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 0 8px 0;
    background: transparent;
}

.compliance-badge-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .compliance-badges-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .compliance-badge-item {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        gap: 8px;
    }
    .compliance-badge-item img {
        width: 56px !important;
        height: 56px !important;
    }
}

.compliance-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}



.compliance-card {

    background-color: #F8FAFC;

    border: none;

    border-radius: var(--rounded-block);

    padding: 22px 24px;

    text-align: center;

    box-shadow: none;

}



.compliance-card img {

    height: 108px;

    margin: 0 auto 20px auto;

}



.compliance-card h3 {

    margin-bottom: 4px;

    font-size: 20px;

    font-weight: 700;

}



.compliance-card p {

    font-size: 12px;

    color: var(--color-primary);

    font-weight: 600;

    margin-bottom: 8px;

}



.compliance-card span {

    font-size: 13px;

    color: var(--color-text-muted);

}



.comparison-scroll-wrapper {

    width: 100%;

    overflow-x: auto;

    scrollbar-width: thin;

    -webkit-overflow-scrolling: touch;

    margin-bottom: 20px;

    padding: 10px 4px;

}

.comparison-scroll-wrapper::-webkit-scrollbar {

    -webkit-appearance: none;

    height: 8px;

}

.comparison-scroll-wrapper::-webkit-scrollbar-track {

    background: transparent;

}

.comparison-scroll-wrapper::-webkit-scrollbar-thumb {

    background-color: rgba(0, 0, 0, 0.15);

    border-radius: 10px;

}



.comparison-cards-container {

    display: grid;

    grid-template-columns: 1.25fr 1fr 1fr 1fr;

    gap: 16px;

    align-items: stretch;

    width: 100%;

    min-width: 950px;

}



.comparison-features-col {

    display: flex;

    flex-direction: column;

}



.comp-feature-header {

    height: 140px;

    margin-top: 2px;

    box-sizing: border-box;

    display: flex;

    align-items: flex-end;

    padding-bottom: 24px;

    font-size: 15px;

    font-weight: 700;

    color: var(--color-text-main);

    border-bottom: 2px solid var(--color-border);

}



.comp-feature-cell {

    height: 40px;

    display: flex;

    align-items: center;

    font-size: 16px;

    font-weight: 600;

    color: var(--color-text-main);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    padding-right: 12px;

}



.comp-feature-cell:nth-child(even) {

    background-color: rgba(0, 0, 0, 0.015);

}



.comparison-card {

    background-color: var(--color-bg-card);

    border: 1px solid var(--color-border);

    border-radius: 20px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;

}



.comparison-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);

}



.comparison-card.featured {

    border: 2px solid var(--color-primary);

    box-shadow: 0 8px 30px rgba(34, 119, 255, 0.08);

}



.comparison-card.featured:hover {

    box-shadow: 0 16px 45px rgba(34, 119, 255, 0.16);

}



.comp-card-header {

    height: 140px;

    box-sizing: border-box;

    padding: 20px 12px 16px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-bottom: 2px solid var(--color-border);

    background-color: var(--color-bg-alt);

    text-align: center;

}



.comparison-card.featured .comp-card-header {

    background-color: rgba(34, 119, 255, 0.03);

    border-bottom-color: rgba(34, 119, 255, 0.15);

}



.comp-badge {

    display: inline-block;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    padding: 4px 10px;

    border-radius: 100px;

    line-height: 1;

}



.comparison-card.featured .comp-badge {

    background-color: var(--color-primary);

    color: #FFFFFF;

}



.comp-badge.competitor {

    background-color: rgba(0, 0, 0, 0.05);

    color: var(--color-text-muted);

}



.comp-card-icon {

    height: 48px;

    width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 8px;

    color: #000000;

}



.comp-card-icon svg {

    width: 48px;

    height: 48px;

}



.comp-card-title {

    font-size: 13px;

    font-weight: 700;

    color: var(--color-text-main);

    margin: 0;

}



.comparison-card.featured .comp-card-title {

    color: var(--color-primary);

}



.comp-val-cell {

    font-size: 16px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    text-align: center;

}



.comp-val-cell:last-child {

    border-bottom: 0;

}



.comp-val-cell:nth-child(even) {

    background-color: rgba(0, 0, 0, 0.015);

}



.comparison-card.featured .comp-val-cell.yes {

    background-color: rgba(34, 119, 255, 0.015);

}



.comparison-card.featured .comp-val-cell:nth-child(even).yes {

    background-color: rgba(34, 119, 255, 0.035);

}



.comparison-card.featured .comp-val-cell {

    font-weight: 700;

}



/* Check / Cross icon spans used in both comparison tables */

.check-icon,

.cross-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    vertical-align: middle;

}



.check-icon {

    background-color: var(--color-primary);

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");

    background-size: 11px 11px;

    background-repeat: no-repeat;

    background-position: center;

}



.cross-icon::after {

    content: 'A?;

    font-size: 13px;

    color: #8C94A1;

    line-height: 1;

    font-weight: 500;

}



/* Center all non-first columns in comparison tables */

.comparison-table th:not(:first-child) td,

.plan-table th:not(:first-child),

.plan-table td:not(:first-child) {

    text-align: center;

}



/* ==========================================================================

   14. INTERACTIVE PRE-SALE DEPOSIT CONFIGURATOR

   ========================================================================== */

.configurator-card {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    background-color: var(--color-bg-card);

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-block);

    overflow: hidden;

    box-shadow: var(--shadow-lg);

}



.configurator-visuals {

    background-color: var(--color-bg-alt);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 48px;

    border-right: 1px solid var(--color-border);

}



.configurator-visual-wrapper {

    width: 100%;

    max-width: 380px;

}



.configurator-visual-wrapper img {

    width: 100%;

    display: block;

    transition: transform 0.5s ease;

}



.configurator-widget {

    padding: 40px;

}



.widget-block {

    margin-bottom: 24px;

}



.widget-block:last-of-type {

    margin-bottom: 0;

}



.block-label {

    display: block;

    font-size: 12px;

    font-weight: 600;

    color: var(--color-text-muted);

    text-transform: uppercase;

    letter-spacing: 0.05em;

    margin-bottom: 12px;

}



/* Color Options */

.color-picker {

    display: flex;

    gap: 12px;

}



.color-option-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    border: 2px solid transparent;

    background-color: transparent;

    cursor: pointer;

    transition: border-color var(--transition-fast);

}



.color-option-btn.active {

    border-color: var(--color-text-main);

}



.color-circle {

    width: 26px;

    height: 26px;

    border-radius: 50%;

    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);

}



.color-circle.black { background-color: #1a1c1e; }

.color-circle.burgundy { background-color: #7b1227; }

.color-circle.silver { background-color: #d1d5db; }



/* Package Selector */

.pack-choices {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.pack-choice-card {

    border: 1px solid var(--color-border);

    border-radius: 12px;

    padding: 16px;

    cursor: pointer;

    transition: all var(--transition-fast);

    position: relative;

}



.pack-choice-card:hover {

    border-color: var(--color-border-hover);

}



.pack-choice-card.active {

    border-color: var(--color-primary);

    background-color: rgba(34, 119, 255, 0.02);

}



.pack-choice-card input[type="radio"] {

    position: absolute;

    opacity: 0;

}



.pack-choice-label {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

}



.pack-left-side {

    display: flex;

    gap: 12px;

    align-items: center;

}



.pack-radio-indicator {

    width: 18px;

    height: 18px;

    border: 2px solid var(--color-border);

    border-radius: 50%;

    display: inline-block;

    position: relative;

}



.pack-choice-card.active .pack-radio-indicator {

    border-color: var(--color-primary);

}



.pack-choice-card.active .pack-radio-indicator::after {

    content: '';

    position: absolute;

    inset: 3px;

    background-color: var(--color-primary);

    border-radius: 50%;

}



.pack-info-block {

    display: flex;

    flex-direction: column;

}



.pack-title {

    font-size: 16px;

    font-weight: 600;

}



.pack-save-badge {

    align-self: flex-start;

    padding: 2px 8px;

    background-color: rgba(248, 58, 58, 0.1);

    color: #F83A3A;

    font-size: 10px;

    font-weight: 700;

    border-radius: var(--rounded-pill);

    margin-bottom: 4px;

}



.pack-right-side {

    text-align: right;

}



.pack-tag {

    display: inline-block;

    padding: 2px 8px;

    background-color: var(--color-text-main);

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 700;

    border-radius: var(--rounded-pill);

    margin-bottom: 4px;

}



.pack-price {

    font-size: 16px;

    font-weight: 700;

    display: block;

}



.pack-original {

    font-size: 12px;

    color: var(--color-text-muted);

    text-decoration: line-through;

}



.pack-color-detail {

    font-size: 12px;

    color: var(--color-text-muted);

}



/* Stepper adjustments */

.quantity-selector-block {

    display: flex;

    gap: 16px;

    align-items: center;

    border-top: 1px solid var(--color-border);

    padding-top: 20px;

}



.qty-stepper-inner {

    display: flex;

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-pill);

    overflow: hidden;

}



.qty-btn {

    width: 36px;

    height: 36px;

    background-color: transparent;

    border: 0;

    cursor: pointer;

    font-weight: 600;

}



.qty-btn:hover {

    background-color: var(--color-bg-alt);

}



.qty-input {

    width: 44px;

    text-align: center;

    border: 0;

    border-left: 1px solid var(--color-border);

    border-right: 1px solid var(--color-border);

    font-size: 16px;

    font-weight: 600;

    background: transparent;

    outline: 0;

}



.qty-coupon-badge {

    font-size: 12px;

    color: var(--color-primary);

    font-weight: 500;

}



/* Price summary */

.price-summary-block {

    background-color: var(--color-bg-alt);

    border-radius: 12px;

    padding: 20px;

}



.summary-total-row {

    display: flex;

    justify-content: space-between;

    align-items: baseline;

    margin-bottom: 8px;

}



.total-label {

    font-size: 16px;

    font-weight: 600;

}



.total-prices {

    display: flex;

    align-items: baseline;

    gap: 8px;

}



.total-value {

    font-size: 24px;

    font-weight: 700;

    color: var(--color-primary);

}



.total-original {

    font-size: 16px;

    color: var(--color-text-muted);

    text-decoration: line-through;

}



.summary-banner-row {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    margin-bottom: 8px;

}



.per-unit-badge {

    padding: 2px 6px;

    background-color: var(--color-text-main);

    color: #FFFFFF;

    font-size: 9px;

    font-weight: 700;

    border-radius: 4px;

}



.per-unit-calculation {

    color: var(--color-text-main);

    font-weight: 600;

}



.summary-bulk-info {

    font-size: 12px;

    color: var(--color-text-muted);

}



.widget-actions {

    display: flex;

    gap: 16px;

    margin-top: 24px;

}



/* ==========================================================================

   15. PLANS TABLE SECTION (脫籸0墾弾X灇]嶸梇?

   ========================================================================== */

.plan-table-wrap {

    background-color: var(--color-bg-card);

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-block);

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;

    padding-bottom: 10px;

}

.plan-table-wrap::-webkit-scrollbar {

    -webkit-appearance: none;

    height: 8px;

}

.plan-table-wrap::-webkit-scrollbar-track {

    background: transparent;

}

.plan-table-wrap::-webkit-scrollbar-thumb {

    background-color: rgba(0, 0, 0, 0.15);

    border-radius: 10px;

}



.plan-table {

    width: 100%;

    min-width: 900px;

    border-collapse: collapse;

    text-align: left;

}



.plan-table th,

.plan-table td {

    padding: 16px;

    border-bottom: 1px dashed rgba(0,0,0,0.08);

    font-size: 13px;

    vertical-align: top;

}



.plan-table th {

    background-color: var(--color-bg-alt);

    font-weight: 600;

    color: var(--color-text-main);

}



.plan-table th span {

    display: block;

    font-size: 11px;

    color: var(--color-text-muted);

    font-weight: 400;

    margin-top: 4px;

}



.plan-table th.elite {

    background-color: rgba(34, 119, 255, 0.05);

}



.plan-table th.elite small {

    display: inline-block;

    padding: 2px 6px;

    background-color: var(--color-primary);

    color: #FFFFFF;

    font-size: 9px;

    font-weight: 700;

    border-radius: 4px;

}



.plan-table td small {

    display: block;

    font-size: 11px;

    color: var(--color-text-muted);

    margin-top: 2px;

}



.plan-table td span {

    font-size: 11px;

    color: var(--color-text-muted);

}



.price-val {

    font-size: 16px;

    font-weight: 800;

    color: var(--color-text-main);

}



.price-val.text-gold {

    color: #191c1d;

}



.text-gold {

    color: #a37a28;

}



.plan-table tr.group-row td {

    background-color: var(--color-bg-alt);

    color: var(--color-text-muted);

    font-weight: 700;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    padding: 6px 16px;

}



@keyframes highlightPulse {

    0% { background-color: rgba(34, 119, 255, 0.06); }

    50% { background-color: rgba(34, 119, 255, 0.16); }

    100% { background-color: rgba(34, 119, 255, 0.06); }

}



.plan-table tr.highlight-row td {

    background-color: rgba(34, 119, 255, 0.12);

    font-weight: 700;

    color: var(--color-primary);

    border-top: 1px solid rgba(34, 119, 255, 0.2);

    border-bottom: 1px solid rgba(34, 119, 255, 0.2);

    animation: highlightPulse 2.5s infinite ease-in-out;

}



.plan-table tr.highlight-row td:first-child {

    color: var(--color-primary);

    box-shadow: inset 6px 0 0 var(--color-primary);

}



.plan-footnote {

    font-size: 12px;

    color: var(--color-text-muted);

    margin-top: 16px;

    text-align: center;

}



/* ==========================================================================

   16. FAQ SECTION & ACCORDIONS (脫籸0墿弾V梇?

   ========================================================================== */

.faq-list {

    max-width: 100%;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.faq-item {

    border-bottom: 1px dashed rgba(0,0,0,0.08);

    padding-bottom: 16px;

}



.faq-item button {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    background: transparent;

    border: 0;

    padding: 8px 0;

    cursor: pointer;

    text-align: left;

    color: #667085;

    font-size: 15px;

    font-weight: 600;

    transition: color var(--transition-fast);

}



.faq-item button:hover,

.faq-item.open button {

    color: #161B28;

}



.faq-item button svg {

    width: 18px;

    height: 18px;

    color: var(--color-text-muted);

    transition: transform var(--transition-normal);

}



.faq-answer {

    padding-top: 8px;

    font-size: 16px;

    color: var(--color-text-muted);

    line-height: 22px;

    display: none;

}



.faq-item.open button svg {

    transform: rotate(180deg);

    color: #161B28;

}



.faq-item.open .faq-answer {

    display: block;

}



/* ==========================================================================

   17. SITE FOOTER

   ========================================================================== */

.site-footer {

    background-color: #121212;

    border-top: 1px solid #1f1f1f;

    padding: 80px 0 40px 0;

    color: #a3a3a3;

    font-family: inherit;

}



.footer-content-wrap {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 24px;

}



.footer-top-grid {

    display: grid;

    grid-template-columns: 2.2fr 1fr 1.35fr 1.05fr 1.1fr 1.25fr 1.25fr;

    gap: 28px;

    margin-bottom: 48px;

}



.footer-col h3 {

    font-size: 16px;

    font-weight: 700;

    color: #ffffff;

    margin-top: 0;

    margin-bottom: 24px;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}



.footer-col ul {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.footer-col ul a {

    font-size: 13.5px;

    color: #a3a3a3;

    text-decoration: none;

    transition: color 0.25s ease;

}



.footer-col ul a:hover {

    color: #ffffff;

}



/* Newsletter Column */

.newsletter-col {

    display: flex;

    flex-direction: column;

}



.footer-newsletter-title {

    font-size: 15px;

    font-weight: 600;

    color: #ffffff;

    margin-top: 0;

    margin-bottom: 18px;

    line-height: 1.45;

}



.footer-newsletter-form {

    display: flex;

    position: relative;

    max-width: 320px;

    margin-bottom: 24px;

}



.footer-newsletter-form input[type="email"] {

    width: 100%;

    padding: 12px 52px 12px 16px;

    background-color: #1a1a1a;

    border: 1px solid #2e2e2e;

    border-radius: 8px;

    color: #ffffff;

    font-size: 16px;

    outline: none;

    transition: border-color 0.25s ease;

}



.footer-newsletter-form input[type="email"]:focus {

    border-color: rgba(34, 119, 255, 0.65);

}



.footer-newsletter-form button {

    position: absolute;

    right: 6px;

    top: 50%;

    transform: translateY(-50%);

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background-color: #2b2b2b;

    border: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    cursor: pointer;

    transition: background-color 0.25s ease;

}



.footer-newsletter-form button:hover {

    background-color: #3b3b3b;

}



.footer-newsletter-form button svg {

    width: 15px;

    height: 15px;

    stroke-width: 2.5;

}



/* Social icons */

.footer-socials {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    align-items: center;

}



.footer-socials a {

    color: #a3a3a3;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: color 0.25s ease;

}



.footer-socials a:hover {

    color: #ffffff;

}



.social-svg {

    width: 20px;

    height: 20px;

    fill: currentColor;

}



.footer-socials a[aria-label="Instagram"] svg {

    fill: none;

}



/* Customer Service Column */

.footer-email-label {

    font-size: 12px;

    color: #666666;

    margin: 0 0 4px 0;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}



.footer-email-link {

    font-size: 16px;

    font-weight: 600;

    color: #a3a3a3;

    text-decoration: none;

    border-bottom: 1.5px dashed #444444;

    padding-bottom: 2px;

    transition: color 0.25s ease, border-color 0.25s ease;

    display: inline-block;

    margin-bottom: 24px;

}



.footer-email-link:hover {

    color: #ffffff;

    border-color: #ffffff;

}



.footer-follow-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 20px;

    border-radius: 20px;

    background-color: #5844ff;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: background-color 0.25s ease, transform 0.2s ease;

    width: fit-content;

}



.footer-follow-btn:hover {

    background-color: #4a34ea;

    transform: translateY(-1px);

}



.footer-follow-btn svg {

    width: 14px;

    height: 14px;

    stroke-width: 2.5;

}



/* Divider & Bottom area */

.footer-divider {

    border: 0;

    border-top: 1px solid #1f1f1f;

    margin: 40px 0 28px 0;

}



.footer-bottom-flex {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 24px;

}



.footer-copyright-area {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.copyright-text {

    font-size: 12px;

    color: #666666;

    margin: 0;

}



.footer-policy-links {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

}



.footer-policy-links a {

    font-size: 12px;

    color: #666666;

    text-decoration: none;

    transition: color 0.25s ease;

}



.footer-policy-links a:hover {

    color: #a3a3a3;

}



.footer-policy-links span {

    font-size: 10px;

    color: #333333;

}



/* Payment Icons */
.footer-payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-payment-icons img {
    width: 38px;
    height: 24px;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}



/* ==========================================================================

   18. BOOKING MODAL DIALOG

   ========================================================================== */

.modal-overlay {

    position: fixed;

    inset: 0;

    background-color: rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(8px);

    z-index: 200;

    display: grid;

    place-items: center;

    opacity: 0;

    pointer-events: none;

    transition: opacity var(--transition-normal);

}



.modal-overlay.open {

    opacity: 1;

    pointer-events: auto;

}



.modal-card {

    background-color: var(--color-bg-card);

    border: 1px solid var(--color-border);

    border-radius: var(--rounded-block);

    padding: 32px;

    width: min(100% - 32px, 480px);

    box-shadow: var(--shadow-lg);

    position: relative;

    transform: translateY(20px);

    transition: transform var(--transition-normal);

}



.modal-overlay.open .modal-card {

    transform: translateY(0);

}



.modal-close-btn {

    position: absolute;

    top: 16px;

    right: 16px;

    width: 32px;

    height: 32px;

    border-radius: 50%;

    border: 1px solid var(--color-border);

    background-color: #FFFFFF;

    cursor: pointer;

    font-size: 18px;

    display: grid;

    place-items: center;

    transition: all var(--transition-fast);

}



.modal-close-btn:hover {

    background-color: var(--color-bg-alt);

}



.modal-header {

    margin-bottom: 24px;

}



.modal-header h2 {

    font-size: 18px;

    margin-bottom: 8px;

}



.modal-header p {

    font-size: 13px;

    color: var(--color-text-muted);

}



.modal-form {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.form-group {

    display: flex;

    flex-direction: column;

    gap: 6px;

}



.form-group label {

    font-size: 12px;

    font-weight: 600;

    color: var(--color-text-main);

}



.form-group input {

    padding: 10px 14px;

    border: 1px solid var(--color-border);

    border-radius: 8px;

    font-size: 16px;

    outline: 0;

}



.form-group input:focus {

    border-color: var(--color-secondary);

}



.price-breakdown {

    background-color: var(--color-bg-alt);

    border-radius: 8px;

    padding: 16px;

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.pb-row {

    display: flex;

    justify-content: space-between;

    font-size: 12px;

}



.pb-row strong {

    font-weight: 600;

}



.pb-row.text-success {

    color: var(--color-primary);

}



.pb-row.text-muted {

    color: var(--color-text-muted);

}



/* ==========================================================================

   19. RESPONSIVE / MEDIA QUERIES

   ========================================================================== */

@media (max-width: 1024px) {

    .site-header {

        padding: 12px 20px;

    }



    .ckm-module {

        height: 750px;

    }



    .ckm-stage {

        width: 940px;

    }



    .ckm-slide-main {

        left: 240px;

        width: 460px;

    }



    .ckm-slide-left {

        left: 80px;

        width: 300px;

    }



    .ckm-slide-right {

        right: 80px;

        width: 300px;

    }



    .ckm-card-title {

        font-size: 38px;

    }



    .ckm-card-title.small {

        font-size: 30px;

    }



    .audience-rotator {

        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);

        gap: 44px;

    }



    .audience-copy strong {

        font-size: 17px;

    }



    .audience-copy > span:last-child {

        font-size: 13px;

    }



    .footer-top-grid {

        grid-template-columns: 1fr 1fr;

        gap: 36px;

    }

}





/* Elite Column Highlighting */

.plan-table th:nth-child(4),

.plan-table td:nth-child(4) {

    background-color: rgba(250, 231, 207, 0.15) !important;

    border-left: 1.5px solid #FAE7CF !important;

    border-right: 1.5px solid #FAE7CF !important;

}

.plan-table th:nth-child(4) {

    border-top: 1.5px solid #FAE7CF !important;

    border-radius: 20px 20px 0 0 !important;

    position: relative;

}

.plan-table tr:last-child td:nth-child(4) {

    border-bottom: 1.5px solid #FAE7CF !important;

    border-radius: 0 0 20px 20px !important;

}



.plan-table td:nth-child(4) small {

    color: #a37a28 !important;

}





/* Elite Header Specifics */

.best-value-badge {

    position: absolute;

    top: -16px;

    right: 16px;

    background: #FAE7CF;

    color: #191c1d;

    font-size: 13.2px;

    font-weight: 800;

    padding: 6px 15px;

    border-radius: 100px;

    text-transform: uppercase;

    box-shadow: 0 4px 10px rgba(250, 231, 207, 0.4);

}

.elite-badges {

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 12px;

    align-items: center;

}

.elite-pill {

    background: #FAE7CF;

    color: #191c1d;

    font-size: 10px;

    font-weight: 700;

    padding: 4px 10px;

    border-radius: 100px;

    white-space: nowrap;

}

@media (max-width: 768px) {

    .section {

        padding: calc(86.25px * 0.525) 0;

    }



    /* Header mobile navigation drawer */

    .site-nav {

        position: fixed;

        top: 72px;

        left: 16px;

        right: 16px;

        background-color: #FFFFFF;

        border: 1px solid var(--color-border);

        border-radius: 12px;

        padding: 24px;

        flex-direction: column;

        gap: 16px;

        align-items: center;

        box-shadow: var(--shadow-md);

        display: none;

    }

    

    .site-nav.open {

        display: flex;

    }

    

    .nav-toggle {

        display: flex;

    }

    

    .nav-cta {

        display: none;

    }

    

    /* Hero video section spacing */

    .hero-section {

        height: auto;

        padding-top: 0px;

        padding-bottom: 80px;

        align-items: center;

        justify-content: center;

        text-align: center;

    }

    

    .hero-content {

        max-width: 100%;

        padding-bottom: 0;

        margin: -70px auto 0 auto;

        text-shadow: none;

        transform: none;

    }

    

    .hero-content h1 {

        font-size: 28px;

        line-height: 1.25;

    }

    

    .hero-copy {

        font-size: 13px;

        line-height: 1.5;

        margin-bottom: 20px;

        padding: 0 10px;

    }

    

    .hero-actions {

        justify-content: center;

        gap: 12px;

    }

    

    .hero-actions .btn {

        padding: 12px 20px;

        font-size: 16px;

    }

    

    /* Benefits Showcase stack */

    .benefits-showcase {

        grid-template-columns: 1fr;

        padding: 24px 0;

        text-align: center;

        gap: 40px;

        transform: none;

    }

    

    .benefits-showcase-left {

        align-items: center;

        gap: 28px;

    }

    

    .benefits-icons-row {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 32px 12px;

        width: 100%;

        align-items: start;

    }

    

    .benefit-icon-col {

        align-items: center;

        width: 100%;

        text-align: center;

    }

    

    .benefit-icon-col:not(:last-child)::after {

        display: none;

    }

    

    .benefits-showcase-right {

        justify-content: center;

    }

    

    .benefits-showcase-right img {

        max-height: 280px;

    }

    

    /* Subscribe Card stack */

    .subscribe-card {

        grid-template-columns: 1fr;

        padding: 32px 24px;

        gap: 24px;

        text-align: center;

    }

    

    .subscribe-consent {

        text-align: left;

    }

    

    /* Configurator stack */

    .configurator-card {

        grid-template-columns: 1fr;

    }

    

    .configurator-visuals {

        border-right: 0;

        border-bottom: 1px dashed rgba(0,0,0,0.08);

        padding: 32px;

    }

    

    .configurator-widget {

        padding: 24px;

    }



    /* AI key module stack */

    .ckm-module {

        height: 520px;

        overflow: hidden;

    }



    .ckm-tabs {

        top: 20px;

        gap: 8px;

    }



    .ckm-tab {

        padding: 6px 20px;

        font-size: 12px;

        height: auto;

        white-space: nowrap;

    }



    .ckm-command {

        top: 76px;

        width: min(86vw, 520px);

        min-width: 0;

    }



    .ckm-command span:last-child {

        font-size: 16px;

        white-space: normal;

    }



    .ckm-stage {

        top: 166px;

        width: 92%;

        height: 260px;

    }



    .ckm-slide-main {

        left: 50%;

        width: min(100%, 520px);

        transform: translateX(-50%) translateY(76px) scale(0.965);

        animation-name: ckm-mobileMain;

    }



    @keyframes ckm-mobileMain {

        to {

            opacity: 1;

            filter: blur(0);

            transform: translateX(-50%) translateY(0) scale(1);

        }

    }



    .ckm-slide-left,

    .ckm-slide-right {

        display: none;

    }



    .ckm-slide-body {

        padding: 28px;

    }



    .ckm-card-title {

        font-size: 34px;

    }



    .ckm-caption {

        font-size: 15px;

    }



    .ckm-device-wrap {

        bottom: auto;

        top: 100px;

        width: 100vw;

        max-width: 570px;

        height: 100vw;

        max-height: 570px;

    }



    .ckm-ai-hotspot {

        top: 3.86%;

        left: 63.68%;

        width: 16.14%;

        height: 10%;

    }



    .ckm-ripple {

        width: 76.92%;

        height: 76.92%;

    }

    

    /* Scenario focus carousel stack */

    .scenario-focus-gallery {

        width: 100%;

        margin-left: 0;

        flex-direction: column;

        justify-content: center;

        align-items: stretch;

        gap: 12px;

        padding: 0;

        overflow: visible;

        transform: none;

        height: 556px !important; /* Fixes container height to prevent layout jitter (280 + 3*80 + 3*12) */

    }



    .scenario-photo,

    .scenario-photo.slot-left,

    .scenario-photo.slot-right,

    .scenario-photo.slot-far-right {

        width: 100%;

        flex: 0 0 auto;

        height: 80px;

        transform: none;

        order: initial;

        opacity: 0.85;

        transition: 

            height 450ms cubic-bezier(0.25, 1, 0.5, 1),

            opacity 300ms ease,

            box-shadow 300ms ease;

    }



    .scenario-photo.active {

        height: 280px;

        opacity: 1;

        order: initial;

        box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);

    }



    /* Mobile Accordion Content Overlay & Transitions */

    .scenario-overlay {

        padding: 20px !important;

        align-items: flex-end !important;

        transition: background-color 400ms ease;

    }



    .scenario-photo:not(.active) .scenario-overlay {

        background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 100%);

    }



    .scenario-photo.active .scenario-overlay {

        background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.28) 60%, transparent 100%);

    }



    .scenario-photo.active .scenario-desc {

        transition-delay: 0s !important;

    }



    .scenario-photo img {

        transition: filter 400ms ease;

    }



    .scenario-photo:not(.active) img {

        filter: brightness(0.65) contrast(0.95);

    }



    .scenario-photo.active img {

        filter: brightness(1) contrast(1);

    }



    /* Audience rotator stack */

    .audience-rotator {

        grid-template-columns: 1fr;

        gap: 28px;

        margin-top: 28px;

    }



    .audience-visual {

        height: auto;

        aspect-ratio: 1 / 1;

        border-radius: 20px;

        -webkit-mask-image: none !important;

        mask-image: none !important;

    }

    

    .audience-visual-image.active {

        width: 100% !important;

        left: 0 !important;

    }



    .audience-visual-image.prev,

    .audience-visual-image.next {

        opacity: 0 !important;

        visibility: hidden !important;

        pointer-events: none !important;

    }



    .audience-list {

        display: flex;

        flex-direction: row;

        overflow-x: auto;

        overflow-y: visible;

        overscroll-behavior: auto;

        max-height: none;

        padding: 16px 40px 16px 20px;

        margin-left: -20px;

        margin-right: -20px;

        gap: 16px;

        -webkit-overflow-scrolling: touch;

        scroll-snap-type: x mandatory;

        -webkit-mask-image: none;

        mask-image: none;

        scrollbar-width: none;

    }

    .audience-list::-webkit-scrollbar {

        display: none;

    }



    .audience-item {

        flex: 0 0 70%;

        scroll-snap-align: center;

        min-height: auto;

        padding: 20px;

        border: 1px solid var(--color-border);

        border-radius: 20px;

        background-color: var(--color-bg-card);

    }



    .audience-role-badge {

        min-height: auto;

        padding: 0 0 6px 0;

    }



    .audience-role {

        font-size: 11px;

    }



    .audience-copy {

        gap: 6px;

    }



    .audience-copy strong {

        font-size: 16px;

    }



    .audience-copy > span:last-child {

        font-size: 13px;

        line-height: 1.45;

    }

    

    /* Scenario output grid stack */

    .scenario-layout,

    .output-layout {

        grid-template-columns: 1fr;

    }

    

    .scen-tabs-bar,

    .output-tabs {

        flex-wrap: wrap;

    }

    

    .timeline {

        padding-left: 0;

        max-width: 100%;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 32px 16px;

    }

    

    .timeline::before {

        display: none;

    }

    

    .timeline-row {

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        margin-bottom: 0;

    }



    .timeline-row::after {

        display: none;

    }

    

    .timeline-date {

        width: 100%;

        text-align: center;

        margin-bottom: 12px;

        height: auto;

    }



    .timeline-date strong {

        font-size: 18px;

        line-height: 1.3;

    }

    

    .timeline-node {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 44px;

        height: 44px;

        margin: 0 auto 16px auto;

    }



    .timeline-node svg {

        width: 20px;

        height: 20px;

    }



    .timeline-card {

        padding: 14px 16px;

        width: 100%;

        box-sizing: border-box;

        flex-grow: 1;

        display: flex;

        flex-direction: column;

    }



    .timeline-card-split {

        grid-template-columns: 1fr;

        gap: 14px;

    }



    .compliance-grid {

        display: flex;

        flex-direction: row;

        overflow-x: auto;

        overflow-y: visible;

        scroll-snap-type: x mandatory;

        scroll-padding-left: 24px;

        -webkit-overflow-scrolling: touch;

        gap: 12px;

        padding: 4px 24px 12px 24px;

        margin-left: -24px;

        margin-right: -24px;

        /* Hide scrollbar */

        scrollbar-width: none;

        -ms-overflow-style: none;

    }

    .compliance-grid::-webkit-scrollbar {

        display: none;

    }

    .compliance-grid .compliance-card {

        flex: 0 0 calc(47% );

        min-width: 0;

        scroll-snap-align: start;

        padding: 28px 16px;

    }

    .compliance-card img {

        height: 72px;

    }



    .timeline-phase + .timeline-phase {

        border-left: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.24);

        padding-left: 0;

        padding-top: 14px;

    }

    

    .ecosystem-grid {

        grid-template-columns: 1fr;

    }



    .footer-top-grid {

        grid-template-columns: 1fr;

        gap: 32px;

    }



    .footer-bottom-flex {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }



    /* Comparison Table mobile optimizations - Force 4 columns on screen */

    .comparison-scroll-wrapper {

        margin-left: 0 !important;

        margin-right: 0 !important;

        width: 100% !important;

        overflow-x: hidden !important;

        padding-left: 3px !important;

        padding-right: 3px !important;

        box-sizing: border-box !important;

    }

    .comparison-cards-container {

        display: grid !important;

        grid-template-columns: 1fr 1fr 1fr 1fr !important;

        width: 100% !important;

        min-width: 0 !important;

        gap: 2px !important;

        padding-left: 0 !important;

        padding-right: 0 !important;

        box-sizing: border-box !important;

    }

    .comparison-features-col {

        position: relative !important;

        left: auto !important;

        box-shadow: none !important;

        width: auto !important;

        transform: none !important;

    }

    .comp-feature-header {

        height: 70px !important;

        padding: 4px 2px !important;

        font-size: 11px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        text-align: center !important;

        margin-top: 2px !important;

    }

    .comp-card-header {

        height: 70px !important;

        padding: 4px 2px !important;

        gap: 2px !important;

    }

    .comp-card-header img {

        height: 24px !important;

        margin-bottom: 2px !important;

        width: auto !important;

        object-fit: contain !important;

    }

    .comp-card-icon {

        height: 24px !important;

        width: 24px !important;

        margin-bottom: 2px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

    }

    .comp-card-icon svg {

        width: 24px !important;

        height: 24px !important;

    }

    .comp-card-title {

        font-size: 9px !important;

        line-height: 1.1 !important;

        text-align: center !important;

        word-break: break-word !important;

    }

    .comp-badge {

        font-size: 8px !important;

        padding: 2px 4px !important;

    }

    .comp-feature-cell {

        font-size: 9px !important;

        line-height: 1.2 !important;

        padding: 4px !important;

        text-align: left !important;

        word-break: break-word !important;

        height: 52px !important;

        display: flex !important;

        align-items: center !important;

        background-color: #ffffff !important;

    }

    .comp-feature-cell:nth-child(even) {

        background-color: var(--color-bg-alt) !important;

    }

    .comp-val-cell {

        height: 52px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        padding: 0 4px !important;

        text-align: center !important;

    }

}



/* ==========================================================================

   PLANS TABLE STYLING - Image 2 Style (Card Rounded Headers & Theme Colors)

   ========================================================================== */

.plan-table-wrap {

    background-color: transparent !important;

    border: none !important;

    border-radius: 0 !important;

    overflow: visible !important;

}



.plan-table {

    border-collapse: separate !important;

    border-spacing: 0 !important;

    width: 100%;

}



.plan-table th,

.plan-table td {

    padding: 12px 16px !important;

    border-bottom: 1px dashed rgba(0, 0, 0, 0.08) !important;

    font-size: 13px !important;

    vertical-align: middle !important;

    border-top: none !important;

    border-left: none !important;

    border-right: none !important;

}



/* Header style - White background with clean borders */

.plan-table th {

    font-weight: 700 !important;

    text-transform: none !important;

    background-color: #ffffff !important;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;

    position: relative !important;

    z-index: 10 !important;

    padding: 16px 16px !important;

    box-shadow: none !important;

    border-top: none !important;

    border-left: none !important;

    border-right: none !important;

    border-radius: 0 !important;

}



.plan-table th:first-child {

    font-size: 18px !important;

    font-weight: 700 !important;

    color: #1e293b !important;

    vertical-align: middle !important;

    text-align: left !important;

    width: 26% !important;

}



.plan-table th:nth-child(2) {

    width: 20% !important;

}



.plan-table th:nth-child(3) {

    width: 24% !important;

}



.plan-table th:nth-child(4) {

    width: 30% !important;

}



/* Header Flex Layout */

.plan-header-flex {

    display: flex;

    align-items: center;

    gap: 12px;

    text-align: left !important;

}



.plan-header-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border-radius: 8px;

    flex-shrink: 0;

}



.plan-header-icon.bg-blue {

    background-color: var(--color-primary);

    box-shadow: 0 4px 10px rgba(34, 119, 255, 0.2);

}



.plan-header-icon.bg-teal {

    background-color: #32E8D6;

    box-shadow: 0 4px 10px rgba(50, 232, 214, 0.2);

}



.plan-header-icon.bg-gold {

    background-color: #FAE7CF;

    box-shadow: 0 4px 10px rgba(250, 231, 207, 0.3);

}



.plan-header-icon svg {

    width: 20px;

    height: 20px;

}



.plan-header-text {

    display: flex;

    flex-direction: column;

}



.plan-header-text strong {

    font-size: 16px;

    font-weight: 700;

}



.plan-header-text.text-blue strong {

    color: var(--color-primary);

}



.plan-header-text.text-teal strong {

    color: #32E8D6;

}



.plan-header-text.text-gold strong {

    color: #191c1d;

}



.plan-header-text span {

    font-size: 11px;

    color: #64748b !important;

    font-weight: 400;

    margin-top: 2px;

    line-height: 1.3;

}



/* Best Value Badge */

.plan-table th.elite {

    position: relative !important;

}



.plan-table th.elite small {

    position: absolute !important;

    top: -16px !important;

    right: 16px !important;

    background-color: #FAE7CF !important;

    color: #191c1d !important;

    font-size: 13.2px !important;

    padding: 6px 15px !important;

    border-radius: 100px !important;

    font-weight: 700 !important;

    border: none !important;

    letter-spacing: 0.05em;

    box-shadow: 0 4px 10px rgba(250, 231, 207, 0.4) !important;

}



/* Column backgrounds matching theme */

.plan-table tr:not(.group-row):not(.unified-highlight-row):not(.progressive-highlight-row) td:nth-child(1) {

    background-color: transparent !important;

    font-weight: 600 !important;

    color: var(--color-text-main) !important;

}



.plan-table tr:not(.group-row):not(.unified-highlight-row):not(.progressive-highlight-row) td:nth-child(2) {

    background-color: transparent !important;

    text-align: center !important;

}



.plan-table tr:not(.group-row):not(.unified-highlight-row):not(.progressive-highlight-row) td:nth-child(3) {

    background-color: transparent !important;

    text-align: center !important;

}



.plan-table tr:not(.group-row):not(.unified-highlight-row):not(.progressive-highlight-row) td:nth-child(4) {

    background-color: rgba(250, 231, 207, 0.1) !important;

    text-align: center !important;

    font-weight: bold !important;

}



/* Check Icons inside columns */

.plan-table td:nth-child(2) .check-icon {

    background-color: var(--color-primary) !important;

    box-shadow: 0 2px 6px rgba(34, 119, 255, 0.2) !important;

}



.plan-table td:nth-child(3) .check-icon {

    background-color: #32E8D6 !important;

    box-shadow: 0 2px 6px rgba(50, 232, 214, 0.2) !important;

}



.plan-table td:nth-child(4) .check-icon {

    background-color: #FAE7CF !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23191c1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") !important;

    box-shadow: 0 2px 6px rgba(250, 231, 207, 0.4) !important;

    color: #191c1d !important;

}



/* Group row header style */

.plan-table tr.group-row td {

    background-color: #f8fafc !important;

    color: #475569 !important;

    font-weight: 800 !important;

    font-size: 11px !important;

    text-transform: uppercase !important;

    letter-spacing: 0.08em !important;

    padding: 8px 16px !important;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;

}



/* Unified Highlight Row Style - Image 1 Style */

.plan-table tr.unified-highlight-row td {

    padding: 14px 16px !important;

    border-top: none !important;

    border-bottom: 1px dashed rgba(0, 0, 0, 0.08) !important;

    background: transparent !important;

    vertical-align: middle !important;

    box-shadow: none !important;

    color: var(--color-text-main) !important;

}



.plan-table tr.unified-highlight-row td:first-child {

    background: var(--color-bg-alt) !important;

    border-left: none !important;

    border-radius: 0 !important;

}



.plan-table tr.unified-highlight-row td:nth-child(2) {

    background: rgba(34, 119, 255, 0.15) !important;

    color: var(--color-text-main) !important;

}



.plan-table tr.unified-highlight-row td:nth-child(3) {

    background: rgba(50, 232, 214, 0.2) !important;

    color: var(--color-text-main) !important;

    border-right: none !important;

    border-radius: 0 !important;

}



.plan-table tr.unified-highlight-row td:nth-child(4) {

    color: var(--color-text-main) !important;

    background-color: rgba(250, 231, 207, 0.2) !important;

    border-top: none !important;

    border-bottom: 1px dashed rgba(0, 0, 0, 0.08) !important;

    border-left: 1.5px solid #FAE7CF !important;

    border-right: 1.5px solid #FAE7CF !important;

    border-radius: 0 !important;

    font-weight: bold !important;

}



.plan-table tr.unified-highlight-row td strong,

.plan-table tr.unified-highlight-row td .text-gold {

    color: var(--color-text-main) !important;

}



@media (max-width: 768px) {

    .plan-table tr.progressive-highlight-row td:nth-child(4) {

        font-size: 9px !important;

        white-space: normal !important;

        word-break: normal !important;

        padding-left: 2px !important;

        padding-right: 2px !important;

        line-height: 1.1 !important;

    }

    

    .elite-sparkles {

        display: none !important;

    }

    

    .comparison-card {

        border-radius: 12px !important;

    }

}





.highlight-feature-title {

    display: flex;

    align-items: center;

    gap: 14px;

}



.mic-circle-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    background-color: #ffffff;

    border-radius: 50%;

    flex-shrink: 0;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}



.mic-circle-icon svg {

    width: 18px;

    height: 18px;

}



.highlight-text-stack {

    display: flex;

    flex-direction: column;

    gap: 4px;

}



.highlight-feature-item {

    display: flex;

    align-items: center;

    gap: 6px;

}



.highlight-bullet {

    display: block;

    width: 4px;

    height: 4px;

    background-color: #ffffff;

    border-radius: 50%;

    opacity: 0.8;

}



.highlight-text-stack strong {

    font-size: 16px;

    font-weight: 700;

    color: #ffffff !important;

}



.highlight-val {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}



.highlight-val strong {

    font-size: 18px;

    font-weight: 800;

    color: #ffffff !important;

    letter-spacing: 0.02em;

}



.sparkle-icon {

    font-size: 16px;

    color: #fef08a;

    display: inline-block;

    animation: bounce 1.5s infinite;

}



@keyframes bounce {

    0%, 100% { transform: translateY(0); }

    50% { transform: translateY(-3px); }

}



/* Bottom corners rounded */

.plan-table tr:last-child td:nth-child(1) {

    border-bottom-left-radius: 12px !important;

}



.plan-table tr:last-child td:nth-child(4) {

    border-bottom-right-radius: 20px !important;

}



@media (max-width: 768px) {

    /* Plan Table mobile optimizations - Force 4 columns on screen */

    .plan-table-wrap {

        margin-left: 0 !important;

        margin-right: 0 !important;

        width: 100% !important;

        overflow-x: hidden !important;

        padding-left: 0 !important;

        padding-right: 0 !important;

        padding-top: 20px !important;

        padding-bottom: 15px !important;

        margin-top: 0 !important;

        margin-bottom: 20px !important;

    }

    .plan-table {

        width: 100% !important;

        min-width: 0 !important;

        table-layout: fixed !important;

    }

    .plan-table tr:not(.group-row):not(.unified-highlight-row) th:first-child,

    .plan-table tr:not(.group-row):not(.unified-highlight-row) td:first-child,

    .plan-table tr:not(.group-row) th:first-child,

    .plan-table tr:not(.group-row) td:first-child {

        position: static !important;

        left: auto !important;

        box-shadow: none !important;

        padding-left: 4px !important;

        padding-right: 4px !important;

        width: 25% !important;

        transform: none !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        word-break: break-word !important;

        white-space: normal !important;

    }



    .plan-table tr.group-row td {

        padding-left: 4px !important;

        font-size: 8px !important;

    }

    .plan-table tr.group-row .group-title {

        position: static !important;

        left: auto !important;

        display: inline-block !important;

        z-index: auto !important;

        transform: none !important;

        font-size: 8px !important;

    }

    .plan-table th:not(:first-child),

    .plan-table td:not(:first-child) {

        width: 25% !important;

        min-width: 0 !important;

        padding-left: 2px !important;

        padding-right: 2px !important;

        font-size: 9px !important;

        text-align: center !important;

        word-break: break-word !important;

    }

    .plan-header-flex {

        display: block !important;

        text-align: center !important;

    }

    .plan-header-icon {

        display: none !important;

    }

    .plan-header-text span {

        display: none !important;

    }

    .plan-header-text strong {

        font-size: 10px !important;

        display: block !important;

        text-align: center !important;

    }

    .plan-table td span {

        display: block !important;

        font-size: 7px !important;

        line-height: 1.1 !important;

    }

    .plan-table td .price-val {

        font-size: 11px !important;

    }

    .plan-table td small {

        display: block !important;

        font-size: 7px !important;

        line-height: 1.1 !important;

    }

    .mic-circle-icon {

        display: none !important;

    }

    .highlight-bullet {

        display: none !important;

    }

    .highlight-feature-item {

        padding-left: 0 !important;

        font-size: 8px !important;

        line-height: 1.1 !important;

    }

    .highlight-feature-item strong {

        font-size: 8px !important;

        font-weight: 600 !important;

    }

    .highlight-val strong {

        font-size: 7.5px !important;

        white-space: nowrap !important;

        letter-spacing: -0.02em !important;

    }

    .sparkle-icon {

        display: none !important;

    }

    .highlight-text-stack {

        display: flex !important;

        flex-direction: column !important;

        gap: 2px !important;

    }

    .best-value-badge {

        position: absolute !important;

        top: -12px !important;

        left: 50% !important;

        right: auto !important;

        transform: translateX(-50%) !important;

        white-space: nowrap !important;

        font-size: 9px !important;

        padding: 4px 10px !important;

    }

    .plan-table td .check-icon,

    .plan-table td .cross-icon {

        display: block !important;

        margin: 0 auto !important;

    }

    .plan-table tr.unified-highlight-row td:not(:first-child),

    .plan-table tr.progressive-highlight-row td:not(:first-child) {

        font-size: 11px !important;

    }

    .plan-table tr.unified-highlight-row td:not(:first-child) strong,

    .plan-table tr.progressive-highlight-row td:not(:first-child) strong {

        font-size: 11px !important;

    }

    .highlight-val strong {

        font-size: 10px !important;

    }

    .highlight-feature-item strong, .highlight-feature-item {

        font-size: 9px !important;

    }

}



/* Progressive Highlight Row Style */

.plan-table tr.progressive-highlight-row td {

    padding: 14px 16px !important;

    vertical-align: middle !important;

    border-top: none !important;

    border-bottom: 1px dashed rgba(0, 0, 0, 0.08) !important;

    background: transparent !important;

    color: var(--color-text-main) !important;

}



.plan-table tr.progressive-highlight-row td:first-child {

    background: var(--color-bg-alt) !important;

}



.plan-table tr.progressive-highlight-row td:nth-child(2) { /* Starter */

    background: rgba(34, 119, 255, 0.15) !important;

    color: var(--color-text-main) !important;

}



.plan-table tr.progressive-highlight-row td:nth-child(3) { /* Premium */

    font-weight: 600 !important;

    background: rgba(50, 232, 214, 0.2) !important;

    color: var(--color-text-main) !important;

}



.plan-table tr.progressive-highlight-row td:nth-child(4) { /* Elite */

    font-weight: 800 !important;

    font-size: 15px !important;

    background: rgba(250, 231, 207, 0.2) !important;

    color: var(--color-text-main) !important;

}



.plan-table tr.unified-highlight-row td:not(:first-child),

.plan-table tr.progressive-highlight-row td:not(:first-child) {

    font-size: 15px !important;

    font-weight: bold !important;

}



.plan-table tr.progressive-highlight-row td small {

    color: var(--color-text-light) !important;

    opacity: 0.8;

}





.elite-sparkles::before,

.elite-sparkles::after {

    content: "A?;

    position: absolute;

    color: #a855f7;

    font-size: 16px;

    opacity: 0.6;

    animation: float-sparkle 3s ease-in-out infinite alternate;

}

.elite-sparkles::before {

    top: 20px;

    left: 20px;

}

.elite-sparkles::after {

    top: 40px;

    right: 20px;

    font-size: 12px;

    animation-delay: 1.5s;

}

@keyframes float-sparkle {

    0% { transform: translateY(0) scale(1); opacity: 0.4; }

    100% { transform: translateY(-5px) scale(1.2); opacity: 0.8; }

}



@media (min-width: 769px) {

    .plan-table tr.group-row td.elite-col-group {

        background-color: rgba(250, 231, 207, 0.15) !important;

        border-left: 1.5px solid #FAE7CF !important;

        border-right: 1.5px solid #FAE7CF !important;

    }

}



@keyframes float-icon {

    0% { transform: translateY(0); box-shadow: 0 4px 10px rgba(250, 231, 207, 0.3); }

    100% { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(250, 231, 207, 0.5); }

}

.plan-header-icon.bg-gold {

    animation: float-icon 2.5s ease-in-out infinite alternate;

}


/* Staggered Bento Masonry Grid */
.bento-grid-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.bento-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.bento-grid-masonry .bento-card {
  flex: 1;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 17px 24px 32px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: background-color 0.2s, transform 0.2s;
}
.bento-grid-masonry .col-tall .bento-card {
  min-height: 400px;
}
.bento-grid-masonry .col-stagger-1 .bento-card:first-child { flex: 42; }
.bento-grid-masonry .col-stagger-1 .bento-card:last-child { flex: 58; }
.bento-grid-masonry .col-stagger-2 .bento-card:first-child { flex: 58; }
.bento-grid-masonry .col-stagger-2 .bento-card:last-child { flex: 42; }
.bento-grid-masonry .col-stagger-3 .bento-card:first-child { flex: 33; }
.bento-grid-masonry .col-stagger-3 .bento-card:last-child { flex: 67; }

.bento-grid-masonry .bento-card:hover {
  background: #f1f3f5;
  transform: translateY(-2px);
}
.bento-grid-masonry .bento-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}
/* Hide other content on the card itself */
.bento-grid-masonry .bento-icon,
.bento-grid-masonry .bento-body,
.bento-grid-masonry .bento-payments {
  display: none !important;
}

/* Benefits Modal */
.benefits-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.benefits-modal.show {
  display: flex;
}
.benefits-modal-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.benefits-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}
.benefits-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: #6a6a6a;
}
.benefits-modal-close:hover { color: #1a1a1a; }
.benefits-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.benefits-modal-content .modal-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
}
.benefits-modal-content h5 {
  font-size: 1.1rem;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.benefits-modal-content p {
  color: #6a6a6a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.benefits-modal-content .small-note {
  font-size: 0.85rem;
  color: #999;
}
.benefits-modal-content .bento-link {
  display: inline-block;
  color: #0a93c1;
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
}
.benefits-modal-content .bento-payments {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .bento-grid-masonry {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
    gap: 6px;
    align-items: stretch;
  }
  .bento-grid-masonry::-webkit-scrollbar {
    display: none;
  }
  .bento-col {
    flex: 0 0 46vw;
    max-width: 200px;
    min-width: 140px;
    height: auto;
    aspect-ratio: 282 / 400;
    scroll-snap-align: start;
    gap: 6px;
  }
  .bento-grid-masonry .col-tall .bento-card {
    min-height: unset;
    height: 100%;
  }
  .bento-grid-masonry .bento-card {
    padding: 8px 6px;
  }
  .bento-grid-masonry .bento-card h4 {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .bento-col {
    flex: 0 0 36vw;
  }
}

.bento-bottom-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}
.bento-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
    /* Shrink mobile carousel arrows and dots */
    .app-feature-carousel-wrapper > button {
        width: 24px !important;
        height: 24px !important;
    }
    .app-feature-carousel-wrapper > button:nth-of-type(1) {
        left: 4px !important;
    }
    .app-feature-carousel-wrapper > button:nth-of-type(2) {
        right: 4px !important;
    }
    .app-feature-carousel-wrapper > button svg {
        width: 14px !important;
        height: 14px !important;
    }
    .app-feature-carousel-wrapper > div > button {
        width: 4px !important;
        height: 4px !important;
    }
}


/* ==========================================================================
   USER MANUAL SECTION
   ========================================================================== */
.manual-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.manual-right-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.manual-download-link-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #111827;
    padding-bottom: 4px;
}

.manual-download-link-new:hover {
    color: #2277FF;
    border-bottom-color: #2277FF;
}

.manual-filename {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
}

.manual-right {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.manual-right svg {
    width: 18px;
    height: 18px;
    color: inherit;
}

.manual-download-link-new:hover .manual-right {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .manual-section {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
    
    .manual-right-wrapper {
        justify-content: center;
    }
    
    .manual-download-link-new {
        font-size: 15px;
    }
    .manual-filename {
        font-size: 15px;
    }
}


/* ==========================================================================
   Definitive Footer Layout (Desktop Fig 2 / Mobile Fig 4)
   ========================================================================== */
.site-footer hr.footer-divider {
    border: 0 !important;
    border-top: 1px solid #1f1f1f !important;
    margin: 40px 0 28px 0 !important;
}

.site-footer .footer-customer-service-col .footer-service-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-label {
    font-size: 14px !important;
    color: #a1a1aa !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-link {
    font-size: 14px !important;
    color: #ffffff !important;
    text-decoration: underline !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.site-footer .footer-follow-btn {
    background-color: #5844ff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
}

.site-footer .footer-follow-btn:hover {
    background-color: #4a34ea !important;
}

.site-footer .footer-bottom-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 0 !important;
}

.site-footer .footer-bottom-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.site-footer .footer-bottom-right {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.site-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    align-items: center !important;
}

.site-footer .footer-socials a {
    color: #ffffff !important;
    opacity: 0.85 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.site-footer .footer-socials a:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

.site-footer .footer-socials .social-svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

.site-footer .footer-copyright-area {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.site-footer .copyright-text {
    font-size: 13px !important;
    color: #a1a1aa !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.site-footer .footer-policy-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.site-footer .footer-policy-links a {
    font-size: 13px !important;
    color: #a1a1aa !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-policy-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.site-footer .footer-policy-links span {
    font-size: 10px !important;
    color: #71717a !important;
}

.site-footer .footer-payment-icons {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.site-footer .footer-payment-icons img {
    width: 38px !important;
    height: 24px !important;
    display: block !important;
    border-radius: 4px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .site-footer hr.footer-divider {
        display: none !important;
    }

    .site-footer .footer-customer-service-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px 0 0 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
    }

    .site-footer .footer-customer-service-col .footer-service-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 16px 0 !important;
        display: block !important;
    }

    .site-footer .footer-service-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .site-footer .footer-service-box .footer-email-label {
        font-size: 14px !important;
        color: #a1a1aa !important;
        margin: 0 0 4px 0 !important;
    }

    .site-footer .footer-service-box .footer-email-link {
        font-size: 14px !important;
        color: #ffffff !important;
        text-decoration: underline !important;
        margin-bottom: 12px !important;
    }

    .site-footer .footer-service-box .footer-follow-btn {
        margin-bottom: 20px !important;
    }

    .site-footer .footer-bottom-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin-top: 24px !important;
    }

    .site-footer .footer-bottom-left {
        display: contents !important;
    }

    .site-footer .footer-bottom-right {
        display: contents !important;
    }

    .site-footer .footer-socials {
        order: 1 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-payment-icons {
        order: 2 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 6px !important;
        justify-content: flex-start !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-copyright-area {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    .site-footer .footer-policy-links {
        gap: 6px !important;
    }

    .site-footer .footer-policy-links a {
        font-size: 12px !important;
    }

    .site-footer .copyright-text {
        font-size: 12px !important;
    }
}

/* End of Definitive Footer Layout */


/* ==========================================================================
   Definitive Footer Layout (Desktop Fig 2 / Mobile Fig 4)
   ========================================================================== */
.site-footer {
    background-color: #121212 !important;
    border-top: 1px solid #1f1f1f !important;
    padding: 80px 0 40px 0 !important;
    color: #a3a3a3 !important;
}

.site-footer .footer-content-wrap {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

.site-footer .footer-top-grid {
    display: grid !important;
    grid-template-columns: 2fr 0.9fr 1.2fr 0.9fr 1.1fr 1.2fr minmax(180px, 1.4fr) !important;
    gap: 24px !important;
    margin-bottom: 48px !important;
}

.site-footer .footer-customer-service-col {
    min-width: 180px !important;
}

.site-footer .footer-customer-service-col .footer-service-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-label {
    font-size: 14px !important;
    color: #a1a1aa !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-link {
    font-size: 14px !important;
    color: #ffffff !important;
    text-decoration: underline !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.site-footer .footer-follow-btn {
    background-color: #5844ff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: fit-content !important;
    flex-shrink: 0 !important;
    transition: background-color 0.2s ease !important;
}

.site-footer .footer-follow-btn span {
    white-space: nowrap !important;
}

.site-footer .footer-follow-btn svg,
.site-footer .footer-follow-btn i {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.site-footer .footer-follow-btn:hover {
    background-color: #4a34ea !important;
}

.site-footer hr.footer-divider {
    border: 0 !important;
    border-top: 1px solid #1f1f1f !important;
    margin: 0 0 32px 0 !important;
    width: 100% !important;
}

.site-footer .footer-bottom-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-footer .footer-bottom-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.site-footer .footer-bottom-right {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.site-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    align-items: center !important;
}

.site-footer .footer-socials a {
    color: #ffffff !important;
    opacity: 0.85 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.site-footer .footer-socials a:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

.site-footer .footer-socials .social-svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

.site-footer .footer-copyright-area {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.site-footer .copyright-text {
    font-size: 13px !important;
    color: #a1a1aa !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.site-footer .footer-policy-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.site-footer .footer-policy-links a {
    font-size: 13px !important;
    color: #a1a1aa !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-policy-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.site-footer .footer-policy-links span {
    font-size: 10px !important;
    color: #71717a !important;
}

.site-footer .footer-payment-icons {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.site-footer .footer-payment-icons img {
    width: 38px !important;
    height: 24px !important;
    display: block !important;
    border-radius: 4px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 !important;
    }

    .site-footer .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 24px !important;
    }

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

    .site-footer .footer-customer-service-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px 0 0 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        min-width: 0 !important;
    }

    .site-footer .footer-customer-service-col .footer-service-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 16px 0 !important;
        display: block !important;
    }

    .site-footer .footer-service-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .site-footer .footer-service-box .footer-email-label {
        font-size: 14px !important;
        color: #a1a1aa !important;
        margin: 0 0 4px 0 !important;
    }

    .site-footer .footer-service-box .footer-email-link {
        font-size: 14px !important;
        color: #ffffff !important;
        text-decoration: underline !important;
        margin-bottom: 12px !important;
    }

    .site-footer .footer-service-box .footer-follow-btn {
        margin-bottom: 20px !important;
        white-space: nowrap !important;
    }

    .site-footer .footer-bottom-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin-top: 24px !important;
    }

    .site-footer .footer-bottom-left {
        display: contents !important;
    }

    .site-footer .footer-bottom-right {
        display: contents !important;
    }

    .site-footer .footer-socials {
        order: 1 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-payment-icons {
        order: 2 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 6px !important;
        justify-content: flex-start !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-copyright-area {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    .site-footer .footer-policy-links {
        gap: 6px !important;
    }

    .site-footer .footer-policy-links a {
        font-size: 12px !important;
    }

    .site-footer .copyright-text {
        font-size: 12px !important;
    }
}

/* End of Definitive Footer Layout */


/* ==========================================================================
   Definitive Footer Layout (Desktop Fig 2 / Mobile Fig 4)
   ========================================================================== */
.site-footer {
    background-color: #121212 !important;
    border-top: 1px solid #1f1f1f !important;
    padding: 80px 0 40px 0 !important;
    color: #a3a3a3 !important;
}

.site-footer .footer-content-wrap {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

.site-footer .footer-top-grid {
    display: grid !important;
    grid-template-columns: 1.9fr 0.85fr 1.15fr 0.85fr 1.15fr 1.35fr minmax(180px, 1.4fr) !important;
    gap: 24px !important;
    margin-bottom: 48px !important;
}

.site-footer .footer-customer-service-col {
    min-width: 180px !important;
}

.site-footer .footer-customer-service-col .footer-service-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-label {
    font-size: 14px !important;
    color: #a1a1aa !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-link {
    font-size: 14px !important;
    color: #ffffff !important;
    text-decoration: underline !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.site-footer .footer-follow-btn {
    background-color: #5844ff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: fit-content !important;
    flex-shrink: 0 !important;
    transition: background-color 0.2s ease !important;
}

.site-footer .footer-follow-btn span {
    white-space: nowrap !important;
}

.site-footer .footer-follow-btn svg,
.site-footer .footer-follow-btn i {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.site-footer .footer-follow-btn:hover {
    background-color: #4a34ea !important;
}

/* ==========================================================================
   Footer App & Desktop Download Buttons Styling
   ========================================================================== */
.site-footer .footer-btn-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* App Store / Google Play / Android APK badges */
.site-footer .footer-app-badge-link {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background-color: #1c1c1c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: fit-content !important;
    height: 35px !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
}

.site-footer .footer-app-badge-link img {
    height: 33px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

.site-footer .footer-app-badge-link:hover {
    transform: translateY(-1.5px) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background-color: #242426 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
}

/* Desktop Download Buttons (Windows / macOS) */
.site-footer .footer-desktop-badge-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background-color: #1c1c1c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    height: 35px !important;
    padding: 0 10px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 140px !important;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
}

.site-footer .footer-desktop-badge-btn .footer-btn-left {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.site-footer .footer-desktop-badge-btn .footer-btn-left span {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #f4f4f5 !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
}

.site-footer .footer-desktop-badge-btn .footer-os-icon {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    color: #ffffff !important;
}

.site-footer .footer-desktop-badge-btn .footer-dl-icon {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    color: #a1a1aa !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-desktop-badge-btn:hover {
    background-color: #242426 !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
}

.site-footer .footer-desktop-badge-btn:hover .footer-dl-icon {
    color: #ffffff !important;
}

/* ==========================================================================
   Footer Bottom Flex & Dividers
   ========================================================================== */
.site-footer hr.footer-divider {
    border: 0 !important;
    border-top: 1px solid #1f1f1f !important;
    margin: 0 0 32px 0 !important;
    width: 100% !important;
}

.site-footer .footer-bottom-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-footer .footer-bottom-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.site-footer .footer-bottom-right {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.site-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    align-items: center !important;
}

.site-footer .footer-socials a {
    color: #ffffff !important;
    opacity: 0.85 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.site-footer .footer-socials a:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

.site-footer .footer-socials .social-svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

.site-footer .footer-copyright-area {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.site-footer .copyright-text {
    font-size: 13px !important;
    color: #a1a1aa !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.site-footer .footer-policy-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.site-footer .footer-policy-links a {
    font-size: 13px !important;
    color: #a1a1aa !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-policy-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.site-footer .footer-policy-links span {
    font-size: 10px !important;
    color: #71717a !important;
}

.site-footer .footer-payment-icons {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.site-footer .footer-payment-icons img {
    width: 38px !important;
    height: 24px !important;
    display: block !important;
    border-radius: 4px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 !important;
    }

    .site-footer .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 24px !important;
    }

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

    .site-footer .footer-btn-list {
        padding-top: 10px !important;
        padding-bottom: 16px !important;
    }

    .site-footer .footer-desktop-badge-btn {
        max-width: 170px !important;
    }

    .site-footer .footer-customer-service-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px 0 0 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        min-width: 0 !important;
    }

    .site-footer .footer-customer-service-col .footer-service-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 16px 0 !important;
        display: block !important;
    }

    .site-footer .footer-service-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .site-footer .footer-service-box .footer-email-label {
        font-size: 14px !important;
        color: #a1a1aa !important;
        margin: 0 0 4px 0 !important;
    }

    .site-footer .footer-service-box .footer-email-link {
        font-size: 14px !important;
        color: #ffffff !important;
        text-decoration: underline !important;
        margin-bottom: 12px !important;
    }

    .site-footer .footer-service-box .footer-follow-btn {
        margin-bottom: 20px !important;
        white-space: nowrap !important;
    }

    .site-footer .footer-bottom-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin-top: 24px !important;
    }

    .site-footer .footer-bottom-left {
        display: contents !important;
    }

    .site-footer .footer-bottom-right {
        display: contents !important;
    }

    .site-footer .footer-socials {
        order: 1 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-payment-icons {
        order: 2 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 6px !important;
        justify-content: flex-start !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-copyright-area {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    .site-footer .footer-policy-links {
        gap: 6px !important;
    }

    .site-footer .footer-policy-links a {
        font-size: 12px !important;
    }

    .site-footer .copyright-text {
        font-size: 12px !important;
    }
}

/* End of Definitive Footer Layout */


/* ==========================================================================
   Definitive Footer Layout (Desktop Fig 2 / Mobile Fig 4)
   ========================================================================== */
.site-footer {
    background-color: #121212 !important;
    border-top: 1px solid #1f1f1f !important;
    padding: 80px 0 40px 0 !important;
    color: #a3a3a3 !important;
}

.site-footer .footer-content-wrap {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

.site-footer .footer-top-grid {
    display: grid !important;
    grid-template-columns: 1.8fr 0.85fr 1.1fr 0.85fr 1.15fr minmax(165px, 1.45fr) minmax(180px, 1.4fr) !important;
    gap: 22px !important;
    margin-bottom: 48px !important;
}

.site-footer .footer-customer-service-col {
    min-width: 180px !important;
}

.site-footer .footer-customer-service-col .footer-service-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-label {
    font-size: 14px !important;
    color: #a1a1aa !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-link {
    font-size: 14px !important;
    color: #ffffff !important;
    text-decoration: underline !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.site-footer .footer-follow-btn {
    background-color: #5844ff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: fit-content !important;
    flex-shrink: 0 !important;
    border: none !important;
    outline: none !important;
    transition: background-color 0.2s ease !important;
}

.site-footer .footer-follow-btn span {
    white-space: nowrap !important;
}

.site-footer .footer-follow-btn svg,
.site-footer .footer-follow-btn i {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.site-footer .footer-follow-btn:hover {
    background-color: #4a34ea !important;
}

/* ==========================================================================
   Footer App & Desktop Download Buttons Styling - NO BORDER, WITH QR TOOLTIP
   ========================================================================== */
.site-footer .footer-btn-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* App Store / Google Play / Android APK badges */
.site-footer .footer-app-badge-link {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    overflow: visible !important;
    position: relative !important;
    background-color: #1c1c1c !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: fit-content !important;
    height: 35px !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.site-footer .footer-app-badge-link img {
    height: 35px !important;
    width: auto !important;
    display: block !important;
    border-radius: 6px !important;
    border: none !important;
}

.site-footer .footer-app-badge-link:hover {
    transform: translateY(-1.5px) !important;
    background-color: #282828 !important;
    border: none !important;
}

/* QR Code Tooltip on Hover */
.site-footer .footer-app-badge-link .qr-tooltip {
    position: absolute !important;
    bottom: calc(100% + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(4px) !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28) !important;
    padding: 10px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.site-footer .footer-app-badge-link .qr-tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 6px !important;
    border-style: solid !important;
    border-color: #ffffff transparent transparent transparent !important;
}

.site-footer .footer-app-badge-link:hover .qr-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.site-footer .qr-placeholder {
    width: 90px !important;
    height: 90px !important;
    background: #f8fafc !important;
    border: 2px dashed #cbd5e1 !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    text-align: center !important;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
}

/* Desktop Download Buttons (Windows / macOS) - NO BORDER, FULL TEXT VISIBLE */
.site-footer .footer-desktop-badge-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background-color: #1c1c1c !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    height: 35px !important;
    padding: 0 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    width: fit-content !important;
    min-width: 162px !important;
    max-width: 100% !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.site-footer .footer-desktop-badge-btn .footer-btn-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
}

.site-footer .footer-desktop-badge-btn .footer-btn-left span {
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: visible !important;
    letter-spacing: -0.01em !important;
}

.site-footer .footer-desktop-badge-btn .footer-os-icon {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    color: #ffffff !important;
}

.site-footer .footer-desktop-badge-btn .footer-dl-icon {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    color: #a1a1aa !important;
    margin-left: 10px !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-desktop-badge-btn:hover {
    background-color: #282828 !important;
    border: none !important;
    transform: translateY(-1.5px) !important;
}

.site-footer .footer-desktop-badge-btn:hover .footer-dl-icon {
    color: #ffffff !important;
}

/* ==========================================================================
   Footer Bottom Flex & Dividers
   ========================================================================== */
.site-footer hr.footer-divider {
    border: 0 !important;
    border-top: 1px solid #1f1f1f !important;
    margin: 0 0 32px 0 !important;
    width: 100% !important;
}

.site-footer .footer-bottom-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-footer .footer-bottom-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.site-footer .footer-bottom-right {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.site-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    align-items: center !important;
}

.site-footer .footer-socials a {
    color: #ffffff !important;
    opacity: 0.85 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.site-footer .footer-socials a:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

.site-footer .footer-socials .social-svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

.site-footer .footer-copyright-area {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.site-footer .copyright-text {
    font-size: 13px !important;
    color: #a1a1aa !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.site-footer .footer-policy-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.site-footer .footer-policy-links a {
    font-size: 13px !important;
    color: #a1a1aa !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-policy-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.site-footer .footer-policy-links span {
    font-size: 10px !important;
    color: #71717a !important;
}

.site-footer .footer-payment-icons {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.site-footer .footer-payment-icons img {
    width: 38px !important;
    height: 24px !important;
    display: block !important;
    border-radius: 4px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 !important;
    }

    .site-footer .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 24px !important;
    }

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

    .site-footer .footer-btn-list {
        padding-top: 10px !important;
        padding-bottom: 16px !important;
    }

    .site-footer .footer-app-badge-link .qr-tooltip {
        display: none !important;
    }

    .site-footer .footer-desktop-badge-btn {
        max-width: 180px !important;
    }

    .site-footer .footer-customer-service-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px 0 0 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        min-width: 0 !important;
    }

    .site-footer .footer-customer-service-col .footer-service-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 16px 0 !important;
        display: block !important;
    }

    .site-footer .footer-service-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .site-footer .footer-service-box .footer-email-label {
        font-size: 14px !important;
        color: #a1a1aa !important;
        margin: 0 0 4px 0 !important;
    }

    .site-footer .footer-service-box .footer-email-link {
        font-size: 14px !important;
        color: #ffffff !important;
        text-decoration: underline !important;
        margin-bottom: 12px !important;
    }

    .site-footer .footer-service-box .footer-follow-btn {
        margin-bottom: 20px !important;
        white-space: nowrap !important;
    }

    .site-footer .footer-bottom-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin-top: 24px !important;
    }

    .site-footer .footer-bottom-left {
        display: contents !important;
    }

    .site-footer .footer-bottom-right {
        display: contents !important;
    }

    .site-footer .footer-socials {
        order: 1 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-payment-icons {
        order: 2 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 6px !important;
        justify-content: flex-start !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-copyright-area {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    .site-footer .footer-policy-links {
        gap: 6px !important;
    }

    .site-footer .footer-policy-links a {
        font-size: 12px !important;
    }

    .site-footer .copyright-text {
        font-size: 12px !important;
    }
}

/* End of Definitive Footer Layout */


/* ==========================================================================
   Definitive Footer Layout (Desktop Fig 2 / Mobile Fig 4)
   ========================================================================== */
.site-footer {
    background-color: #121212 !important;
    border-top: 1px solid #1f1f1f !important;
    padding: 80px 0 40px 0 !important;
    color: #a3a3a3 !important;
}

.site-footer .footer-content-wrap {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

.site-footer .footer-top-grid {
    display: grid !important;
    grid-template-columns: 1.8fr 0.85fr 1.1fr 0.85fr 1.15fr minmax(165px, 1.45fr) minmax(180px, 1.4fr) !important;
    gap: 22px !important;
    margin-bottom: 48px !important;
}

.site-footer .footer-customer-service-col {
    min-width: 180px !important;
}

.site-footer .footer-customer-service-col .footer-service-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-label {
    font-size: 14px !important;
    color: #a1a1aa !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.site-footer .footer-email-link {
    font-size: 14px !important;
    color: #ffffff !important;
    text-decoration: underline !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.site-footer .footer-follow-btn {
    background-color: #5844ff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: fit-content !important;
    flex-shrink: 0 !important;
    border: none !important;
    outline: none !important;
    transition: background-color 0.2s ease !important;
}

.site-footer .footer-follow-btn span {
    white-space: nowrap !important;
}

.site-footer .footer-follow-btn svg,
.site-footer .footer-follow-btn i {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.site-footer .footer-follow-btn:hover {
    background-color: #4a34ea !important;
}

/* ==========================================================================
   Footer App & Desktop Download Buttons Styling - NO BORDER, WITH QR TOOLTIP
   ========================================================================== */
.site-footer .footer-btn-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* App Store / Google Play / Android APK badges */
.site-footer .footer-app-badge-link {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    overflow: visible !important;
    position: relative !important;
    background-color: #1c1c1c !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: fit-content !important;
    height: 35px !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.site-footer .footer-app-badge-link img {
    height: 35px !important;
    width: auto !important;
    display: block !important;
    border-radius: 6px !important;
    border: none !important;
}

.site-footer .footer-app-badge-link:hover {
    transform: translateY(-1.5px) !important;
    background-color: #282828 !important;
    border: none !important;
}

/* QR Code Tooltip on Hover */
.site-footer .footer-app-badge-link .qr-tooltip {
    position: absolute !important;
    bottom: calc(100% + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(4px) !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28) !important;
    padding: 10px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.site-footer .footer-app-badge-link .qr-tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 6px !important;
    border-style: solid !important;
    border-color: #ffffff transparent transparent transparent !important;
}

.site-footer .footer-app-badge-link:hover .qr-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.site-footer .qr-placeholder {
    width: 90px !important;
    height: 90px !important;
    background: #f8fafc !important;
    border: 2px dashed #cbd5e1 !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    text-align: center !important;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
}

/* Desktop Download Buttons (Windows / macOS) - NO BORDER, FULL TEXT VISIBLE */
.site-footer .footer-desktop-badge-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background-color: #1c1c1c !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    height: 35px !important;
    padding: 0 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    width: fit-content !important;
    min-width: 162px !important;
    max-width: 100% !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.site-footer .footer-desktop-badge-btn .footer-btn-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
}

.site-footer .footer-desktop-badge-btn .footer-btn-left span {
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: visible !important;
    letter-spacing: -0.01em !important;
}

.site-footer .footer-desktop-badge-btn .footer-os-icon {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    color: #ffffff !important;
}

.site-footer .footer-desktop-badge-btn .footer-dl-icon {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    color: #a1a1aa !important;
    margin-left: 10px !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-desktop-badge-btn:hover {
    background-color: #282828 !important;
    border: none !important;
    transform: translateY(-1.5px) !important;
}

.site-footer .footer-desktop-badge-btn:hover .footer-dl-icon {
    color: #ffffff !important;
}

/* ==========================================================================
   Footer Bottom Flex & Dividers
   ========================================================================== */
.site-footer hr.footer-divider {
    border: 0 !important;
    border-top: 1px solid #1f1f1f !important;
    margin: 0 0 32px 0 !important;
    width: 100% !important;
}

.site-footer .footer-bottom-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-footer .footer-bottom-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.site-footer .footer-bottom-right {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.site-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    align-items: center !important;
}

.site-footer .footer-socials a {
    color: #ffffff !important;
    opacity: 0.85 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.site-footer .footer-socials a:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

.site-footer .footer-socials .social-svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

.site-footer .footer-copyright-area {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.site-footer .copyright-text {
    font-size: 13px !important;
    color: #a1a1aa !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.site-footer .footer-policy-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.site-footer .footer-policy-links a {
    font-size: 13px !important;
    color: #a1a1aa !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer .footer-policy-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.site-footer .footer-policy-links span {
    font-size: 10px !important;
    color: #71717a !important;
}

.site-footer .footer-payment-icons {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.site-footer .footer-payment-icons img {
    width: 38px !important;
    height: 24px !important;
    display: block !important;
    border-radius: 4px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 !important;
    }

    .site-footer .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 24px !important;
    }

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

    /* Mobile: Enlarged App & Desktop Download Badges */
    .site-footer .footer-btn-list {
        gap: 12px !important;
        padding-top: 12px !important;
        padding-bottom: 20px !important;
    }

    .site-footer .footer-app-badge-link {
        height: 44px !important;
        border-radius: 8px !important;
    }

    .site-footer .footer-app-badge-link img {
        height: 44px !important;
        border-radius: 8px !important;
    }

    .site-footer .footer-app-badge-link .qr-tooltip {
        display: none !important;
    }

    .site-footer .footer-desktop-badge-btn {
        height: 44px !important;
        border-radius: 8px !important;
        min-width: 175px !important;
        max-width: 200px !important;
        padding: 0 14px !important;
    }

    .site-footer .footer-desktop-badge-btn .footer-btn-left {
        gap: 10px !important;
    }

    .site-footer .footer-desktop-badge-btn .footer-btn-left span {
        font-size: 13px !important;
    }

    .site-footer .footer-desktop-badge-btn .footer-os-icon {
        width: 15px !important;
        height: 15px !important;
    }

    .site-footer .footer-desktop-badge-btn .footer-dl-icon {
        width: 15px !important;
        height: 15px !important;
        margin-left: 12px !important;
    }

    .site-footer .footer-customer-service-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px 0 0 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        min-width: 0 !important;
    }

    .site-footer .footer-customer-service-col .footer-service-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 16px 0 !important;
        display: block !important;
    }

    .site-footer .footer-service-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .site-footer .footer-service-box .footer-email-label {
        font-size: 14px !important;
        color: #a1a1aa !important;
        margin: 0 0 4px 0 !important;
    }

    .site-footer .footer-service-box .footer-email-link {
        font-size: 14px !important;
        color: #ffffff !important;
        text-decoration: underline !important;
        margin-bottom: 12px !important;
    }

    .site-footer .footer-service-box .footer-follow-btn {
        margin-bottom: 20px !important;
        white-space: nowrap !important;
    }

    .site-footer .footer-bottom-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin-top: 24px !important;
    }

    .site-footer .footer-bottom-left {
        display: contents !important;
    }

    .site-footer .footer-bottom-right {
        display: contents !important;
    }

    .site-footer .footer-socials {
        order: 1 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-payment-icons {
        order: 2 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 6px !important;
        justify-content: flex-start !important;
        margin-bottom: 4px !important;
    }

    .site-footer .footer-copyright-area {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    .site-footer .footer-policy-links {
        gap: 6px !important;
    }

    .site-footer .footer-policy-links a {
        font-size: 12px !important;
    }

    .site-footer .copyright-text {
        font-size: 12px !important;
    }
}

/* End of Definitive Footer Layout */
