/* ==========================================================================
   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;
    scroll-padding-top: 60px; /* Offsets anchor jumps so section heading aligns 32px under quick-nav bar */
    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: 14px;
    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: 86.25px 0;
}

.section.alt-bg {
    background-color: var(--color-bg-alt);
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px 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-logo-set img[src*="IFA."] {
    height: 70px;
}

.bento-grid-masonry .bento-card:has(.warranty-heading),
.bento-card:has(.warranty-heading),
.guarantee-item:has(.warranty-heading) {
    justify-content: center !important;
    align-items: center !important;
    padding: 24px !important;
}

.warranty-heading {
    margin: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.warranty-highlight {
    display: block;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #0062FE 0%, #00C6FF 45%, #36E4DA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
}

.warranty-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-sub, #4B5563);
    letter-spacing: 0.2px;
}

.bento-grid-masonry .bento-card:has(.payment-heading),
.bento-card:has(.payment-heading),
.bento-card.payment-card-centered {
    justify-content: center !important;
    align-items: center !important;
    padding: 24px !important;
}

.payment-heading {
    margin: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.payment-sub-top {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-sub, #4B5563);
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.payment-main-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2px 0;
}

.payment-highlight {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #0062FE 0%, #00C6FF 45%, #36E4DA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
}

.payment-card-icon {
    height: 48px;
    width: auto;
    flex-shrink: 0;
    vertical-align: middle;
}

.payment-sub-bottom {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-sub, #4B5563);
    letter-spacing: 0.2px;
    margin-top: 4px;
}

@keyframes mediaLogoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-25%);
    }
}

@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: 14px;
    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;
}

/* ==========================================================================
   02.5. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: #000000;
    border-bottom: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 101;
}

.announcement-bar-inner {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    overflow: hidden;
}

.ab-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.ab-item i {
    width: 9px;
    height: 9px;
    color: #ffffff;
}

.ab-item a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s;
}

.ab-item a:hover {
    color: var(--color-primary);
    text-decoration-color: var(--color-primary);
}

.ab-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
    .announcement-bar-inner {
        justify-content: center;
    }
    .ab-divider,
    .ab-item:not(:first-child),
    .ab-right-group {
        display: none !important;
    }
}

/* ==========================================================================
   02.6. QUICK NAVIGATION (ANCHOR NAV)
   ========================================================================== */
.quick-nav-module {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 60px; /* Offset for site header */
    z-index: 90;
    transition: all 0.3s ease;
}

.quick-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
}

.quick-nav-list::-webkit-scrollbar {
    display: none;
}

.quick-nav-list li {
    flex-shrink: 0;
}

.quick-nav-link {
    display: block;
    padding: 16px 28px;
    color: #667085;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-nav-link:hover {
    color: #191C1D;
}

.quick-nav-link.active {
    color: #2277FF; /* Brand primary */
    border-bottom-color: #2277FF;
    font-weight: 600;
}

@media (max-width: 900px) {
    .quick-nav-module {
        top: 60px;
    }
    .quick-nav-list {
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }
    .quick-nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    padding: 0;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background-color: var(--swatch-color);
    box-shadow: 0 0 0 1px #E5E7EB;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    box-shadow: 0 0 0 1.5px #111827;
}



/* ==========================================================================
   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, #F3F5F9 0%, #E8EDF5 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: 14px;
    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: 14px;
    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: 14px;
    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: 800px;
    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: 14px;
    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: 14px;
    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 (纯白风)
   ========================================================================== */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 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: 14px;
    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: 14px;
    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: '✕';
    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: 14px;
    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: 14px;
    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: 14px;
    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: 14px;
    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 (无阴影扁平线框)
   ========================================================================== */
.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 (无阴影线框)
   ========================================================================== */
.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: 14px;
    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-accordion-header {
    display: block;
    cursor: default;
}

.footer-accordion-header h3,
.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-accordion-icon {
    display: none;
}

.footer-accordion-content {
    display: block;
}

