* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', 'datatype', sans-serif;
    overflow-x: hidden;
    background: white;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding:20px 0 20px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    margin-top: -110px;
    background: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: white;
}

#bgCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.header {
    position: fixed; /* Changed from absolute to fixed for proper header behavior */
    top: 0;
    left: 0;
    width: 100%;
    padding: 9px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Increased z-index for better layering */
    backdrop-filter: blur(10px);
    background: #427D2B;
    border-bottom: 2px solid #0276447b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.22);
    min-height: 48px;
    font-family: 'Manrope', sans-serif;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 7.2px;
    color: white;
    font-size: 14.4px;
    font-weight: 700;
}

.logo h1 {
    margin: 0;
    padding: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.leaf-icon {
    font-size: 19.2px;
    animation: bounce 2s infinite;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #52b788;
    transform: translateY(-2px);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #52b788;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.bookmarks-open-btn {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bookmarks-open-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.bookmarks-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2600;
    padding: 18px;
}

.bookmarks-overlay.visible {
    display: flex;
}

.bookmarks-panel {
    width: min(560px, 100%);
    max-height: min(80vh, 680px);
    overflow: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.bookmarks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.bookmarks-title {
    color: #1B5E20;
    font-size: 1.2rem;
    font-weight: 800;
}

.bookmarks-close {
    border: 1px solid #d9e7d3;
    background: #f8fff5;
    color: #1B5E20;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
    cursor: pointer;
}

.bookmarks-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.bookmarks-item {
    border: 1px solid #e1ebdb;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fbfef9;
}

.bookmarks-name {
    font-weight: 700;
    color: #1B5E20;
}

.bookmarks-actions {
    display: flex;
    gap: 8px;
}

.bookmark-link-btn,
.bookmark-delete-btn {
    border: 1px solid #d2e3cb;
    border-radius: 9px;
    background: #ffffff;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.bookmark-link-btn {
    color: #1B5E20;
}

.bookmark-delete-btn {
    color: #8c2f2f;
}

.bookmarks-empty {
    border: 1px dashed #c7d9bf;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: #4f6c43;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.2);
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease;
}

.nav-toggle-bar::before {
    top: -6px;
}

.nav-toggle-bar::after {
    top: 6px;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 27, 16, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 900;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(4.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b5e20;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 1.0;
    font-weight: 400;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Manrope', sans-serif;
}

.cta-primary, .cta-secondary {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(45deg, #6bc90081, #519c0077);
    color: #fff;
    box-shadow: 0 10px 30px rgba(82, 183, 136, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 181, 106, 0.2);
    opacity: 1;
    font-family: 'Manrope', sans-serif;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(82, 183, 136, 0.6);
}

.cta-secondary {
    background: transparent;
    color: #0b3b29;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: #0b3b29;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes grow {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 9px 14px;
        flex-direction: row;
        gap: 12px;
    }

    .logo {
        font-size: 12px;
    }

    .logo h1 {
        font-size: 12px;
    }

    .leaf-icon {
        font-size: 16.8px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -270px;
        height: 100vh;
        width: 270px;
        flex-direction: column;
        gap: 12px;
        padding: 80px 20px 20px;
        background: #1B5E20;
        box-shadow: -16px 0 30px rgba(0,0,0,0.25);
        transition: right 0.25s ease;
        z-index: 1100;
    }

    .nav a {
        margin-left: 0;
        font-size: 1.05rem;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav a::after {
        display: none;
    }

    .bookmarks-open-btn {
        width: 100%;
        border-radius: 10px;
        text-align: left;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 0;
        font-size: 1.05rem;
    }

    .bookmarks-panel {
        padding: 14px;
        border-radius: 12px;
    }

    .bookmarks-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .bookmarks-actions {
        width: 100%;
    }

    .bookmark-link-btn,
    .bookmark-delete-btn {
        flex: 1;
    }

    .nav-toggle {
        display: flex;
    }

    body.nav-open .nav {
        right: 0;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-content {
        padding: 0 15px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer {
        padding: 20px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 7.2px 9px;
        gap: 9px;
    }

    .logo {
        font-size: 10.8px;
    }

    .logo h1 {
        font-size: 10.8px;
    }

    .leaf-icon {
        font-size: 14.4px;
    }

    .nav a {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 3rem);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 30px;
        font-size: 0.95rem;
        max-width: 250px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer {
        padding: 15px 10px;
        font-size: 0.85em;
    }
}

.plant-guide {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fff5 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.guide-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.slide-content.reverse {
    flex-direction: row-reverse;
}

.card-side, .desc-side {
    flex: 1;
    min-width: 0;
}

.desc-side {
    --blur-amount: 4px;
    filter: blur(var(--blur-amount));
    transition: filter 0.2s linear;
}

.desc-side.revealed {
    filter: blur(0px);
}

.left-card, .left-desc { text-align: left; }
.right-card, .right-desc { text-align: right; }

.guide-card {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border: 1px solid rgba(123, 179, 66, 0.22);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 20px;
    opacity: 0;
}

.guide-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.5), rgba(139, 195, 74, 0.3), rgba(124, 179, 66, 0.5));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
}

.guide-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 45px 90px rgba(0,0,0,0.18);
    border-color: #7CB342;
}

.card-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.guide-card h3 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 700;
}

.guide-card p {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.soil-types, .flower-blooms, .fruit-icons, .herb-leaves, .veggie-roots {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.soil-types span, .flower-blooms span, .fruit-icons span, .herb-leaves span, .veggie-roots span {
    font-size: 1rem;
    padding: 10px 20px;
    background: rgba(168,230,207,0.3);
    border-radius: 25px;
    animation: popIn 0.6s ease forwards;
    opacity: 0;
    transform: scale(0);
}

.veggie-roots span {
    font-size: 0.875rem;
    padding: 10px 20px;
    background: rgba(168,230,207,0.3);
    border-radius: 25px;
    animation: popIn 0.6s ease forwards;
    opacity: 0;
    transform: scale(0);
}

.water-drop {
    font-size: 6rem;
    margin-top: 20px;
    animation: drip 2s infinite;
}

@keyframes drip {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 40px;
    color: #2d5016;
}

.desc-content {
    background: rgba(255,255,255,0.7);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vegetables-slide .desc-content {
    gap: 0;
}

.vegetables-slide .desc-content .highlight {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.45;
}

.vegetables-slide .desc-content .highlight + .highlight {
    margin-top: 0;
}

.vegetables-slide .desc-content .pro-tips {
    margin-top: 14px;
}

.vegetables-slide .desc-content .pro-tips li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.soil-slide .desc-content,
.watering-slide .desc-content,
.flowers-slide .desc-content,
.fruits-slide .desc-content,
.herbs-slide .desc-content {
    gap: 0;
}

.soil-slide .desc-content .highlight,
.watering-slide .desc-content .highlight,
.flowers-slide .desc-content .highlight,
.fruits-slide .desc-content .highlight,
.herbs-slide .desc-content .highlight {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.45;
}

.soil-slide .desc-content .highlight + .highlight,
.watering-slide .desc-content .highlight + .highlight,
.flowers-slide .desc-content .highlight + .highlight,
.fruits-slide .desc-content .highlight + .highlight,
.herbs-slide .desc-content .highlight + .highlight {
    margin-top: 0;
}

.soil-slide .desc-content .pro-tips,
.watering-slide .desc-content .pro-tips,
.flowers-slide .desc-content .pro-tips,
.fruits-slide .desc-content .pro-tips,
.herbs-slide .desc-content .pro-tips {
    margin-top: 14px;
}

.soil-slide .desc-content .pro-tips li,
.watering-slide .desc-content .pro-tips li,
.flowers-slide .desc-content .pro-tips li,
.fruits-slide .desc-content .pro-tips li,
.herbs-slide .desc-content .pro-tips li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #2d5016;
}

.ph-meter {
    margin: 40px 0;
}

.meter-track {
    width: 100%;
    height: 25px;
    background: #e8f5e8;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 3px 8px rgba(0,0,0,0.1);
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #a8e6cf, #dcedc1);
    width: 0;
    transition: width 3s ease-out;
    box-shadow: 0 0 20px rgba(168,230,207,0.6);
}

.ph-label {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #4a7c59;
    margin-top: 15px;
}

.pro-tips {
    list-style: none;
    margin-top: 30px;
}

.pro-tips li {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInTip 0.8s ease forwards;
}

.pro-tips li:nth-child(1) { animation-delay: 0.1s; }
.pro-tips li:nth-child(2) { animation-delay: 0.2s; }
.pro-tips li:nth-child(3) { animation-delay: 0.3s; }

.pro-tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #a8e6cf, #dcedc1);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(168,230,207,0.4);
}

@keyframes slideInTip {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.watering-wheel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.wheel-item {
    background: rgba(116,185,255,0.3);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    transition: all 0.4s ease;
}

.wheel-item:hover {
    transform: scale(1.05);
    background: rgba(116,185,255,0.5);
}

.finger-test-demo, .sun-rays, .fruit-tree-anim, .harvest-demo, .veggie-grid {
    font-size: 3rem;
    margin: 40px 0;
    text-align: center;
}

.veggie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.veggie-grid span {
    padding: 20px;
    background: rgba(102,126,234,0.2);
    border-radius: 20px;
    font-weight: 600;
}

.guide-slide {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

.guide-slide.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .slide-content {
        flex-direction: column;
        gap: 60px;
        padding: 0 20px;
    }

    .slide-content.reverse {
        flex-direction: column;
    }

    .left-card, .right-card, .left-desc, .right-desc {
        text-align: center !important;
    }

    .guide-card, .desc-content {
        padding: 40px 25px;
        min-height: auto;
    }

    .slide-title {
        font-size: clamp(2.2rem, 5vw, 4rem);
        margin-bottom: 30px;
    }

    .highlight {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .pro-tips li {
        font-size: 1.1rem;
        padding-left: 35px;
    }

    .watering-wheel {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wheel-item {
        padding: 20px;
        font-size: 0.9em;
    }

    .finger-test-demo, .sun-rays, .fruit-tree-anim, .harvest-demo, .veggie-grid {
        font-size: 2.5rem;
        margin: 30px 0;
    }

    .veggie-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .plant-guide {
        padding: 60px 0;
    }

    .guide-card, .desc-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .highlight {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .card-icon {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .guide-card h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .guide-card p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .soil-types, .flower-blooms, .fruit-icons, .herb-leaves, .veggie-roots {
        gap: 10px;
        flex-wrap: wrap;
    }

    .soil-types span, .flower-blooms span, .fruit-icons span, .herb-leaves span, .veggie-roots span {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .water-drop {
        font-size: 5rem;
        margin-top: 15px;
    }

    .ph-meter {
        margin: 30px 0;
    }

    .meter-track {
        height: 20px;
    }

    .pro-tips {
        margin-top: 20px;
    }

    .pro-tips li {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-left: 30px;
    }

    .pro-tips li::before {
        width: 20px;
        height: 20px;
        top: 3px;
    }

    .watering-wheel {
        margin: 30px 0;
    }

    .finger-test-demo, .sun-rays, .fruit-tree-anim, .harvest-demo, .veggie-grid {
        font-size: 2rem;
        margin: 25px 0;
    }

    .veggie-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .veggie-grid span {
        padding: 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .plant-guide {
        padding: 40px 0;
    }

    .guide-card, .desc-content {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .highlight {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .card-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .guide-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .guide-card p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .soil-types, .flower-blooms, .fruit-icons, .herb-leaves, .veggie-roots {
        gap: 8px;
    }

    .soil-types span, .flower-blooms span, .fruit-icons span, .herb-leaves span, .veggie-roots span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .water-drop {
        font-size: 4rem;
        margin-top: 12px;
    }

    .ph-meter {
        margin: 25px 0;
    }

    .meter-track {
        height: 18px;
    }

    .pro-tips li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 25px;
    }

    .watering-wheel {
        margin: 25px 0;
        gap: 12px;
    }

    .wheel-item {
        padding: 15px;
        font-size: 0.85em;
    }

    .finger-test-demo, .sun-rays, .fruit-tree-anim, .harvest-demo, .veggie-grid {
        font-size: 1.8rem;
        margin: 20px 0;
    }

    .veggie-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
    }

    .veggie-grid span {
        padding: 12px;
        font-size: 0.8em;
    }
}

/* === Mobile Enhancements === */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        max-width: 100%;
        padding: 0 20px;
    }

    .cta-primary,
    .cta-secondary {
        min-height: 50px;
        width: 100%;
        max-width: 300px;
        font-size: 1.1rem;
        border-radius: 25px;
    }

    .cta-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
}

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

    .hero-content {
        padding: 0 15px;
    }

    .cta-primary,
    .cta-secondary {
        min-height: 45px;
        font-size: 1rem;
        max-width: 280px;
    }

    .cta-buttons {
        max-width: 300px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
}
