/* Base styles and variables */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #8D6E63;
    --accent-color: #FF9800;
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-light: #FFFFFF;
    --background-color: #F5F5F5;
    --card-color: #FFFFFF;
    --border-radius: 12px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.app-container {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
    outline: none;
}

section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.secondary-btn {
    background-color: var(--card-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--card-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.nav-cta:after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #E8F5E9, var(--background-color));
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 500px;
}

.main-app-image {
    position: relative;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.floating-element {
    position: absolute;
}

.bamboo {
    top: 20%;
    right: 5%;
    z-index: 2;
    animation: rotate 15s linear infinite;
}

.leaf {
    bottom: 15%;
    left: 10%;
    z-index: 3;
    animation: floatReverse 7s ease-in-out infinite;
}

.timer {
    top: 10%;
    left: 15%;
    z-index: 4;
    animation: pulse 4s ease-in-out infinite;
}

.timer-circle {
    background-color: var(--card-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.timer-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timer-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Features section */
.features {
    background-color: var(--card-color);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* How it works section */
.how-it-works {
    background-color: var(--background-color);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 70px;
    left: 30px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: var(--primary-light);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.step-image {
    max-width: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.app-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    border-radius: 40px;
    background-color: var(--card-color);
    box-shadow: var(--shadow-lg);
    padding: 15px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    opacity: 0.5;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Testimonials section */
.testimonials {
    background-color: var(--card-color);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.results-summary {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 60px auto 0;
    gap: 20px;
}

.result-stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.result-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-stat p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Pricing section */
.pricing {
    background-color: var(--background-color);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--text-secondary);
    transition: var(--transition);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--card-color);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background-color: var(--accent-color);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan {
    background-color: var(--card-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: var(--transition);
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlighted {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.plan-features ul li.disabled {
    color: var(--text-secondary);
    opacity: 0.7;
}

.plan-features ul li.disabled i {
    color: #e57373;
}

.plan-cta {
    text-align: center;
    margin-bottom: 20px;
}

.money-back {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.guarantee-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 60px auto 0;
    background-color: var(--primary-light);
    padding: 20px 30px;
    border-radius: var(--border-radius);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.guarantee-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.guarantee-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* FAQ section */
.faq {
    background-color: var(--card-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--background-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: var(--card-color);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Download section */
.download {
    background: linear-gradient(to bottom, var(--background-color), #E8F5E9);
    position: relative;
    overflow: hidden;
}

.download-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.download-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.download-benefits {
    margin-bottom: 40px;
}

.download-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.download-benefits li i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.app-store-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.app-store-btn {
    height: 50px;
    transition: var(--transition);
}

.app-store-btn:hover {
    transform: translateY(-5px);
}

.qr-code {
    text-align: center;
    max-width: 120px;
}

.qr-code img {
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.download-image {
    flex: 1;
    position: relative;
    height: 500px;
}

.panda-download-img {
    position: relative;
    z-index: 5;
    animation: floatReverse 6s ease-in-out infinite;
}

.bamboo-download {
    bottom: 20%;
    right: 0;
    z-index: 2;
    animation: rotate 20s linear infinite;
}

.leaf-download {
    top: 15%;
    left: 10%;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
}

/* Taoism Inspiration section */
.taoism-inspiration {
    background-color: #F8F9FA;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.taoism-inspiration:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    opacity: 0.3;
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 0;
}

.inspiration-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.inspiration-content {
    flex: 2;
}

.inspiration-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.inspiration-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.inspiration-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.harmony-symbol {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

.bamboo-decoration {
    position: absolute;
    height: 300px;
    bottom: -50px;
    right: 50px;
    opacity: 0.7;
    z-index: -1;
}

.quote-box {
    background-color: var(--primary-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    position: relative;
}

.quote-box p {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.quote-box span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #212121;
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.app-store-links {
    display: flex;
    gap: 15px;
}

.app-store-links a img {
    height: 30px;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Scroll to top button */
#scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

#scroll-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

#scroll-top-btn.visible {
    display: flex;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--card-color);
    z-index: 2000;
    transition: var(--transition);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu {
    font-size: 1.5rem;
    background: none;
    color: var(--text-primary);
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-cta {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
}

.mobile-social {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 15px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

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

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta, .hero-stats {
        justify-content: center;
    }
    
    .download-container {
        flex-direction: column;
        text-align: center;
    }
    
    .download-benefits li {
        justify-content: center;
    }
    
    .app-store-buttons, .qr-code {
        margin-left: auto;
        margin-right: auto;
    }
    
    .inspiration-container {
        flex-direction: column;
    }
    
    .inspiration-image {
        order: -1;
    }
    
    .bamboo-decoration {
        right: 0;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .pricing-plan {
        max-width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat {
        width: 40%;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-nav {
        flex-wrap: wrap;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}