:root {
    --primary-green: #00A651;
    --primary-light: #00c862;
    --primary-dark: #008f45;
    --secondary-dark: #0f172a;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-green: 0 10px 25px -5px rgba(0, 166, 81, 0.2);
    --radius-full: 500px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 80px;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.breadcrumb {
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgb(0 143 69);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.visible-h1 {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nursery-crosslinks {
    padding: 60px 20px;
    background: var(--bg-soft);
}

.crosslinks-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.crosslinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.crosslink-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.crosslink-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-green);
}

.crosslink-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.crosslink-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.crosslink-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   TOP NAVIGATION
======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #009046;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    margin: 0;
}

.top-nav.scrolled {
    height: 70px;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 166, 81, 0.2));
}

.nav-brand:hover .brand-logo {
    transform: scale(1.1) rotate(-5deg);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.brand-florian {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-florian {
    color: var(--secondary-dark);
}

.brand-bd {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-bd {
    color: #00703a;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: var(--radius-full);
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.top-nav.scrolled .nav-link {
    color: var(--text-muted);
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

.top-nav.scrolled .nav-link:hover {
    color: var(--secondary-dark);
}

.nav-link:hover i {
    transform: translateY(-2px) scale(1.1);
}

.nav-link.active {
    color: white !important;
    background: #006b32;
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

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

.nav-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.top-nav.scrolled .nav-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--secondary-dark);
}

.nav-btn:hover {
    background: #006b32;
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

.top-nav.scrolled .nav-btn:hover {
    background: #006b32;
    color: white;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .mobile-menu-btn {
    color: var(--secondary-dark);
}

.top-nav.scrolled .mobile-menu-btn span {
    background: var(--secondary-dark);
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px auto;
    transition: var(--transition-smooth);
    border-radius: 10px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================
   SIDEBAR
======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    visibility: hidden;
}

.sidebar-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.sidebar-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sidebar-brand-text {
    font-weight: 800;
}

.sidebar-brand-text .brand-florian {
    color: var(--secondary-dark);
}

.sidebar-brand-text .brand-bd {
    color: var(--primary-green);
}

.sidebar-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--bg-soft);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.sidebar-content {
    flex: 1;
    padding: 0 40px 40px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, rgba(0, 166, 81, 0.2), transparent);
    flex: 1;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sidebar-menu a:hover {
    background: white;
    color: var(--primary-green);
    border-color: rgba(0, 166, 81, 0.1);
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-footer {
    padding: 40px;
    background: var(--bg-soft);
    border-top: 1px solid #f1f5f9;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.quick-contact i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-wrapper {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

/* ========================================
   POLICY HEADER (HERO)
======================================== */
.policy-header.nursery-hero {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0a5e30 100%);
    padding: 180px 20px 220px;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    overflow: hidden;
    text-align: center;
    z-index: 10;
}

.policy-header.nursery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.nursery-hero .header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.nursery-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.nursery-hero .last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.policy-header.nursery-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.4));
    pointer-events: none;
}

.story-ledger {
    position: absolute;
    top: 15px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
    pointer-events: none;
}

.visible-h1 {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.type-cursor {
    animation: blink 0.8s infinite;
    color: var(--primary-light);
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.header-glass-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.4));
    pointer-events: none;
}

.ledger-tag {
    padding: 5px 5px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.ledger-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 100px;
    box-shadow: 0 0 8px var(--primary-light);
}

.ledger-tag.impact {
    animation: ledgerBuild 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ledgerBuild {
    0% {
        transform: translateX(-30px) scale(0.8);
        opacity: 0;
        letter-spacing: 10px;
        filter: blur(10px);
    }

    40% {
        opacity: 0.5;
        letter-spacing: 5px;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
        letter-spacing: 2px;
        filter: blur(0);
    }
}

/* ========================================
   NURSERY INTRO SECTION
======================================== */
.nursery-intro {
    padding: 80px 20px;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.nursery-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 80%, rgba(0, 166, 81, 0.04) 0%, transparent 100%),
        radial-gradient(ellipse 400px 400px at 90% 20%, rgba(0, 166, 81, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.nursery-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.15), transparent);
}

.nursery-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.nursery-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.04));
    border: 1px solid rgba(0, 166, 81, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.nursery-intro-badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
}

.nursery-intro-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nursery-intro-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.nursery-intro-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 40px;
}

.nursery-intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.nursery-intro-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: left;
}

.nursery-intro-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.15);
}

.nif-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.04));
    border-radius: 12px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.nif-text {
    display: flex;
    flex-direction: column;
}

.nif-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.nif-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1px;
}

@media (max-width: 640px) {
    .nursery-intro-features {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .nursery-intro {
        padding: 60px 20px;
    }
}

/* ========================================
   STATS STRIP
======================================== */
.stats-strip {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #059669 50%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.stats-strip-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.strip-stat {
    padding: 20px 10px;
    position: relative;
}

.strip-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.strip-stat-num {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.strip-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   WHY BEST SECTION
======================================== */
.why-best-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.why-best-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--primary-green) 25%, var(--primary-light) 50%, var(--primary-green) 75%, transparent 95%);
    opacity: 0.4;
}

