/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary-purple: #201366;
    --secondary-purple: #6F5CD3;
    --pink-light: #ffeef8;
    --pink-medium: #e91e63;
    --blue-light: #e3f2fd;
    --green-light: #e8f5e9;
    --red-light: #ffebee;
    
    /* Images */
    --logo-image: url('https://placeholder-for-your-logo.png');
    --hero-background-image: url(./landingimages/pexels-ryutaro-5745010.jpg);
    --product-angle-1: url(./landingimages/Angle02.jpg);
    --product-angle-2: url(./landingimages/Angle01.jpg);
    --product-angle-3: url(./landingimages/back_mouse.png);
    --wrist-pain-image: url(./landingimages/pain_image.png);
    --bad-posture-image: url(./landingimages/BadPostion.jpg);
    --good-posture-image: url(./landingimages/GoodPosition.png);
    --hand-anatomy-image: url(./landingimages/Anatomical\ diagram.png);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== LANGUAGE VISIBILITY ===== */
body [lang]:not(.active-lang) {
    display: none;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 130px;
    z-index: 1000;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #ddd;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lang-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border-color: transparent;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-background-image) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(150deg, rgba(174, 143, 247, 0.808) 10%, rgba(61, 20, 102, 0.85) 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

/* Logo */
.logo-container {
    position: absolute;
    top: 30px;
    left: 130px;
    z-index: 10;
}

.logo {
    width: 120px;
}

/* Hero Text */
.hero-tagline {
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 300;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Badges */
.badge-container {
    margin: 40px 0;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 25px;
    margin: 10px;
    font-size: 1em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2em;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: white;
    color: var(--secondary-purple);
    padding: 20px 60px;
    /* padding: 9px 9px; */
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cta-button-secondary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

.subsection-title {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.description-text {
    font-size: 1.1em;
    line-height: 1.8;
}

/* ===== PAIN SECTION ===== */
.pain-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, #ffe8f0 100%);
    padding: 80px 20px;
}

.pain-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.pain-image {
    width: 100%;
    height: 400px;
    background: var(--wrist-pain-image) center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-item {
    display: flex;
    align-items: start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    width: 40px;
    height: 40px;
    background: var(--pink-medium);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
}

/* Cost Box */
.cost-box {
    text-align: center;
    margin-top: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cost-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--pink-medium);
}

.cost-text {
    font-size: 1.2em;
    line-height: 1.8;
}

/* ===== ANATOMY SECTION ===== */
.anatomy-section {
    background: white;
    padding: 80px 20px;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.anatomy-image {
    width: 100%;
    height: 260px;
    background: var(--hand-anatomy-image) center center no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.anatomy-detail {
    margin-bottom: 25px;
}

.anatomy-detail h4 {
    color: var(--pink-medium);
    margin-bottom: 10px;
}

.anatomy-detail p {
    line-height: 1.8;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    background: #d1c9fd;
;
    padding: 80px 20px;
}

.posture-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.posture-card {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.posture-bad .posture-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.posture-good .posture-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}
.posture-bad .posture-image {
    background-image: var(--bad-posture-image);
    background-color: var(--red-light);
}

.posture-good .posture-image {
    background-image: var(--good-posture-image);
    background-color: var(--green-light);
}

.posture-content {
    padding: 30px;
}

.posture-bad .posture-content {
    background: linear-gradient(135deg, var(--red-light) 0%, #ffcdd2 100%);
}

.posture-good .posture-content {
    background: linear-gradient(135deg, var(--green-light) 0%, #c8e6c9 100%);
}

.posture-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.posture-subtitle {
    font-size: 1.1em;
    margin: 15px 0;
}

.posture-card ul {
    list-style: none;
    margin-top: 20px;
}

.posture-card li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
}

.posture-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.8em;
}

.posture-bad li::before {
    color: #e53935;
}

.posture-good li::before {
    color: #43a047;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--blue-light) 0%, #bbdefb 100%);
    padding: 80px 20px;
    text-align: center;
}

.stat-number {
    font-size: 5em;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 20px;
}

.stat-description {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.stat-source {
    margin-top: 30px;
    font-size: 1em;
    opacity: 0.8;
}

/* ===== PRODUCT GALLERY ===== */
.gallery-section {
    background: white;
    padding: 30px 20px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item-1 {
    background-image: var(--product-angle-1);
    background-color: #f5f5f5;
}

.gallery-item-2 {
    background-image: var(--product-angle-2);
    background-color: #f5f5f5;
}

.gallery-item-3 {
    background-image: var(--product-angle-3);
    background-color: #f5f5f5;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 50px 20px;
    text-align: center;
}

.news-icon {
    font-size: 5em;
    margin-bottom: 30px;
}

.news-text {
    font-size: 1.3em;
    margin-top: 30px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-text strong {
    font-size: 1.2em;
}

/* ===== DESIGN SECTION ===== */
.design-section {
    background: white;
    padding: 80px 20px;
}

.design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.design-text h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--secondary-purple);
}

.design-text p {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-box {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.feature-box h3 {
    color: var(--secondary-purple);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1.1em;
}

.design-image-container {
    width: 100%;
    height: 500px;
    background: var(--product-angle-1) center center no-repeat;
    background-size: contain;
    border-radius: 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: #f5f5f5;
    padding: 30px 20px;
    /* color: var(--secondary-purple); */
    background-color: #c5b9ff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #e8e8e8;
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #ddd;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-label {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonial-text {
    font-size: 1.05em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    font-size: 1.6em;
}

.star {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.final-title {
    font-size: 3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.final-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.price-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 40px auto;
    backdrop-filter: blur(10px);
}

.new-price {
    font-size: 3em;
    font-weight: bold;
    margin: 20px 0;
}

.guarantee {
    margin-top: 30px;
    font-size: 1.1em;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero-tagline {
        font-size: 1em;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2em;
    }

    .pain-visual,
    .anatomy-grid,
    .design-content {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3.5em;
    }

    .design-image-container {
        height: 350px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .logo-container {
        top: 15px;
        left: 15px;
    }

    .logo {
        width: 80px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
        .anatomy-image {
    width: 58%;
    height: 240px;
    background: var(--hand-anatomy-image) center center no-repeat;
    background-size: cover;
}
}

@media (max-width: 640px) {
    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .badge {
        display: block;
        margin: 10px 0;
    }

    .posture-comparison {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 1.1em;
    }

    .posture-bad .posture-image {
        height: 112px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        height: 220px;
    }
    /* new567 */

    .final-cta{
    padding: 60px 20px;
    }

        .anatomy-image {
    width: 100%;
    height: 290px;
    background: var(--hand-anatomy-image) center center no-repeat;
    background-size: cover;
}
}
@media (max-width: 483px){
.final-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    line-height: 1.6;
}
.price-box{
    padding: 23px;
}
.final-cta .cta-button{
    margin-top: 0px;
    padding: 9px 9px;
}

.gallery-section{
    padding: 25px 20px;
    color: var(--secondary-purple);
}

.news-section{
    padding: 25px 20px;
}

.design-section{
    padding: 25px 20px;
}
        .anatomy-image {
    width: 100%;
    height: 197px;
    background: var(--hand-anatomy-image) center center no-repeat;
    background-size: cover;
}
.posture-good .posture-image{
    height: 145px;
}
}
/* @media (max-width: 435px) {
    .anatomy-image {
    width: 100%;
    height: 178px;
    background: var(--hand-anatomy-image) center center no-repeat;
    background-size: cover;
    } */
