/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --secondary-color: #8B5CF6;
    --accent-color: #EC4899;
    --success-color: #10B981;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Kanit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(to bottom right, #EEF2FF, #F9FAFB, #FDF4FF);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    flex-direction: column;
    padding: 1rem 2.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-text {
    font-size: 1.125rem;
}

.btn-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FCD34D;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.play-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
}

.btn-secondary:hover .play-icon {
    background: white;
    color: var(--primary-color);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.trust-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Right Content - Product Images */
.hero-images {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
}

.product-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.placeholder-content {
    text-align: center;
}

.placeholder-content p {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.small-image .image-placeholder {
    aspect-ratio: 1;
}

.small-image .placeholder-content p {
    font-size: 0.75rem;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.stat-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 15%;
    left: -8%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation-delay: 2s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.stat-icon {
    font-size: 2rem;
}

.stat-rating {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-reviews {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    filter: blur(60px);
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    left: -200px;
}

.decoration-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -250px;
    right: -250px;
}

.decoration-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section 2: Product Features */
.features-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid #FCD34D;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.section-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover .feature-card-icon svg path,
.feature-card:hover .feature-card-icon svg circle,
.feature-card:hover .feature-card-icon svg rect {
    fill: white !important;
    stroke: white !important;
}

.feature-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-card-highlight {
    margin-top: auto;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.feature-card:hover .highlight-badge {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, #EEF2FF, #F9FAFB);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid var(--border-color);
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.review-highlight {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.25rem;
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Section 3: Customer Reviews */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F9FAFB, white);
    position: relative;
}

/* Overall Rating Summary */
.rating-summary {
    margin-bottom: 4rem;
}

.rating-overview {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    border: 2px solid var(--border-color);
}

.rating-score {
    text-align: center;
    padding-right: 3rem;
    border-right: 2px solid var(--border-color);
}

.score-number {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.score-stars {
    font-size: 2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #D1D5DB;
}

.star.filled {
    color: #FCD34D;
}

.star.half {
    background: linear-gradient(90deg, #FCD34D 50%, #D1D5DB 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-count {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    min-width: 60px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #E5E7EB;
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FCD34D, #F59E0B);
    border-radius: 50px;
    transition: width 1s ease;
}

.bar-percent {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* Video Reviews */
/* Photo Testimonials (Chat Reviews & Customer Pickup) */
.photo-testimonials {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.subsection-description {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-card.chat-review {
    border-top: 4px solid #10B981;
}

.testimonial-card.pickup-review {
    border-top: 4px solid #8B5CF6;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.chat-review .testimonial-badge {
    border: 1px solid #10B981;
    color: #059669;
}

.pickup-review .testimonial-badge {
    border: 1px solid #8B5CF6;
    color: #7C3AED;
}

.chat-screenshot {
    position: relative;
    aspect-ratio: 3/4;
    background: #F3F4F6;
    overflow: hidden;
}

.chat-screenshot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.chat-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    z-index: 1;
}

.testimonial-footer {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 20px;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.trust-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10B981;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-text strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-text span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Testimonial Footer - รองรับชื่อยาว */
.testimonial-footer .reviewer-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial-footer .reviewer-location {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-review-card:hover .thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    transition: transform 0.3s ease;
}

.video-review-card:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
}

.video-info {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.reviewer-avatar.large {
    width: 48px;
    height: 48px;
}

.avatar-initial {
    font-size: 1.125rem;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

.reviewer-location {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

/* Photo Reviews */
.photo-reviews {
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-stars-small {
    font-size: 0.875rem;
    letter-spacing: 0.125rem;
    color: #FCD34D;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.review-images {
    display: flex;
    gap: 0.5rem;
}

.review-image {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.image-placeholder.review-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: #ECFDF5;
    color: #059669;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #A7F3D0;
    width: fit-content;
}

/* Platform Reviews */
.platform-reviews {
    margin-bottom: 4rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.platform-card.shopee {
    border-top: 4px solid #EE4D2D;
}

.platform-card.lazada {
    border-top: 4px solid #0F146D;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.platform-logo {
    flex-shrink: 0;
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.platform-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.stat-rating {
    color: var(--text-dark);
    font-weight: 600;
}

.stat-separator {
    color: var(--text-light);
}

.stat-sold {
    color: var(--text-gray);
}

.platform-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-review {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.mini-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mini-reviewer {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mini-stars {
    font-size: 0.75rem;
    letter-spacing: 0.0625rem;
}

.mini-review-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.platform-buy-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
    color: white;
}

.platform-buy-btn.shopee-btn {
    background: linear-gradient(135deg, #EE4D2D, #D63C1E);
    box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3);
}

.platform-buy-btn.shopee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 77, 45, 0.4);
}

.platform-buy-btn.lazada-btn {
    background: linear-gradient(135deg, #0F146D, #0A0E4F);
    box-shadow: 0 4px 15px rgba(15, 20, 109, 0.3);
}

.platform-buy-btn.lazada-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 20, 109, 0.4);
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #EEF2FF, #F3E8FF);
    border-radius: 24px;
    border: 2px solid var(--border-color);
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Section 4: Demo Videos */
.demo-videos-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

/* Featured Demo Video */
.featured-demos {
    margin-bottom: 4rem;
}

.featured-video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    transition: all 0.3s ease;
}

.featured-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.featured-video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* YouTube Embed Responsive */
.featured-video-wrapper.youtube-embed {
    cursor: default;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.featured-video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button-large {
    transition: transform 0.3s ease;
}

.featured-video-wrapper:hover .play-button-large {
    transform: scale(1.15);
}

.video-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.video-thumbnail-large {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-placeholder.featured {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
}

.featured-video-info {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-separator {
    color: var(--text-light);
}

/* Demo Videos Grid */
.demo-videos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.demo-video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.demo-video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.demo-video-card.vertical {
    grid-column: span 2;
}

.demo-video-thumbnail {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.demo-video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-icon-circle {
    transition: transform 0.3s ease;
}

.demo-video-card:hover .play-icon-circle {
    transform: scale(1.1);
}

.thumbnail-placeholder.vertical-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-duration-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
}

.tiktok-badge,
.reels-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    z-index: 3;
}

.reels-badge {
    background: linear-gradient(135deg, #FF0080, #FF8C00);
}

.demo-video-info {
    padding: 1rem;
}

.demo-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.demo-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.stat-views,
.stat-likes {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Video SEO Benefits */
.video-seo-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #F9FAFB, #EEF2FF);
    border-radius: 24px;
    border: 2px solid var(--border-color);
}

.seo-benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.seo-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Section 5: Comparison Table */
.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, #F9FAFB);
    position: relative;
}

.comparison-table-wrapper {
    margin-bottom: 4rem;
    overflow-x: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    display: table;
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    min-width: 900px;
    table-layout: fixed;
}

.comparison-row {
    display: table-row;
}

.comparison-row:nth-child(even):not(.header-row):not(.price-row) {
    background: #F9FAFB;
}

.comparison-cell {
    display: table-cell;
    padding: 1.5rem 0.75rem;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.header-row .comparison-cell {
    padding: 2.5rem 0.75rem 2.5rem;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-bottom: 3px solid var(--primary-color);
}

.feature-cell {
    text-align: left;
    font-weight: 600;
    width: 28%;
    background: white !important;
    padding-left: 1.5rem !important;
}

.feature-cell h3 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.product-cell {
    width: 18%;
    position: relative;
    padding: 1.5rem 0.5rem !important;
}

.product-cell.recommended {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF) !important;
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.2);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(79, 70, 229, 0.15);
    }
}

.recommended-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    z-index: 10;
}

.product-icon {
    margin: 0 auto 0.5rem;
    width: 40px;
    height: 40px;
}

.product-icon.highlight svg rect:first-child {
    fill: var(--primary-color);
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.product-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.3;
}

.value-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0.25rem 0;
}

.value-text.dimmed {
    color: var(--text-light);
}

.value-highlight {
    padding: 0.4rem 0.75rem;
    border-radius: 10px;
    margin: 0 auto 0.4rem;
    display: inline-block;
}

.value-highlight.best {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 2px solid #10B981;
}

.value-highlight strong {
    color: #059669;
    font-size: 1.05rem;
}

.value-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.value-badge.success {
    background: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
}

.value-badge.warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.value-badge.danger {
    background: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.check-icon,
.cross-icon {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.check-icon.success {
    color: #10B981;
}

.check-icon.success-large {
    color: #10B981;
    font-size: 2rem;
}

.cross-icon {
    color: #EF4444;
}

.cross-icon-large {
    color: #EF4444;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

/* Highlight Row - Special row for standout features */
.highlight-row {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5) !important;
    border-left: 4px solid #F59E0B;
    border-right: 4px solid #F59E0B;
}

.highlight-row .comparison-cell.recommended {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A) !important;
}

/* Price Row */
.price-row .comparison-cell {
    padding: 2rem 0.5rem;
    background: white !important;
}

.price-row .product-cell.recommended {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF) !important;
}

.price-highlight {
    margin-bottom: 0.75rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.price-value.expensive {
    color: #EF4444;
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.btn-buy {
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
    width: 100%;
    white-space: nowrap;
}

.btn-buy.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-buy.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-buy.secondary {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    font-size: 0.85rem;
}

/* Comparison Summary */
.comparison-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.summary-card {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.summary-card.winner {
    border-color: #FCD34D;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}

.summary-card.winner:hover {
    border-color: #FBBF24;
}

.summary-card.value {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
}

.summary-card.guarantee {
    border-color: #10B981;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
}

.summary-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.summary-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.summary-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Section 6: Image Gallery */
.gallery-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.product-gallery-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.featured {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #F9FAFB, #EEF2FF);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.gallery-item:hover .gallery-image-wrapper {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Hero Product Images */
.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.main-image .hero-product-img {
    object-fit: contain;
}

.small-image .hero-product-img {
    object-fit: cover;
}

.gallery-item.featured .gallery-placeholder {
    min-height: 600px;
}

.placeholder-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
}

.image-badge-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Gallery Subsections */
.gallery-subsection {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item.small .gallery-placeholder {
    min-height: 200px;
}

.gallery-caption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Feature Icons Grid */
.feature-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.feature-icon-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    margin-bottom: 0.75rem;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-placeholder svg text {
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    font-weight: normal;
}

.feature-icon-emoji {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    line-height: 1;
}

.feature-icon-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Image Modal */
.modal.image-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-image-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-image-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Section 7: FAQ */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F9FAFB, white);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding-right: 1rem;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 0.75rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer p br {
    line-height: 2.2;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ CTA */
.faq-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 24px;
    border: 2px solid var(--primary-color);
}

.faq-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-cta-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
}

.btn-contact.line {
    background: linear-gradient(135deg, #06C755, #05A847);
    color: white;
    border-color: #06C755;
}

.btn-contact.line:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3);
}

.btn-contact.phone {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-contact.phone:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 1.5rem;
}

/* Section 8: Promotion & Final CTA */
.promotion-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.promotion-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.promo-banner {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.promo-flash {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.old-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
}

.price-amount.strike {
    color: #EF4444;
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-badge {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.current-price {
    display: flex;
    flex-direction: column;
}

.price-amount.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    border: 2px solid #FCD34D;
}

/* Bundle Promotion */
.bundle-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: #1E40AF;
    padding: 0.875rem 1.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    border: 2px solid #60A5FA;
    margin-top: 0.75rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    animation: pulseBundle 2s ease-in-out infinite;
}

.bundle-icon {
    font-size: 1.5rem;
}

.bundle-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.bundle-text strong {
    font-size: 1.125rem;
    color: #1E3A8A;
}

.bundle-discount {
    color: #DC2626;
    font-weight: 700;
    font-size: 1.25rem;
}

@keyframes pulseBundle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
    }
}

.promo-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.benefit-icon-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.benefit-text span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cta-urgency {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid #EF4444;
}

.urgency-icon {
    font-size: 3rem;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    75% {
        transform: rotate(-15deg);
    }
}

.urgency-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.urgency-text strong {
    font-size: 1.25rem;
    color: #DC2626;
}

.urgency-text span {
    font-size: 1rem;
    color: #991B1B;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-cta {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
}

.btn-cta.primary-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.btn-cta.primary-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.5);
}

.btn-cta.shopee-cta {
    background: linear-gradient(135deg, #EE4D2D, #D63C1E);
    color: white;
    box-shadow: 0 15px 35px rgba(238, 77, 45, 0.4);
}

.btn-cta.shopee-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(238, 77, 45, 0.5);
}

.btn-cta.lazada-cta {
    background: linear-gradient(135deg, #0F146D, #0A0E4F);
    color: white;
    box-shadow: 0 15px 35px rgba(15, 20, 109, 0.4);
}

.btn-cta.lazada-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(15, 20, 109, 0.5);
}

.btn-cta.line-cta {
    background: linear-gradient(135deg, #06C755, #05A847);
    color: white;
    box-shadow: 0 15px 35px rgba(6, 199, 85, 0.4);
}

.btn-cta.line-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(6, 199, 85, 0.5);
}

.cta-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.cta-divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--border-color);
}

.secondary-group {
    margin-top: 0;
}

.cta-icon {
    font-size: 2.5rem;
}

.cta-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.cta-main-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.cta-sub-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-signals-final {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.signal-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Extra Promotions */
.extra-promotions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.extra-promo-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.extra-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.promo-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.promo-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.promo-card-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1F2937, #111827);
    color: #D1D5DB;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #9CA3AF;
}

.footer-text.small {
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    font-size: 0.9375rem;
}

.footer-contact a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: #9CA3AF;
}

.footer-keywords {
    font-size: 0.875rem;
    color: #6B7280;
}

.footer-keywords span:hover {
    color: var(--primary-color);
}

/* Sticky Buy Bar (Desktop) */
.sticky-buy-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-buy-bar.visible {
    transform: translateY(0);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-product-image {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-product-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.sticky-product-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

.sticky-price-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sticky-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-price-old {
    font-size: 1rem;
    color: #EF4444;
    text-decoration: line-through;
    opacity: 0.7;
}

.sticky-price-new {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticky-buy-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    white-space: nowrap;
}

.sticky-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

/* Fixed Mobile CTA Button */
.fixed-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 1rem;
    border-top: 2px solid var(--border-color);
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-cta-price {
    display: flex;
    flex-direction: column;
}

.mobile-price-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.mobile-price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.mobile-cta-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    white-space: nowrap;
}

.mobile-cta-btn:active {
    transform: scale(0.98);
}

/* Tablet Optimizations */
@media (max-width: 1024px) {
    .comparison-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Fixed Mobile CTA */
    .fixed-mobile-cta {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind fixed button */
    body {
        padding-bottom: 85px;
    }
    
    /* Hide sticky bar on mobile */
    .sticky-buy-bar {
        display: none;
    }
    
    /* Mobile Typography Improvements */
    body {
        font-size: 16px; /* Prevent font scaling on iOS */
        -webkit-text-size-adjust: 100%;
    }
    
    /* Mobile: Larger Product Images */
    .hero-images,
    .product-gallery-main {
        margin-bottom: 2rem;
    }
    
    .hero-images .main-image,
    .gallery-item.featured .gallery-placeholder {
        min-height: 400px;
    }
    
    /* Mobile: Shorter Text Blocks */
    p {
        max-width: 100%;
    }
    
    .hero-subtitle,
    .section-subtitle {
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile: Better Touch Targets */
    button,
    .btn,
    .btn-cta,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile: Optimize Hero Section */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    /* Mobile: Stack Content Better */
    .features-grid,
    .reviews-grid,
    .demo-videos-grid {
        gap: 1rem;
    }
    
    /* Mobile: Larger CTA Buttons */
    .btn-primary,
    .btn-secondary {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    /* Mobile: Image Optimization */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Mobile: Reduce Motion for Performance */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Performance: Reduce Motion Class */
.reduce-motion * {
    animation: none !important;
    transition: none !important;
}

/* Sticky Buy Bar (Desktop) */
.sticky-buy-bar {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: top 0.3s ease;
    border-bottom: 2px solid var(--primary-color);
}

.sticky-buy-bar.visible {
    top: 0;
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sticky-product-image {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-product-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sticky-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.stars {
    color: #FCD34D;
    letter-spacing: 0.1rem;
}

.rating-text {
    color: var(--text-gray);
}

.sticky-price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-price-old {
    font-size: 1rem;
    color: #EF4444;
    text-decoration: line-through;
    opacity: 0.7;
}

.sticky-price-current {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticky-discount {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-sticky-buy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    white-space: nowrap;
}

.btn-sticky-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.btn-icon {
    font-size: 1.5rem;
}

/* Fixed Mobile CTA */
.fixed-mobile-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s ease;
    display: none;
}

.fixed-mobile-cta.visible {
    bottom: 0;
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-price-old {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.mobile-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.btn-mobile-buy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-mobile-buy:active {
    transform: scale(0.98);
}

.mobile-arrow {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Hide sticky bar on mobile, show mobile CTA instead */
@media (max-width: 768px) {
    .sticky-buy-bar {
        display: none;
    }
    
    .fixed-mobile-cta {
        display: block;
    }
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ccc;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-images {
        order: -1;
    }
    
    .floating-stat {
        display: none;
    }
    
    /* Features Section */
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Reviews Section */
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-score {
        padding-right: 0;
        padding-bottom: 2rem;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Demo Videos Section */
    .featured-video-card {
        grid-template-columns: 1fr;
    }
    
    .featured-video-info {
        padding: 2rem;
    }
    
    .demo-videos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .video-seo-benefits {
        grid-template-columns: repeat(3, 1fr);
        padding: 2rem;
    }
    
    /* Comparison Section */
    .comparison-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Gallery Section */
    .product-gallery-main {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* FAQ Section */
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    /* Promotion Section */
    .promo-content {
        grid-template-columns: 1fr;
    }
    
    .bundle-promo {
        font-size: 1.0625rem;
        padding: 0.8rem 1.35rem;
    }
    
    .bundle-text {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .extra-promotions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        width: 48px;
        height: 48px;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .secondary-images {
        gap: 1rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    /* Features Section */
    .features-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card-title {
        font-size: 1.25rem;
    }
    
    .social-proof {
        padding: 2rem 1.5rem;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .review-highlight {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    /* Reviews Section */
    .reviews-section {
        padding: 4rem 0;
    }
    
    .rating-overview {
        padding: 2rem 1.5rem;
    }
    
    .score-number {
        font-size: 4rem;
    }
    
    .score-stars {
        font-size: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
    
    /* Demo Videos Section */
    .demo-videos-section {
        padding: 4rem 0;
    }
    
    .featured-demos {
        margin-bottom: 3rem;
    }
    
    .featured-video-info {
        padding: 1.5rem;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .demo-videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .video-seo-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    /* Comparison Section */
    .comparison-section {
        padding: 4rem 0;
    }
    
    .comparison-table-wrapper {
        margin-bottom: 3rem;
        border-radius: 16px;
    }
    
    .comparison-table {
        border-radius: 16px;
    }
    
    .comparison-cell {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .header-row .comparison-cell {
        padding: 1.5rem 0.75rem;
    }
    
    .product-name {
        font-size: 1.125rem;
    }
    
    .product-icon {
        width: 40px;
        height: 40px;
    }
    
    .product-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-name {
        font-size: 0.875rem;
    }
    
    .feature-icon {
        font-size: 1.25rem;
    }
    
    .value-highlight strong {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        font-size: 3rem;
    }
    
    .summary-title {
        font-size: 1.25rem;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 4rem 0;
    }
    
    .product-gallery-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
    }
    
    .gallery-item.featured .gallery-placeholder {
        min-height: 350px;
    }
    
    .image-placeholder.gallery-placeholder {
        min-height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-title {
        font-size: 0.9375rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer p {
        font-size: 0.9375rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta-title {
        font-size: 1.5rem;
    }
    
    .faq-cta-text {
        font-size: 1rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
    }
    
    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .btn-primary {
        padding: 0.875rem 2rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .btn-price {
        font-size: 1.25rem;
    }
    
    /* Features Section */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-card-title {
        font-size: 1.125rem;
    }
    
    .feature-card-description {
        font-size: 0.9375rem;
    }
    
    .social-proof {
        padding: 1.5rem;
    }
    
    .stat-number-large {
        font-size: 2rem;
    }
    
    .stat-label-large {
        font-size: 0.875rem;
    }
    
    /* Reviews Section */
    .rating-overview {
        padding: 1.5rem;
    }
    
    .score-number {
        font-size: 3rem;
    }
    
    .score-stars {
        font-size: 1.25rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
    }
    
    .rating-bar-item {
        gap: 0.5rem;
    }
    
    .bar-label {
        min-width: 50px;
        font-size: 0.75rem;
    }
    
    .bar-percent {
        min-width: 35px;
        font-size: 0.75rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-images {
        flex-wrap: wrap;
    }
    
    .review-image {
        min-width: calc(50% - 0.25rem);
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .platform-header {
        gap: 0.75rem;
    }
    
    .platform-logo svg {
        width: 32px;
        height: 32px;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    .mini-review {
        padding: 0.875rem;
    }
    
    .reviews-cta {
        padding: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Demo Videos Section */
    .video-title {
        font-size: 1.25rem;
    }
    
    .video-description {
        font-size: 0.9375rem;
    }
    
    .demo-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-video-card.vertical {
        grid-column: span 1;
    }
    
    .demo-title {
        font-size: 0.875rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .benefit-text {
        font-size: 0.875rem;
    }
    
    /* Comparison Section */
    .comparison-table {
        font-size: 0.8125rem;
    }
    
    .comparison-cell {
        padding: 0.875rem 0.5rem;
    }
    
    .header-row .comparison-cell {
        padding: 1.25rem 0.5rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-label {
        font-size: 0.625rem;
    }
    
    .product-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .product-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .recommended-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.75rem;
    }
    
    .feature-name {
        font-size: 0.8125rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .feature-icon {
        font-size: 1.125rem;
    }
    
    .value-text {
        font-size: 0.875rem;
    }
    
    .value-highlight {
        padding: 0.375rem 0.75rem;
    }
    
    .value-highlight strong {
        font-size: 0.9375rem;
    }
    
    .value-badge {
        font-size: 0.625rem;
        padding: 0.1875rem 0.5rem;
    }
    
    .check-icon,
    .cross-icon {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
    
    .price-note {
        font-size: 0.75rem;
    }
    
    .btn-buy {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .summary-card {
        padding: 1.25rem;
    }
    
    .summary-icon {
        font-size: 2.5rem;
    }
    
    .summary-title {
        font-size: 1.125rem;
    }
    
    .summary-text {
        font-size: 0.875rem;
    }
    
    /* Gallery Section */
    .gallery-subsection {
        margin-bottom: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-icon-card {
        padding: 1.25rem 0.75rem;
    }
    
    .icon-placeholder {
        width: 64px;
        height: 64px;
    }
    
    .icon-placeholder svg {
        width: 64px;
        height: 64px;
    }
    
    .feature-icon-emoji {
        width: 64px;
        height: 64px;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon-label {
        font-size: 0.8125rem;
    }
    
    .image-badge-overlay {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* FAQ Section */
    .faq-question {
        padding: 0.875rem 1rem;
    }
    
    .faq-title {
        font-size: 0.875rem;
        padding-right: 0.5rem;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 0.875rem 1rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1.25rem;
    }
    
    .faq-cta-title {
        font-size: 1.25rem;
    }
    
    .faq-cta-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-contact {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .contact-icon {
        font-size: 1.25rem;
    }
    
    /* Promotion Section */
    .promotion-section {
        padding: 4rem 0;
    }
    
    .promo-banner {
        padding: 2rem 1.5rem;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-subtitle {
        font-size: 1.125rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-amount.highlight {
        font-size: 3rem;
    }
    
    .promo-benefits {
        gap: 1rem;
    }
    
    .bundle-promo {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }
    
    .bundle-icon {
        font-size: 1.25rem;
    }
    
    .bundle-text strong {
        font-size: 1rem;
    }
    
    .bundle-discount {
        font-size: 1.125rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .benefit-text strong {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-urgency {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .urgency-text strong {
        font-size: 1.125rem;
    }
    
    .urgency-text span {
        font-size: 0.9375rem;
    }
    
    .btn-cta {
        padding: 1.25rem 1.5rem;
    }
    
    .cta-icon {
        font-size: 2rem;
    }
    
    .cta-main-text {
        font-size: 1.125rem;
    }
    
    .trust-signals-final {
        gap: 1rem;
    }
    
    .trust-signal {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Location Section - Mobile */
    .location-content {
        flex-direction: column;
    }
    
    .location-info {
        max-width: 100%;
    }
    
    .map-container {
        max-width: 100%;
        height: 350px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        width: 100%;
    }
}

/* ========================================
   Location & Map Section
   ======================================== */

.location-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.location-content {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.location-info {
    flex: 1;
    max-width: 450px;
}

.location-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.location-card p:last-child {
    margin-bottom: 0;
}

.location-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.location-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.map-container {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 650px;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-link {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.map-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