.why-best-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-best-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.why-best-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.why-best-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
    border-radius: 0 0 3px 3px;
}

.why-best-card:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}

.why-best-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.why-best-card .card-icon {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-best-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.25);
    border-radius: 50%;
}

.why-best-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.why-best-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========================================
   QUALITY SECTION
======================================== */
.quality-section {
    padding: 100px 2rem;
    background: var(--bg-soft);
    position: relative;
}

.quality-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.quality-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    transition: width 0.45s ease;
    border-radius: 3px 3px 0 0;
}

.quality-card:hover::before {
    width: 80%;
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 166, 81, 0.06);
    border-color: rgba(0, 166, 81, 0.1);
}

.quality-card i {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 18px;
    display: block;
    transition: var(--transition-smooth);
}

.quality-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-dark);
}

.quality-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.quality-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   NURSERY KNOWLEDGE SECTION (Typewriter)
======================================== */
.nursery-knowledge-section {
    position: relative;
    padding: 150px 2rem 170px;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(0, 166, 81, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(180, 130, 80, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(0, 166, 81, 0.015) 0%, transparent 50%),
        linear-gradient(180deg, #fcfbf7 0%, #f8f7f1 40%, #f2f4ed 70%, #fcfbf7 100%);
    overflow: hidden;
    isolation: isolate;
}

.nursery-knowledge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    pointer-events: none;
}

.nursery-knowledge-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.nkn-gl {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    animation: nknGlFloat 35s ease-in-out infinite alternate;
}

.nkn-gl-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 166, 81, 0.04);
    top: 10%;
    left: -15%;
}

.nkn-gl-2 {
    width: 500px;
    height: 500px;
    background: rgba(180, 130, 80, 0.03);
    bottom: 5%;
    right: -10%;
    animation-delay: -14s;
}

@keyframes nknGlFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -60px) scale(1.1);
    }
}

.nkn-texture {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.nkn-edge-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.12) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.nkn-edge-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.12) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.nursery-knowledge-container {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nursery-knowledge-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.nursery-knowledge-header::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(0, 166, 81, 0.08), transparent);
}

.nkh-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
    position: relative;
}

.nkh-ornament::before,
.nkh-ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.2));
}

.nkh-ornament::after {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.2), transparent);
}

.nkho-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(0, 166, 81, 0.25);
    letter-spacing: 2px;
    position: relative;
}

.nkho-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 166, 81, 0.08);
    animation: nkhoPulse 3s ease-in-out infinite;
}

@keyframes nkhoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
        border-color: rgba(0, 166, 81, 0.02);
    }
}

.nkho-icon i {
    transition: transform 0.4s ease;
}

.nkho-icon:hover i {
    transform: rotate(-10deg) scale(1.1);
}

.nursery-knowledge-header .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.nursery-knowledge-header .section-title .text-gradient {
    background: linear-gradient(135deg, var(--primary-green), #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nursery-knowledge-header .section-title .text-gradient::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.2;
    border-radius: 2px;
}

.nkn-header-sub {
    font-size: 0.92rem;
    color: #78716c;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

.nkh-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.nkh-sep-line {
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(0, 166, 81, 0.1);
}

.nkh-sep-icon {
    font-size: 0.45rem;
    color: rgba(0, 166, 81, 0.15);
    animation: nkhSepPulse 2.5s ease-in-out infinite;
}

@keyframes nkhSepPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.nkn-essay {
    position: relative;
}

.nkn-essay::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 1.8rem;
    bottom: 0.3rem;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(0, 166, 81, 0.15) 0%,
            rgba(0, 166, 81, 0.08) 20%,
            rgba(0, 166, 81, 0.05) 40%,
            rgba(0, 166, 81, 0.03) 60%,
            rgba(0, 166, 81, 0.01) 80%,
            transparent 100%);
    border-radius: 2px;
}

.nkn-essay::after {
    content: '\f06c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -0.2rem;
    left: 1.15rem;
    font-size: 0.95rem;
    color: rgba(0, 166, 81, 0.15);
    transform: translateX(-50%);
    animation: nknEssayIcon 4s ease-in-out infinite;
}

@keyframes nknEssayIcon {

    0%,
    100% {
        opacity: 0.15;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1.1);
    }
}

.nkn-paragraph-card {
    position: relative;
    padding: 0 0 0 4.2rem;
    margin-bottom: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nkn-paragraph-card::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0.55rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.12);
    border: 2px solid rgba(0, 166, 81, 0.18);
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(0, 166, 81, 0);
}

.nkn-paragraph-card:hover::before {
    background: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 6px rgba(0, 166, 81, 0.1);
}

.nkn-paragraph-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(0, 166, 81, 0.04), transparent);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.nkn-paragraph-card:hover::after {
    opacity: 1;
}

.conclusion-card::before {
    background: rgba(217, 119, 6, 0.15);
    border-color: rgba(217, 119, 6, 0.25);
}

