/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    /* More transparent for mesh clarity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Links */
.nav-links {
    display: none;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Actions */
.nav-actions {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
        align-items: center;
    }
}

/* Mobile Toggle */
.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle span:last-child {
    margin-bottom: 0;
}

/* Active State for Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-md);
    border-bottom: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-lg);
}


/* ============================================
   HERO SECTION (LIFESTYLE DESIGN)
   ============================================ */

.hero-lifestyle {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: var(--space-4xl);
    overflow: hidden;
    background: rgba(224, 242, 241, 0.3);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Background Image */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(224, 242, 241, 0.15);
    z-index: 1;
}

/* Floating Colorful Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.floating-shape-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: #FBBF24;
    animation-duration: 12s;
}

.floating-shape-2 {
    top: 50%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: #06B6D4;
    animation-duration: 15s;
    animation-delay: -5s;
}

.floating-shape-3 {
    bottom: 10%;
    left: 30%;
    width: 350px;
    height: 350px;
    background: #EC4899;
    animation-duration: 18s;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Content Flex Layout */
.hero-content-flex {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    position: relative;
    z-index: 10;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .hero-content-flex {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2xl);
    }
}

/* Hero Text Content */
.hero-text-content {
    flex: 1;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .hero-text-content {
        max-width: 100%;
    }
}

.hero-title-large {
    font-size: 64px;
    font-weight: var(--weight-extrabold);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-lg);
    color: black;
    text-shadow: none;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 36px;
    }
}

.hero-subtitle-large {
    font-size: var(--text-xl);
    color: black;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: none;
}

@media (max-width: 768px) {
    .hero-subtitle-large {
        font-size: var(--text-lg);
    }
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }
}

/* Hero App Preview */
.hero-app-preview {
    flex: 0 0 auto;
    position: relative;
    width: 600px;
    height: 700px;
}

@media (max-width: 1024px) {
    .hero-app-preview {
        max-width: 300px;
    }
}

.hero-phone-mockup {
    width: 280px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-phone-mockup:hover {
    filter: brightness(1.1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    z-index: 10 !important;
    opacity: 1 !important;
}

/* Main phone - center front */
.hero-phone-mockup-main {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0.85;
    animation: floatPhone 6s ease-in-out infinite;
}

/* Second phone - left back */
.hero-phone-mockup-2 {
    left: -50px;
    top: 25%;
    transform: translate(0, -50%);
    z-index: 1;
    opacity: 0.85;
    animation: floatPhone2 7s ease-in-out infinite;
}

/* Third phone - right back */
.hero-phone-mockup-3 {
    right: -50px;
    top: 65%;
    transform: translate(0, -50%);
    z-index: 2;
    opacity: 0.85;
    animation: floatPhone3 8s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .hero-phone-mockup {
        width: 220px;
    }

    .hero-app-preview {
        width: 500px;
        height: 600px;
    }

    .hero-phone-mockup-main {
        top: 43%;
    }

    .hero-phone-mockup-2 {
        left: -30px;
        top: 28%;
    }

    .hero-phone-mockup-3 {
        right: -30px;
        top: 60%;
    }
}

@media (max-width: 768px) {
    .hero-phone-mockup {
        width: 180px;
    }

    .hero-app-preview {
        width: 400px;
        height: 500px;
    }

    .hero-phone-mockup-main {
        top: 42%;
    }

    .hero-phone-mockup-2 {
        left: -20px;
        top: 30%;
    }

    .hero-phone-mockup-3 {
        right: -20px;
        top: 58%;
    }
}

/* Floating Animations */
@keyframes floatPhone {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes floatPhone2 {
    0%, 100% {
        transform: translate(0, -50%) translateY(0) rotate(-5deg);
    }
    50% {
        transform: translate(0, -50%) translateY(-15px) rotate(-3deg);
    }
}

@keyframes floatPhone3 {
    0%, 100% {
        transform: translate(0, -50%) translateY(0) rotate(5deg);
    }
    50% {
        transform: translate(0, -50%) translateY(-25px) rotate(3deg);
    }
}

/* Legacy Hero Styles (Keep for other pages if needed) */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: var(--container-lg);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--weight-extrabold);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    max-width: 850px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: var(--space-xl);
    line-height: var(--leading-relaxed);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   PAGE HERO (Generic)
   ============================================ */

.page-hero {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    padding-top: 140px;
    padding-bottom: var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid var(--bg-tertiary);
    position: relative;
}

.page-hero .hero-content {
    max-width: 800px;
}

.page-hero .hero-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
    -webkit-text-fill-color: var(--text-primary);
    /* Reset gradient for generic pages */
}

.page-hero .hero-subtitle {
    font-size: var(--text-base);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COMMON SECTIONS & TYPOGRAPHY
   ============================================ */

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: var(--leading-tight);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #60A5FA 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

/* Add some sparkle to CTA */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}


.cta-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-sm);
    color: white;
    position: relative;
    z-index: 10;
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 10;
}

.cta-section .btn {
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-header {
    background: var(--bg-secondary);
    padding: 120px 0 var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid var(--bg-tertiary);
}

.legal-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.legal-date {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.legal-container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.legal-content h2 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.legal-content p,
.legal-content li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.legal-content li {
    margin-bottom: var(--space-xs);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: var(--weight-semibold);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary-light);
}

.legal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-3xl);
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    /* Indigo → Purple → Pink gradient */
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    padding-top: var(--space-3xl);
    border-top: none;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section-title {
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

/* ============================================
   GRID SYSTEM
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Colorful Feature Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
}

/* Different gradient for each feature */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--purple-dark), var(--blue));
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.feature-card:nth-child(7) .feature-icon {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.feature-card:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
}