.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: 14px;
    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: 14px;
    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: 14px;
    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: 4px 16px;
    }
    
    .header-container {
        height: 48px;
    }
    
    .site-header.scrolled .header-container {
        height: 48px;
    }

    .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 (handled in max-width: 900px query) */
    .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: 14px;
    }
    
    /* 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: 14px;
        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: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
        margin: 0;
    }
    .compliance-grid .compliance-card {
        padding: 20px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .compliance-grid .compliance-card h3 {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 18px !important;
        margin-bottom: 6px !important;
    }
    .compliance-grid .compliance-card span {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }
    .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;
    }

    .site-footer {
        padding: 32px 0 32px 0 !important;
    }

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

    .newsletter-col {
        margin-bottom: 8px !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .footer-accordion-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer-accordion-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 16px 0 !important;
        cursor: pointer !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .footer-accordion-header h3 {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
    }

    .footer-accordion-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 24px !important;
        height: 24px !important;
        color: #ffffff !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease !important;
    }

    .footer-accordion-icon svg,
    .footer-accordion-icon i {
        width: 18px !important;
        height: 18px !important;
        stroke-width: 2.2px !important;
    }

    .footer-accordion-col.active .footer-accordion-icon {
        transform: rotate(45deg) !important;
    }

    .footer-accordion-content {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, opacity 0.3s ease !important;
        opacity: 0 !important;
        padding: 0 !important;
    }

    .footer-accordion-col.active .footer-accordion-content {
        max-height: 400px !important;
        opacity: 1 !important;
        padding-bottom: 18px !important;
    }

    .footer-accordion-content ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer-accordion-content ul a {
        font-size: 13.5px !important;
        color: #a3a3a3 !important;
        text-decoration: none !important;
        transition: color 0.2s ease !important;
    }

    .footer-accordion-content ul a:hover {
        color: #ffffff !important;
    }

    .footer-customer-service-col {
        padding: 24px 0 0 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        display: block !important;
    }

    .footer-customer-service-col .footer-service-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 16px 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        display: block !important;
    }

    .footer-service-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .footer-service-box .footer-email-label {
        font-size: 12px !important;
        color: #71717a !important;
        text-transform: uppercase !important;
        margin: 0 0 4px 0 !important;
        letter-spacing: 0.05em !important;
    }

    .footer-service-box .footer-email-link {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        border-bottom: 1.5px dashed #444444 !important;
        padding-bottom: 2px !important;
        width: fit-content !important;
        margin-bottom: 8px !important;
        display: inline-block !important;
    }

    .footer-service-box .footer-follow-btn {
        margin-bottom: 12px !important;
        background-color: #5844ff !important;
        padding: 10px 22px !important;
        border-radius: 9999px !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        width: fit-content !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .footer-service-box .footer-socials {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        flex-wrap: wrap !important;
        margin-top: 4px !important;
    }

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

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

    .footer-payment-icons {
        gap: 8px 6px !important;
        margin-bottom: 4px !important;
    }

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

    .copyright-text {
        font-size: 13px !important;
        color: #a3a3a3 !important;
        margin: 0 !important;
    }

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

    .footer-policy-links a {
        font-size: 13px !important;
        color: #a3a3a3 !important;
    }

    .footer-policy-links span {
        font-size: 11px !important;
        color: #666666 !important;
    }

    /* 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: 14px;
    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: "✦";
    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;
}

/* ==========================================================================
   GOOGLE ONE TAP — VISUAL DEMO ONLY
   ========================================================================== */
.google-one-tap {
    position: fixed;
    top: 88px;
    right: 24px;
    z-index: 120;
    width: min(375px, calc(100vw - 48px));
    padding: 17px 17px 13px;
    overflow: hidden;
    border: 1px solid #dadce0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow:
        0 2px 6px rgba(60, 64, 67, 0.18),
        0 8px 24px rgba(60, 64, 67, 0.14);
    color: #202124;
    font-family: "Inter", Arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
}

.google-one-tap.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.google-one-tap__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.google-one-tap__logo {
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    object-fit: contain;
}

.google-one-tap__heading {
    min-width: 0;
    flex-grow: 1;
}