.conclusion-card:hover::before {
    background: #d97706;
    border-color: #d97706;
    box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.1);
}

.nkn-pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
    position: relative;
}

.nkn-pc-tag i {
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nkn-paragraph-card:hover .nkn-pc-tag i {
    opacity: 1;
    transform: scale(1.15);
}

.conclusion-card .nkn-pc-tag {
    color: #b45309;
}

.conclusion-card:hover .nkn-pc-tag {
    color: #92400e;
}

.nkn-pc-text {
    font-size: 1rem;
    color: #57534e;
    line-height: 1.9;
    letter-spacing: 0.1px;
    min-height: 40px;
    font-weight: 400;
    transition: color 0.4s ease;
}

.nkn-paragraph-card:hover .nkn-pc-text {
    color: #44403c;
}

.nkn-pc-text strong {
    color: #292524;
    font-weight: 600;
}

.nkn-pc-text em {
    color: var(--primary-green);
    font-style: italic;
}

.nkn-paragraph-card[data-idx="0"] .nkn-pc-text::first-letter {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--primary-green);
    float: left;
    line-height: 0.8;
    margin: 0.1rem 0.5rem 0 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -2px;
    text-shadow: 0 2px 10px rgba(0, 166, 81, 0.08);
}

.nkn-paragraph-card[data-idx="0"] .nkn-pc-text::first-line {
    color: #292524;
    font-weight: 500;
}

.nkn-typed {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.nkn-cursor {
    display: inline;
    font-size: inherit;
    font-weight: 200;
    color: var(--primary-green);
    animation: nknBlink 0.7s infinite;
    line-height: inherit;
    margin-left: 1px;
}

.nkn-cursor.done {
    animation: none;
    opacity: 0;
}

@keyframes nknBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.nkn-typed strong {
    font-weight: 700;
    color: #1c1917;
    animation: nknStyleIn 0.2s ease-out both;
}

.nkn-typed em {
    font-style: italic;
    color: var(--primary-green);
    animation: nknStyleIn 0.2s ease-out both;
}

@keyframes nknStyleIn {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.nkn-typed strong em,
.nkn-typed em strong {
    font-weight: 700;
    font-style: italic;
}

.conclusion-card .nkn-typed strong {
    color: #92400e;
}

.conclusion-card .nkn-typed em {
    color: #b45309;
}

.nkn-paragraph-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 2rem 0 1.25rem 4.2rem;
    position: relative;
    z-index: 1;
}

.nkpd-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.12), transparent);
    transition: width 0.5s ease;
}

.nkn-paragraph-divider:hover .nkpd-line {
    width: 56px;
}

.nkpd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(0, 166, 81, 0.12);
    animation: nkpdBob 3s ease-in-out infinite;
    transition: color 0.4s ease, transform 0.4s ease;
}

.nkn-paragraph-divider:hover .nkpd-icon {
    color: rgba(0, 166, 81, 0.25);
    transform: translateY(2px) scale(1.2);
}

@keyframes nkpdBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.conclusion-card {
    padding-bottom: 3rem;
    position: relative;
}

.conclusion-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4.2rem;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.08), transparent);
}

.conclusion-card .nkn-pc-text {
    border-left: 3px solid rgba(217, 119, 6, 0.15);
    padding-left: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.9;
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.02), transparent);
    border-radius: 0 8px 8px 0;
}

.conclusion-card .nkn-pc-text strong {
    color: #92400e;
}

.nkn-endmark {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 1.5rem;
    padding-right: 0.5rem;
}

.nkn-endmark-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.12));
    transition: width 0.5s ease;
}

.conclusion-card:hover .nkn-endmark-line {
    width: 80px;
}

.nkn-endmark-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.04);
    border: 1px solid rgba(217, 119, 6, 0.08);
    font-size: 0.6rem;
    color: rgba(217, 119, 6, 0.2);
    animation: nknEndPulse 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.conclusion-card:hover .nkn-endmark-icon {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.15);
    color: rgba(217, 119, 6, 0.35);
    transform: rotate(-15deg) scale(1.1);
}

@keyframes nknEndPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.35;
    }
}

@media (max-width: 768px) {
    .nursery-knowledge-header .section-title {
        font-size: 1.6rem;
    }

    .nkn-paragraph-card {
        padding: 0 0 0 2.5rem;
    }

    .nkn-paragraph-card::before {
        left: 0.3rem;
        width: 10px;
        height: 10px;
    }

    .nkn-essay::before {
        left: 0.85rem;
    }

    .nkn-essay::after {
        left: 0.2rem;
    }

    .nkn-paragraph-divider {
        padding: 1.5rem 0 1rem 2.5rem;
    }

    .nkn-pc-tag {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

.nursery-knowledge-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.nkn-gl {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    animation: nknGlFloat 35s ease-in-out infinite alternate;
}

.nkn-gl-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 166, 81, 0.03);
    top: 10%;
    left: -15%;
}

.nkn-gl-2 {
    width: 500px;
    height: 500px;
    background: rgba(180, 130, 80, 0.025);
    bottom: 5%;
    right: -10%;
    animation-delay: -14s;
}

