/* TidyGO Specific Styles - Extracted from wheremystuffWEB/index.html */
:root {
    /* 主品牌色系 - 基于APP设计规范 */
    --tidy-primary: #D77B4A;
    /* 主品牌色/强调色 - 亮橙色 */
    --tidy-secondary: #927453;
    /* 副色 - 用于辅助信息 */

    /* 棕色主题系统 - 用户界面主色调 */
    --tidy-card-primary: #DFC7B5;
    /* 温暖浅棕色 */
    --tidy-card-secondary: #E8D5C4;
    /* 柔和棕色 */
    --tidy-card-accent: #C8A882;
    /* 深棕色 */

    /* 背景色系统 */
    --tidy-bg-main-start: #ECE3DE;
    /* 主背景渐变起始色 - 淡雅浅棕 */
    --tidy-bg-main-end: #FFFFFF;
    /* 主背景渐变结束色 - 纯白 */
    --tidy-bg-card: #F8ECE1;
    /* 物品卡片背景色 - 温暖米色 */
    --tidy-bg-section-alt: #F3F1EC;
    /* 交替区域背景色 */

    /* 游戏化色彩 */
    --tidy-energy-yellow: #FFD700;
    /* 能量黄色 */
    --tidy-reminder-orange: #FFA726;
    /* 提醒橙色 */

    --tidy-text-primary: #2C3E50;
    --tidy-text-secondary: #596275;
}

/* Scope styles to avoid conflicts with main site */
body.page-tidygo {
    background: #F8F6F2;
    color: var(--tidy-text-primary);
}

.page-tidygo section {
    padding: 100px 0;
}

.page-tidygo h1,
.page-tidygo h2,
.page-tidygo h3 {
    font-weight: 300;
    margin-bottom: 0.6em;
    color: var(--tidy-text-primary);
}

.page-tidygo h1 {
    font-size: 3.6rem;
    line-height: 1.5;
    letter-spacing: -1.5px;
}

.page-tidygo h2 {
    font-size: 1.5rem;
    line-height: 1.4;
}

.page-tidygo h3 {
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Hero Section */
#tidy-hero {
    background: linear-gradient(135deg, var(--tidy-bg-section-alt) 0%, var(--tidy-bg-main-end) 100%);
    /* background-image: url('../images/tidygo/iv88vyu4al.png'); No local background image found in dir list, using gradient for now or check assets */
    background-size: cover;
    background-position: center;
    padding: 102px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#tidy-hero h1 {
    background: linear-gradient(135deg, var(--tidy-primary), var(--tidy-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

#tidy-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--tidy-text-secondary);
}

.hero-visual {
    margin-top: 56px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(44, 62, 80, 0.03);
    overflow: hidden;
    background: #FFF;
    padding: 16px;
}

.hero-visual img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* Problem/Solution */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-description h3 {
    color: var(--tidy-reminder-orange);
    font-weight: 600;
}

.solution-description h2 {
    color: var(--tidy-primary);
}

.problem-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(200, 168, 130, 0.05);
}

/* Features */
.tidy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tidy-feature-item {
    background: #FFF;
    padding: 40px 18px 32px 18px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(200, 168, 130, 0.05);
    text-align: center;
    transition: box-shadow 0.2s;
}

.tidy-feature-item:hover {
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
}

.tidy-feature-icon {
    display: block;
    margin: 0 auto 12px auto;
    width: 40px;
    height: 40px;
}

.tidy-feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--tidy-text-primary);
    font-weight: 600;
}

/* Gamification */
#gamification {
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.1) 0%,
            rgba(255, 167, 38, 0.1) 50%,
            rgba(215, 123, 74, 0.1) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#gamification h2 {
    background: linear-gradient(135deg, var(--tidy-energy-yellow), var(--tidy-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.planet-evolution {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.planet-stage {
    text-align: center;
    width: 340px;
    background: rgba(255, 255, 255, 0.85);
    padding: 48px 24px 36px 24px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(107, 79, 39, 0.06);
    position: relative;
}

.planet-stage img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #FFF;
    position: relative;
    z-index: 1;
}

/* CTA */
#tidy-cta {
    background: linear-gradient(135deg,
            var(--tidy-primary) 0%,
            var(--tidy-secondary) 50%,
            var(--tidy-card-accent) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

#tidy-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tidy-btn {
    display: inline-block;
    padding: 12px 36px;
    background-color: var(--tidy-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1.08rem;
    transition: background 0.2s;
}

.tidy-btn:hover {
    background-color: #C26A3A;
}

.cta-btn-large {
    background: linear-gradient(90deg, #ffb86c 0%, #ff7e5f 100%);
    padding: 14px 48px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 2px 12px rgba(255, 126, 95, 0.13);
}

.qr-code-final {
    width: 150px;
    height: 150px;
    margin: 40px auto 28px auto;
    border-radius: 42px;
    border: 1px solid #a68e6d;
    box-shadow: 0 4px 24px rgba(107, 79, 39, 0.18);
    background: #fff;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 80%, rgba(255, 255, 255, 0.54) 100%);
    border-radius: 32px;
    padding: 38px 44px;
    text-align: left;
    min-height: 200px;
}

.cta-cards-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .page-tidygo section {
        padding: 60px 0;
    }

    .page-tidygo h1 {
        font-size: 2.2rem;
    }

    .cta-cards-row {
        flex-direction: column;
    }
}