.feature-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.value-props {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .value-props {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple-light), var(--pink));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.value-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-sm);
}

.value-description {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ============================================
   VALUE PROPS SECTION
   ============================================ */

.value-props-section {
    background: #FEF3C7;
    /* Light Yellow */
}

/* ============================================
   FEATURES GRID SECTION
   ============================================ */

.features-grid-section {
    background: #DBEAFE;
    /* Light Blue */
}

/* ============================================
   WEARABLES SECTION
   ============================================ */

.wearables-section {
    background: #FCE7F3;
    /* Light Pink */
    padding: var(--space-4xl) 0;
}

/* Wearables Carousel Container */
.wearables-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: var(--space-2xl);
    padding: var(--space-xl) 0;
    /* Fade masks on left/right edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    /* iOS touch handling */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

/* Scrolling Track */
.wearables-track {
    display: flex;
    width: fit-content;
    gap: var(--space-lg);
    /* Hardware acceleration for iOS */
    -webkit-animation: wearablesScroll 50s linear infinite;
    animation: wearablesScroll 50s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Pause animation on hover */
.wearables-carousel-container:hover .wearables-track {
    animation-play-state: paused;
}

/* Scroll Animation - WebKit prefixed for iOS */
@-webkit-keyframes wearablesScroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Move left by exactly 50% (one full set of items) */
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

/* Scroll Animation - Standard */
@keyframes wearablesScroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Move left by exactly 50% (one full set of items) */
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.wearable-card {
    flex: 0 0 auto;
    /* Prevent shrinking in carousel */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 140px;
    width: 160px;
    /* Fixed width for carousel */
    position: relative;
    overflow: hidden;
}

.wearable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wearable-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.wearable-card:hover::before {
    opacity: 1;
}

.wearable-logo-container {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wearable-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wearable-card:hover .wearable-logo-container img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.wearable-name {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--text-tertiary);
    text-align: center;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.wearable-card:hover .wearable-name {
    color: var(--text-primary);
}

.wearables-footer {
    margin-top: var(--space-3xl);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wearables-message {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .wearable-card:hover {
        transform: none;
        border-color: rgba(139, 92, 246, 0.1);
        box-shadow: none;
    }

    .wearable-card:hover::before {
        opacity: 0;
    }

    .wearable-card:hover .wearable-logo-container img {
        filter: grayscale(40%) opacity(0.8);
        transform: none;
    }

    .wearable-card:hover .wearable-name {
        color: var(--text-tertiary);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 640px) {
    .wearable-logo-container {
        width: 48px;
        height: 48px;
    }

    .wearable-card {
        padding: var(--space-md);
        min-height: 120px;
        width: 140px;
        /* Slightly smaller on mobile */
    }

    .wearables-track {
        gap: var(--space-md);
        /* Faster animation on mobile for better performance */
        -webkit-animation-duration: 40s;
        animation-duration: 40s;
    }
}

/* ============================================
   SCENARIO CAROUSEL SECTION
   ============================================ */

.scenario-section {
    background: #E0E7FF;
    /* Light Indigo */
    padding: var(--space-4xl) 0;
}

.scenario-carousel {
    margin-top: var(--space-3xl);
}

/* Scenario Tabs Navigation */
.scenario-tabs {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    border-bottom: 2px solid var(--bg-tertiary);
    padding-bottom: var(--space-sm);
}

.scenario-tab {
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.scenario-tab:hover {
    color: var(--primary);
}

.scenario-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    font-weight: var(--weight-bold);
}

@media (max-width: 768px) {
    .scenario-tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .scenario-tab {
        border-bottom: 1px solid var(--bg-tertiary);
        border-left: 3px solid transparent;
        padding: var(--space-md);
        text-align: left;
        bottom: 0;
    }

    .scenario-tab.active {
        border-left-color: var(--primary);
        border-bottom-color: var(--bg-tertiary);
        background: var(--bg-secondary);
    }
}

/* Scenario Content */
.scenario-content {
    position: relative;
    min-height: 600px;
}

.scenario-item {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.scenario-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scenario Visual (Lifestyle Image) */
.scenario-visual {
    width: 100%;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.scenario-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .scenario-image {
        height: 300px;
    }
}

/* Scenario Details (App + Text) */
.scenario-details {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

@media (max-width: 1024px) {
    .scenario-details {
        flex-direction: column;
        gap: var(--space-2xl);
    }
}

/* App Preview in Scenario */
.scenario-app-preview {
    flex: 0 0 auto;
}

.scenario-phone {
    width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .scenario-phone {
        width: 240px;
    }
}

/* Scenario Text Content */
.scenario-text {
    flex: 1;
}

.scenario-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: var(--leading-tight);
}

.scenario-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .scenario-text {
        text-align: center;
    }
}

/* ============================================
   APP SHOWCASE SECTION
   ============================================ */

.app-showcase-section {
    background: #D1FAE5;
    /* Light Green */
    padding: var(--space-4xl) 0;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

@media (max-width: 1024px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.app-showcase-item {
    text-align: center;
}

.app-screenshot {
    margin-bottom: var(--space-lg);
}

.app-phone {
    width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.app-phone:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.25);
    border-color: rgba(139, 92, 246, 0.2);
}

@media (max-width: 1024px) {
    .app-phone {
        width: 240px;
    }
}

.app-feature-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.app-feature-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: #FED7AA;
    /* Light Orange */
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.2);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-avatar {
    margin-bottom: var(--space-lg);
}

.avatar-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--bg-tertiary);
    padding-top: var(--space-md);
}

.author-name {
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.author-role {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}