@keyframes nknGlFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -60px) scale(1.1);
    }
}

.nkn-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.nkn-edge-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.08) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.nkn-edge-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.08) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.nursery-knowledge-container {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nursery-knowledge-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.nkh-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.nkh-ornament::before,
.nkh-ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.15));
}

.nkh-ornament::after {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.15), transparent);
}

.nkho-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(0, 166, 81, 0.2);
    letter-spacing: 2px;
}

.nursery-knowledge-header .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.nursery-knowledge-header .section-title .text-gradient {
    background: linear-gradient(135deg, var(--primary-green), #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nkn-header-sub {
    font-size: 0.92rem;
    color: #78716c;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

.nkh-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.nkh-sep-line {
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(0, 166, 81, 0.1);
}

.nkh-sep-icon {
    font-size: 0.45rem;
    color: rgba(0, 166, 81, 0.15);
}

.nkn-essay {
    position: relative;
}

.nkn-essay::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 1.8rem;
    bottom: 0.3rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 166, 81, 0.06) 40%, rgba(0, 166, 81, 0.02) 70%, transparent 100%);
}

.nkn-essay::after {
    content: '\f06c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -0.2rem;
    left: 1.2rem;
    font-size: 0.85rem;
    color: rgba(0, 166, 81, 0.12);
    transform: translateX(-50%);
}

.nkn-paragraph-card {
    position: relative;
    padding: 0 0 0 4.2rem;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

.nkn-pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.nkn-pc-tag::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.conclusion-card .nkn-pc-tag {
    color: #b45309;
}

.nkn-pc-text {
    font-size: 1rem;
    color: #57534e;
    line-height: 1.9;
    letter-spacing: 0.1px;
    min-height: 40px;
    font-weight: 400;
}

.nkn-pc-text strong {
    color: #292524;
    font-weight: 600;
}

.nkn-pc-text em {
    color: var(--primary-green);
    font-style: italic;
}

.nkn-paragraph-card[data-idx="0"] .nkn-pc-text::first-letter {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary-dark);
    float: left;
    line-height: 0.8;
    margin: 0.15rem 0.4rem 0 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -2px;
}

.nkn-paragraph-card[data-idx="0"] .nkn-pc-text::first-line {
    color: #292524;
    font-weight: 500;
}

.nkn-typed {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.nkn-cursor {
    display: inline;
    font-size: inherit;
    font-weight: 200;
    color: var(--primary-green);
    animation: nknBlink 0.7s infinite;
    line-height: inherit;
    margin-left: 1px;
}

.nkn-cursor.done {
    animation: none;
    opacity: 0;
}

@keyframes nknBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.nkn-typed strong {
    font-weight: 700;
    color: #1c1917;
    animation: nknStyleIn 0.2s ease-out both;
}

.nkn-typed em {
    font-style: italic;
    color: var(--primary-green);
    animation: nknStyleIn 0.2s ease-out both;
}

@keyframes nknStyleIn {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.nkn-typed strong em,
.nkn-typed em strong {
    font-weight: 700;
    font-style: italic;
}

.conclusion-card .nkn-typed strong {
    color: #92400e;
}

.conclusion-card .nkn-typed em {
    color: #b45309;
}

.nkn-paragraph-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 1.75rem 0 1rem 4.2rem;
    position: relative;
    z-index: 1;
}

.nkpd-line {
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.12), transparent);
}

.nkpd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: rgba(0, 166, 81, 0.12);
    animation: nkpdBob 4s ease-in-out infinite;
    transition: color 0.4s ease;
}

@keyframes nkpdBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

.conclusion-card {
    padding-bottom: 3rem;
}

.conclusion-card .nkn-pc-text {
    border-left: 2px solid rgba(217, 119, 6, 0.15);
    padding-left: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.9;
}

.conclusion-card .nkn-pc-text strong {
    color: #92400e;
}

.nkn-endmark {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 1.5rem;
    padding-right: 0.5rem;
}

.nkn-endmark-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.12));
}

.nkn-endmark-icon {
    font-size: 0.65rem;
    color: rgba(217, 119, 6, 0.2);
    animation: nknEndPulse 3s ease-in-out infinite;
}

@keyframes nknEndPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.35;
    }
}

/* ========================================
   COMPARISON SECTION
======================================== */
.comparison-section {
    padding: 100px 2rem;
    background: #fff;
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.3;
}

.comparison-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.comparison-table thead {
    background: var(--secondary-dark);
}

.comparison-table th {
    padding: 18px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child {
    border-radius: 16px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 16px 0 0;
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, var(--primary-green), #059669);
}

.comparison-table td {
    padding: 16px 22px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-main);
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 166, 81, 0.03);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-soft);
}

.comparison-table tbody tr:nth-child(even):hover {
    background: rgba(0, 166, 81, 0.05);
}

.comparison-table td i {
    margin-right: 8px;
}

.comparison-table td .fa-check-circle {
    color: var(--primary-green);
}