.google-one-tap__heading h2 {
    margin: 0;
    color: #202124;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-one-tap__heading p {
    margin: 2px 0 0;
    color: #5f6368;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.google-one-tap__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: -7px -7px -7px 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #5f6368;
    cursor: pointer;
    transition:
        background-color 140ms ease,
        color 140ms ease;
}

.google-one-tap__close:hover {
    background: #f1f3f4;
    color: #202124;
}

.google-one-tap__close:focus-visible,
.google-one-tap__account:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

.google-one-tap__close svg {
    width: 18px;
    height: 18px;
}

.google-one-tap__account {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    width: 100%;
    margin-top: 8px;
    padding: 8px 11px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #202124;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 140ms ease,
        border-color 140ms ease,
        box-shadow 140ms ease;
}

.google-one-tap__account:hover {
    border-color: #c6c9ce;
    background: #f8fafd;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.google-one-tap__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a73e8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.google-one-tap__identity {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.google-one-tap__identity strong {
    overflow: hidden;
    color: #202124;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.google-one-tap__identity span {
    overflow: hidden;
    color: #5f6368;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.google-one-tap__arrow {
    width: 18px;
    height: 18px;
    color: #5f6368;
}

.google-one-tap__status {
    display: none;
    margin: 10px 2px 0;
    color: #5f6368;
    font-size: 12px;
    line-height: 17px;
}

.google-one-tap__status:not(:empty) {
    display: block;
}

/* Mobile Google One Tap - Bottom Sheet Style (Matches xtool.com reference)
   Only applies to mobile screens (<= 768px). Desktop stays top-right. */
@media (max-width: 768px) {
    .google-one-tap {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 18px 18px 0 0 !important;
        border: 1px solid #e5e7eb !important;
        border-bottom: none !important;
        background: #ffffff !important;
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15) !important;
        padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
        box-sizing: border-box !important;
        z-index: 99999 !important;
        transform: translate3d(0, 100%, 0) !important;
        transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, visibility 0.28s ease !important;
    }

    .google-one-tap.is-visible {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .google-one-tap__header {
        padding-bottom: 12px !important;
        border-bottom: 1px solid #f1f3f4 !important;
    }

    .google-one-tap__account {
        margin-top: 8px !important;
        padding: 10px 12px !important;
        border-radius: 8px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .google-one-tap {
        transition: none;
    }
}

/* ==========================================================================
   Geo IP / Location Switcher Banner
   ========================================================================== */
.geo-banner {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    position: relative;
    z-index: 1001;
    font-family: inherit;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.geo-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.geo-banner-text {
    font-size: 13.5px;
    color: #1e293b;
    font-weight: 400;
    line-height: 1.4;
}

.geo-banner-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.geo-banner-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.geo-banner-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 5px 30px 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.geo-banner-select:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}

.geo-select-arrow {
    position: absolute;
    right: 10px;
    width: 14px;
    height: 14px;
    color: #64748b;
    pointer-events: none;
}

.geo-banner-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    flex-shrink: 0;
}

.geo-banner-btn:hover {
    background-color: #334155;
}

.geo-banner-btn:active {
    transform: scale(0.97);
}

.geo-banner-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 4px;
    transition: color 0.2s, background-color 0.2s;
    flex-shrink: 0;
}

.geo-banner-close:hover {
    color: #0f172a;
    background-color: #e2e8f0;
}

.geo-banner-close svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2px;
}

@media (max-width: 768px) {
    .geo-banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 36px 10px 14px;
        gap: 8px;
    }

    .geo-banner-text {
        font-size: 12.5px;
        line-height: 1.35;
    }

    .geo-banner-controls {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .geo-banner-select-wrap {
        flex: 1;
    }

    .geo-banner-select {
        width: 100%;
        font-size: 12.5px;
        padding: 6px 28px 6px 12px;
    }

    .geo-banner-btn {
        padding: 6px 14px;
        font-size: 12.5px;
    }

    .geo-banner-close {
        position: absolute;
        top: 8px;
        right: 8px;
        margin: 0;
    }
}


/* ==========================================================================
   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 */
