﻿/* ========================================
   楣块福鍔╁ - V2 Landing Page Styles
   Design: 鍙傝€冭璁＄椋庢牸
   ======================================== */

/* CSS Variables */
:root {
    --bg-page: #ffffff;
    --bg-soft: #f4faf6;
    --bg-card: #e8f5ec;
    --bg-card-2: #d8eedd;
    --border-soft: #c8e6d2;
    
    --green-600: #3aa356;
    --green-500: #52b56b;
    --green-400: #7bcc8d;
    --green-300: #a3d9b0;
    
    --text-primary: #1a1f1b;
    --text-secondary: #5a6b60;
    --text-muted: #8a9a8f;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    --shadow-card: 0 12px 40px rgba(60, 130, 80, 0.12);
    --shadow-btn: 0 8px 24px rgba(82, 181, 107, 0.4);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.92);
    padding: 16px 40px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo-circle {
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(82, 181, 107, 0.15);
}
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    line-height: 1;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-page) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.hero-title .hero-title-em {
    display: inline-block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-date {
    font-size: 14px;
    color: var(--green-500);
    margin-bottom: 32px;
    font-family: monospace;
}

.hero-cta {
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(77, 171, 247, 0.5);
}

.hero-trust {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-trust span:nth-child(even) {
    color: var(--text-muted);
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-illustration {
    width: 100%;
    height: auto;
}

/* ========================================
   Scenario Section
   ======================================== */
.scenario {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-page) 100%);
}

.scenario-panel {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 56px 56px 48px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    color: #0f172a;
    position: relative;
}

.scenario-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.scenario-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #0f172a;
    background-clip: initial;
    line-height: 1.1;
    text-align: left;
}

.scenario-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.scenario-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin: 0 -8px 36px;
    padding: 4px 8px 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scenario-track::-webkit-scrollbar { display: none; }

.scenario-card {
    flex: 0 0 calc((100% - 66px) / 4);
    max-width: 290px;
    scroll-snap-align: start;
    min-width: 0;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,23,42,0.10);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15,23,42,0.16);
}

.scenario-media {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #e2e8f0;
}

.scenario-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scenario-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green-500);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.scenario-info {
    padding: 16px 18px 20px;
}

.scenario-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.scenario-meta {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.scenario-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scenario-cta {
    display: inline-block;
    background: var(--green-500);
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.scenario-cta:hover { background: var(--green-600); border-color: var(--green-600); }

.scenario-arrows {
    display: flex;
    gap: 10px;
}

.scenario-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.scenario-arrow:hover {
    background: var(--green-500);
    color: #fff;
    border-color: var(--green-500);
}

@media (max-width: 900px) {
    .scenario { padding: 60px 20px; }
    .scenario-panel { padding: 36px 24px 32px; border-radius: 22px; }
    .scenario-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
    .scenario-title { font-size: 26px; }
    .scenario-card { flex: 0 0 calc(50% - 11px); max-width: 260px; }
    .scenario-track { margin-bottom: 28px; }
}

@media (max-width: 560px) {
    .scenario-card { flex: 0 0 75%; max-width: 260px; }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 100px 40px;
    background: var(--bg-page);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.features-title {
    font-size: 40px;
    font-weight: 700;
}

.features-actions {
    display: flex;
    gap: 12px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: var(--bg-card-2);
    color: var(--text-primary);
}

.btn-secondary {
    padding: 10px 20px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--bg-card-2);
    color: var(--text-primary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.card-blue {
    background: linear-gradient(145deg, #52b56b 0%, #3aa356 100%);
    border: 1px solid rgba(82, 181, 107, 0.3);
}

.card-white {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-teal {
    background: linear-gradient(145deg, #e8f5ec 0%, #d8eedd 100%);
    border: 1px solid rgba(82, 181, 107, 0.3);
}

.card-pink {
    background: linear-gradient(145deg, #fbfaf5 0%, #f5f7f3 100%);
    border: 1px solid rgba(82, 181, 107, 0.2);
}

/* Card Content */
.card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.card-icon.teal {
    background: var(--teal-500);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-white .card-title {
    color: var(--text-dark);
}

.card-blue .card-title,
.card-blue .card-desc {
    color: #ffffff;
}

.card-blue .metric-value {
    color: #e8f5ec;
}

.card-blue .metric-label {
    color: rgba(255, 255, 255, 0.7);
}

.card-pink .card-title {
    color: var(--text-dark);
}

.card-pink .card-desc {
    color: var(--text-secondary);
}

.card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-white .card-desc {
    color: #64748b;
}

.card-metric {
    margin-bottom: 12px;
}

.metric-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--green-500);
}

.card-white .metric-value {
    color: var(--text-dark);
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.card-white .metric-label {
    color: #94a3b8;
}

.card-price {
    margin-bottom: 12px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--teal-500);
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.card-rating {
    font-size: 14px;
    color: var(--yellow-500);
    letter-spacing: 2px;
}

.card-rating.teal {
    color: var(--teal-500);
}

.card-rating.pink {
    color: var(--pink-500);
}

/* Card Chart (Card 2) */
.card-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--green-500) 0%, var(--green-400) 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--green-500) 0%, var(--teal-500) 100%);
}

/* Card Document (Card 4) */
.card-doc {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.doc-header {
    width: 60%;
    height: 8px;
    background: var(--pink-500);
    border-radius: 4px;
    margin-bottom: 12px;
}

.doc-line {
    width: 100%;
    height: 6px;
    background: var(--bg-card-2);
    border-radius: 3px;
    margin-bottom: 8px;
}

.doc-line.short {
    width: 60%;
}

.doc-check {
    width: 20px;
    height: 20px;
    background: var(--green-500);
    border-radius: 50%;
    margin-top: 12px;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: 80px 40px;
    background: var(--bg-soft);
}

.how-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.how-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.how-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.how-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.how-row-labels {
    gap: 32px;
}

.step-arrow-spacer {
    width: 40px;
    flex-shrink: 0;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    flex-shrink: 0;
    box-shadow: var(--shadow-btn);
}

.step-text {
    font-size: 16px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.step-arrow {
    font-size: 24px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 80px 40px;
    background: var(--bg-page);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.about-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-card);
    padding: 60px 40px;
    border-top: 1px solid var(--border-soft);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 1px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green-500);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .features {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-row {
        flex-direction: column;
        gap: 12px;
    }

    .how-row-labels {
        gap: 16px;
    }

    .step-arrow-spacer {
        display: none;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}























/* ========================================
   Features & Pricing Section
   ======================================== */
.pricing-section {
    padding: 80px 24px;
    background: var(--bg-page);
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 36px;
}

.pricing-title-2 {
    margin-top: 72px;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.chip-icon {
    font-size: 22px;
    line-height: 1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 24px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-page);
    border: 2px solid var(--border-soft);
    border-radius: 20px;
    padding: 36px 28px 32px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.price-card-featured {
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 100%);
    border-color: var(--green-500);
    color: #fff;
}

.price-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--green-600);
    margin-bottom: 16px;
}

.price-card-featured .price-tag {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.price-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.price-card-featured .price-name {
    color: #fff;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.price-card-featured .price-currency {
    color: #fff;
}

.price-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-card-featured .price-value {
    color: #fff;
}

.price-meta {
    font-size: 14px;
    color: var(--text-secondary);
}

.price-card-featured .price-meta {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .pricing-title { font-size: 28px; }
    .pricing-title-2 { margin-top: 56px; }
    .features-grid-compact { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 360px; }
    .price-value { font-size: 48px; }
}


/* chip 描述行 */
.feature-chip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 18px;
    gap: 8px;
}

.chip-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.chip-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* 推荐徽章 */
.price-card {
    padding-top: 40px;
}

.price-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

/* CTA 按钮 */
.price-cta {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--green-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--green-500);
    transition: transform .2s ease, background .2s ease;
}

.price-cta:hover {
    background: var(--green-500);
    color: #fff;
    transform: translateY(-2px);
}

.price-cta-featured {
    background: #fff;
    color: var(--green-600);
    border-color: #fff;
}

.price-cta-featured:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--green-600);
    border-color: #fff;
}

.price-saving {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
}

@media (max-width: 768px) {
    .price-badge { right: 16px; }
}


/* ========================================
   Features Rows (How-it-works style)
   ======================================== */
.how-row-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 64px;
    text-align: left;
}