.comparison-table td .fa-times-circle {
    color: #ef4444;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 120px 2rem;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(0, 166, 81, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 80%, rgba(56, 189, 248, 0.018) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 166, 81, 0.008) 0%, transparent 70%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.015) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
    pointer-events: none;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.testimonials-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: testimonialOrb 18s ease-in-out infinite alternate;
}

.testimonials-orb.t1 {
    width: 450px;
    height: 450px;
    background: rgba(0, 166, 81, 0.03);
    top: -15%;
    right: -8%;
}

.testimonials-orb.t2 {
    width: 350px;
    height: 350px;
    background: rgba(56, 189, 248, 0.025);
    bottom: -10%;
    left: -5%;
    animation-delay: -8s;
}

@keyframes testimonialOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -40px) scale(1.15);
    }
}

/* Rating Summary Bar */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: -10px auto 50px;
    padding: 20px 36px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-full);
    max-width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.testimonials-summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonials-summary-item strong {
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 1rem;
}

.testimonials-summary-item .tsi-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonials-summary-item .tsi-verified {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    flex-shrink: 0;
}

.testimonials-summary .ts-divider {
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.06);
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 166, 81, 0.08) 50%, transparent 60%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 200%;
    background-position: 0% 0%;
    transition: background-position 0.8s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 56px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.1);
}

.testimonial-card:hover::before {
    background-position: 100% 100%;
}

/* Card top accent bar */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #38bdf8, var(--primary-green));
    background-size: 200% 100%;
    background-position: 0% 0%;
    opacity: 0;
    transition: opacity 0.5s ease, background-position 0.6s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
    background-position: 100% 0%;
}

/* Verified badge */
.testimonial-verified {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 166, 81, 0.06);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-verified {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-verified i {
    font-size: 0.5rem;
}

/* Quote mark */
.testimonial-quote {
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 4rem;
    color: rgba(0, 166, 81, 0.04);
    line-height: 1;
    font-family: 'Georgia', serif;
    pointer-events: none;
    transition: color 0.5s ease, transform 0.5s ease;
}

.testimonial-card:hover .testimonial-quote {
    color: rgba(0, 166, 81, 0.08);
    transform: translateY(-2px) scale(1.05);
}

/* Stars */
.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.testimonial-stars i {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.testimonial-card:hover .testimonial-stars i {
    animation: starPop 0.4s ease both;
}

.testimonial-card:hover .testimonial-stars i:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(2) {
    animation-delay: 0.05s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(3) {
    animation-delay: 0.1s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(4) {
    animation-delay: 0.15s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(5) {
    animation-delay: 0.2s;
}

@keyframes starPop {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.25) rotate(-8deg);
        color: #fbbf24;
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Text */
.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 18px;
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Purchase meta */
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 0.7rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-meta i {
    font-size: 0.6rem;
    color: var(--primary-green);
    opacity: 0.5;
}

.testimonial-meta span {
    opacity: 0.7;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s ease, border-radius 0.4s ease;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(0, 166, 81, 0.08);
    transition: all 0.5s ease;
    animation: avatarRing 3s ease-in-out infinite;
}

@keyframes avatarRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.08) rotate(-4deg);
    border-radius: 16px;
}

.testimonial-card:hover .testimonial-avatar::before {
    inset: -6px;
    border-color: rgba(0, 166, 81, 0.15);
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-dark);
}

.testimonial-location {
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-location i {
    font-size: 0.6rem;
    color: var(--primary-green);
    opacity: 0.4;
}

/* ========================================
   FAQ SECTION (Nursery)
======================================== */
.faq-section-nursery {
    padding: 100px 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}
.faq-nursery-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 166, 81, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 166, 81, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.faq-nursery-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.faq-nursery-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
}
.faq-nursery-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.faq-nursery-item:hover {
    border-color: rgba(0, 166, 81, 0.12);
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.04);
    transform: translateY(-2px);
}
.faq-nursery-item[open] {
    border-color: rgba(0, 166, 81, 0.2);
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    box-shadow: 0 15px 40px rgba(0, 166, 81, 0.08);
}
.faq-nursery-question {
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    user-select: none;
}
.faq-nursery-question::-webkit-details-marker {
    display: none;
}
.faq-q-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 224, 104, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}
.faq-nursery-item[open] .faq-q-icon {
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    color: #fff;
    transform: scale(1.05);
}
.faq-q-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-q-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.faq-q-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-dark);
    line-height: 1.4;
}
.faq-q-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-green);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.faq-nursery-item[open] .faq-q-toggle {
    transform: rotate(225deg);
    background: rgba(0, 166, 81, 0.15);
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.15);
}
.faq-nursery-answer {
    padding: 0 24px 24px 84px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-muted);
}
.faq-answer-inner p {
    margin-bottom: 12px;
}
.faq-answer-inner strong {
    color: var(--secondary-dark);
}
.faq-answer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-answer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 12px;
    background: rgba(0, 166, 81, 0.04);
    border-radius: 10px;
    border-left: 3px solid var(--primary-green);
}
.faq-answer-list li i {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-top: 3px;
}
.faq-answer-closing {
    font-weight: 500;
    color: var(--text-main);
    padding: 10px 14px;
    background: rgba(0, 166, 81, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 166, 81, 0.08);
}
.faq-answer-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    counter-reset: step;
}
.faq-answer-steps li {
    counter-increment: step;
    padding: 10px 14px 10px 44px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.faq-answer-steps li:last-child {
    border-bottom: none;
}
.faq-answer-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-highlight-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-radius: 14px;
    border: 1px solid rgba(0, 166, 81, 0.12);
    margin-top: 12px;
}
.faq-highlight-box i {
    font-size: 1.6rem;
    color: var(--primary-green);
}
.faq-highlight-box strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-dark);
    margin-bottom: 2px;
}
.faq-highlight-box span {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.faq-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}
.faq-qc-item {
    text-align: center;
    padding: 16px 12px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 166, 81, 0.08);
    transition: all 0.3s ease;
}
.faq-qc-item:hover {
    border-color: rgba(0, 166, 81, 0.2);
    transform: translateY(-2px);
}
.faq-qc-item i {
    font-size: 1.3rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 8px;
}
.faq-qc-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}
.faq-process-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}
.faq-pf-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 166, 81, 0.08);
    font-size: 0.84rem;
    color: var(--text-muted);
    flex: 1;
    min-width: 160px;
}
.faq-pf-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 8px;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-pf-arrow {
    color: var(--primary-green);
    font-size: 0.9rem;
}
.faq-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}
.faq-cg-item {
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #ffffff;
}
.faq-cg-win {
    border-color: rgba(0, 166, 81, 0.15);
    background: rgba(0, 166, 81, 0.04);
}
.faq-cg-lose {
    opacity: 0.7;
}
.faq-cg-item i {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 6px;
}
.faq-cg-win i { color: var(--primary-green); }
.faq-cg-lose i { color: #ef4444; }
.faq-cg-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}
.faq-cg-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.faq-payment-grid {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}
.faq-pm-item {
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.faq-pm-item:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}
.faq-pm-item i {
    font-size: 1rem;
    color: var(--primary-green);
}
.faq-security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 166, 81, 0.05);
    border-radius: 12px;
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.faq-security-badge i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ========================================
   NURSERY CTA
======================================== */
.nursery-cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 50%, #059669 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nursery-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ctaParticle 8s ease-in-out infinite;
}

.cta-particle.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle.p2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.cta-particle.p3 {
    bottom: 25%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes ctaParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

.cta-container {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-container p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    color: var(--primary-green);
}

/* ========================================
   SECTION SHARED STYLES
======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(0, 166, 81, 0.08);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-dark);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-title span {
    color: var(--primary-green);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Smooth image rendering */
img {
    -webkit-font-smoothing: antialiased;
    image-rendering: auto;
}

/* Premium selection color */
::selection {
    background: rgba(0, 166, 81, 0.2);
    color: var(--secondary-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 166, 81, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 166, 81, 0.4);
}

/* ========================================
   SUPER FOOTER
======================================== */
.super-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    margin-top: -1px;
    color: white;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-main {
    position: relative;
    padding-top: 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-brand-col {
    padding-right: 20px;
}

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

.footer-logo .brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-logo .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-logo .logo-text .brand-florian {
    color: white;
}

.footer-logo .logo-text .brand-bd {
    color: var(--primary-green);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.35);
}

.footer-col {
    padding-top: 10px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 166, 81, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-green);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.15);
}

.input-wrapper input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.submit-btn {
    padding: 14px 20px;
    background: var(--primary-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #008f45;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.trust-badges .badge i {
    color: var(--primary-green);
}

.payment-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-header span {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.payment-card i {
    color: var(--primary-green);
}

.payment-card:hover {
    background: rgba(0, 166, 81, 0.15);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #64748b;
    font-size: 0.9rem;
}

.copyright p strong {
    color: white;
}

.copyright p i {
    color: #ef4444;
    margin: 0 4px;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-green);
}

/* ========================================
   PLANT CATEGORIES
======================================== */
.nursery-categories {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
}

.nursery-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.nc-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 166, 81, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.nc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #00e068);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-card:hover::before {
    transform: scaleX(1);
}

.nc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 166, 81, 0.12);
    border-color: rgba(0, 166, 81, 0.2);
}

.nc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 224, 104, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.nc-card:hover .nc-icon {
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    color: #fff;
    transform: scale(1.05);
}

.nc-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.nc-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.nc-arrow {
    margin-top: 16px;
    color: var(--primary-green);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-card:hover .nc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   HOW IT WORKS
======================================== */
.how-it-works {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.15), transparent);
}

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

.hiw-steps {
    margin-top: 50px;
}

.hiw-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hiw-step-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(0, 166, 81, 0.12);
    line-height: 1;
    min-width: 70px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.hiw-step:hover .hiw-step-number {
    color: rgba(0, 166, 81, 0.3);
}