.how-row-section.reverse .how-row-mock { order: 1; }
.how-row-section.reverse .how-row-text { order: 2; }

.how-row-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-btn);
}

.how-row-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px;
}

.how-row-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 22px;
}

.how-row-cta {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 999px;
    background: var(--green-500);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-btn);
    transition: transform .2s ease, background .2s ease;
}

.how-row-cta:hover {
    transform: translateY(-2px);
    background: var(--green-600);
}

.how-row-mock { display: flex; justify-content: center; }

.mock-panel {
    background: #d8eedd;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-screen {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 24px rgba(60, 130, 80, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Todo mock */
.mock-todo-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mock-todo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.mock-todo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--bg-soft);
    border-radius: 8px;
    color: var(--text-primary);
}

.mock-todo-item.done { color: var(--text-muted); text-decoration: line-through; }
.mock-todo-item.active { background: var(--bg-card); font-weight: 600; }

.mock-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-500);
    flex-shrink: 0;
}

.mock-dot.empty {
    background: transparent;
    border: 2px solid var(--border-soft);
}

/* Radar mock */
.mock-radar { width: 100%; max-width: 200px; margin: 0 auto; display: block; }
.mock-score {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}
.mock-score strong { color: var(--green-600); font-size: 18px; }

/* Stats mock */
.mock-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.mock-stat {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 8px 4px;
    text-align: center;
}

.mock-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-600);
}

.mock-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 6px;
    height: 100px;
    padding: 0 4px;
}

.mock-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--green-400), var(--green-500));
    border-radius: 6px 6px 0 0;
    position: relative;
    min-height: 8px;
}

.mock-bar span {
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
}

.mock-foot {
    margin-top: 24px;
    padding: 8px 10px;
    background: var(--bg-soft);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-primary);
    text-align: center;
}

@media (max-width: 768px) {
    .how-row-section { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
    .how-row-section.reverse .how-row-mock { order: 2; }
    .how-row-section.reverse .how-row-text { order: 1; }
    .mock-panel { max-width: 320px; }
}



.hero-title-em {
    font-size: 1.5em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.08em;
    letter-spacing: -0.02em;
}


.hero-title-em {
    font-size: 1.7em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.08em;
    letter-spacing: -0.02em;
    line-height: 0.95;
}



.hero-title .hero-title-em {
    font-size: 1.5em;
    font-weight: 900;
    line-height: 1.15;
    display: inline-block;
    margin-top: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: baseline;
}

.hero-title {
    line-height: 1.25;
}


/* Scroll offset for anchor targets (sticky header offset) */
#features-title, #pricing-title, #about, #highlights {
    scroll-margin-top: 84px;
}