.hiw-step-content {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px 30px;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.hiw-step:hover .hiw-step-content {
    background: #f0fdf4;
    border-color: rgba(0, 166, 81, 0.1);
    transform: translateX(6px);
}

.hiw-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 14px;
}

.hiw-step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.hiw-step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hiw-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 0 6px 70px;
}

.hiw-c-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0, 166, 81, 0.2), rgba(0, 166, 81, 0.05));
}

.hiw-c-dot {
    color: var(--primary-green);
    font-size: 0.7rem;
    opacity: 0.5;
}

/* ========================================
   DELIVERY & PACKAGING
======================================== */
.delivery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #064e3b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.delivery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.delivery-content .tsh-ornament {
    margin-bottom: 20px;
}

.delivery-content .tsh-ornament .tsho-line {
    background: rgba(255, 255, 255, 0.15);
}

.delivery-content .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.delivery-content .section-title {
    color: #fff;
}

.delivery-content .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.delivery-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.delivery-feat:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
    border-color: rgba(0, 166, 81, 0.2);
}

.df-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(0, 166, 81, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00e068;
}

.delivery-feat h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.delivery-feat p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.delivery-visual {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.dv-card {
    width: 100%;
    text-align: center;
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.dv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

.dv-card-highlight {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.15), rgba(0, 224, 104, 0.08));
    border-color: rgba(0, 166, 81, 0.2);
}

.dv-icon {
    font-size: 1.6rem;
    color: #00e068;
    margin-bottom: 8px;
}

.dv-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.dv-desc {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.dv-arrow {
    color: rgba(0, 166, 81, 0.4);
    font-size: 0.9rem;
    padding: 4px 0;
}

.dv-badge {
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 100px;
    background: rgba(0, 166, 81, 0.12);
    border: 1px solid rgba(0, 166, 81, 0.2);
    font-size: 0.85rem;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dv-badge i {
    font-size: 1rem;
}

/* ========================================
   PLANT CARE GUIDE
======================================== */
.care-guide-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
}

.care-guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.cg-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 166, 81, 0.03), transparent 70%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.cg-card:hover .cg-card-bg {
    top: -30%;
    right: -30%;
    background: radial-gradient(circle at top right, rgba(0, 166, 81, 0.06), transparent 70%);
}

.cg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.1);
}

.cg-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.cg-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.cg-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cg-tip {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(0, 166, 81, 0.06);
    border-radius: 10px;
    font-size: 0.8rem;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cg-tip i {
    font-size: 0.9rem;
    color: var(--primary-green);
}

.cg-cta {
    margin-top: 40px;
    padding: 30px 36px;
    background: linear-gradient(135deg, var(--primary-dark), #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cg-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.cg-cta p strong {
    color: #fff;
}

.cg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.cg-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SEASONAL GARDENING GUIDE
======================================== */
.seasonal-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
}

.seasonal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ss-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.ss-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.ss-card-header {
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ss-summer .ss-card-header {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.ss-rainy .ss-card-header {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.ss-autumn .ss-card-header {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.ss-winter .ss-card-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.ss-season-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.ss-season-info {
    flex: 1;
}

.ss-season-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.ss-season-months {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.ss-temp {
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
}

.ss-card-body {
    padding: 24px 26px;
    background: #f8fafc;
}

.ss-plants {
    margin-bottom: 16px;
}

.ss-plants-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.ss-plants-label i {
    color: var(--primary-green);
    margin-right: 6px;
}

.ss-plant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ss-plant-tags span {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    background: #fff;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ss-summer .ss-plant-tags span {
    background: #fff7ed;
    border-color: rgba(249, 115, 22, 0.15);
    color: #c2410c;
}

.ss-rainy .ss-plant-tags span {
    background: #eff6ff;
    border-color: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.ss-autumn .ss-plant-tags span {
    background: #fffbeb;
    border-color: rgba(217, 119, 6, 0.15);
    color: #b45309;
}

.ss-winter .ss-plant-tags span {
    background: #eef2ff;
    border-color: rgba(99, 102, 241, 0.15);
    color: #4338ca;
}

.ss-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ss-tip i {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-top: 2px;
}

/* ========================================
   BEGINNER'S GUIDE
======================================== */
.beginners-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
}

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

.bg-steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bg-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 28px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.bg-step:hover {
    border-color: rgba(0, 166, 81, 0.12);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.06);
    transform: translateX(6px);
}

.bg-step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.bg-step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.bg-step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.bg-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--primary-green);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.bg-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.bg-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.bg-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bg-social-link:first-child {
    background: #1877f2;
}

.bg-social-link:last-child {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
}

.bg-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bg-cta {
    margin-top: 40px;
    padding: 40px 36px;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-radius: 20px;
    border: 1px solid rgba(0, 166, 81, 0.1);
    text-align: center;
}

.bg-cta-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.bg-cta-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-green), #00e068);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.bg-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 166, 81, 0.3);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }

    .nursery-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 28px;
    }

    .stats-strip-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .why-best-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-container {
        padding: 0 20px;
        gap: 15px;
    }

    .brand-text {
        font-size: 1.4rem;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .nav-actions {
        gap: 10px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
    }

    .policy-header.nursery-hero {
        padding: 120px 16px 160px;
    }

    .nursery-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .nursery-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
        gap: 12px;
    }

    .stats-strip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .strip-stat:not(:last-child)::after {
        display: none;
    }

    .nursery-categories {
        padding: 60px 1.25rem;
    }

    .nc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .nc-card {
        padding: 28px 22px;
    }

    .how-it-works {
        padding: 60px 1.25rem;
    }

    .hiw-step {
        gap: 20px;
    }

    .hiw-step-number {
        font-size: 2.2rem;
        min-width: 50px;
    }

    .hiw-connector {
        padding-left: 50px;
    }

    .delivery-section {
        padding: 60px 1.25rem;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .delivery-visual {
        padding: 30px 20px;
    }

    .care-guide-section {
        padding: 60px 1.25rem;
    }

    .cg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cg-cta {
        flex-direction: column;
        text-align: center;
    }

    .cg-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .seasonal-section {
        padding: 60px 1.25rem;
    }

    .ss-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beginners-section {
        padding: 60px 1.25rem;
    }

    .why-best-section {
        padding: 70px 1.25rem;
    }

    .why-best-grid {
        grid-template-columns: 1fr;
    }

    .quality-section {
        padding: 70px 1.25rem;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .nursery-knowledge-section {
        padding: 80px 1.25rem 100px;
    }

    .nkn-paragraph-card {
        padding: 28px 22px;
    }

    .nkn-pc-text {
        font-size: 0.92rem;
    }

    .comparison-section {
        padding: 70px 1.25rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .testimonials-section {
        padding: 70px 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonials-summary {
        flex-wrap: wrap;
        gap: 12px 24px;
        padding: 16px 24px;
        border-radius: 20px;
        margin-bottom: 36px;
    }

    .testimonials-summary .ts-divider {
        display: none;
    }

    .testimonials-summary-item {
        font-size: 0.78rem;
    }

    .faq-section-nursery {
        padding: 70px 1.25rem;
    }
    .faq-nursery-question {
        padding: 16px 18px;
        gap: 12px;
    }
    .faq-q-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
    }
    .faq-q-label {
        font-size: 0.65rem;
    }
    .faq-q-title {
        font-size: 0.92rem;
    }
    .faq-q-toggle {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.75rem;
    }
    .faq-nursery-answer {
        padding: 0 18px 18px 66px;
        font-size: 0.85rem;
    }
    .faq-quality-grid { grid-template-columns: 1fr; }
    .faq-compare-grid { grid-template-columns: 1fr; }
    .faq-process-flow { flex-direction: column; }
    .faq-pf-arrow { transform: rotate(90deg); }
    .faq-payment-grid { flex-direction: column; }

    .nursery-cta {
        padding: 70px 20px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand-col {
        padding-right: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .policy-header.nursery-hero {
        padding: 150px 16px 140px;
    }

    .nursery-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .strip-stat {
        padding: 12px 8px;
    }

    .nc-grid {
        grid-template-columns: 1fr;
    }

    .nc-card {
        padding: 24px 20px;
    }

    .hiw-step {
        flex-direction: column;
        gap: 12px;
    }

    .hiw-step-number {
        font-size: 1.5rem;
        min-width: auto;
    }

    .hiw-connector {
        padding-left: 0;
    }

    .hiw-step-content {
        padding: 22px 20px;
    }

    .delivery-grid {
        gap: 30px;
    }

    .delivery-feat {
        padding: 16px;
        flex-direction: column;
    }

    .dv-arrow {
        transform: rotate(90deg);
    }

    .cg-grid {
        grid-template-columns: 1fr;
    }

    .cg-card {
        padding: 26px 22px;
    }

    .ss-grid {
        gap: 16px;
    }

    .ss-card-header {
        padding: 20px;
    }

    .ss-card-body {
        padding: 20px;
    }

    .bg-step {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .bg-social {
        flex-direction: column;
    }

    .bg-cta {
        padding: 30px 24px;
    }

    .bg-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .why-best-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-summary {
        flex-direction: column;
        gap: 8px;
        padding: 14px 20px;
        border-radius: 16px;
        align-items: center;
        text-align: center;
    }

    .testimonials-summary .ts-divider {
        display: none;
    }

    .testimonials-summary-item {
        font-size: 0.75rem;
    }

    .faq-nursery-question { padding: 14px 14px; }
    .faq-q-icon { width: 32px; height: 32px; min-width: 32px; font-size: 0.8rem; border-radius: 10px; }
    .faq-q-title { font-size: 0.88rem; }
    .faq-nursery-answer { padding: 0 14px 14px 56px; }
    .faq-quality-grid { grid-template-columns: 1fr; }
    .faq-compare-grid { grid-template-columns: 1fr; }
    .faq-process-flow { flex-direction: column; align-items: stretch; }
    .faq-pf-arrow { transform: rotate(90deg); text-align: center; }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}