:root {
            --primary: #c57d69;
            --primary-hover: #b0614c;
            --primary-dark: #7a4234;
            --primary-light: #fdf8f6;
            --primary-border: #f3ded8;
            --sage: #536d5d;
            --sage-light: #e5ece7;
            --amber: #d97706;
            --amber-light: #fef3c7;
            --bg-main: #faf8f5;
            --card-bg: #ffffff;
            --text-main: #2d2926;
            --text-muted: #6b7280;
            --text-light: #9ca3af;
            --border-color: #e5e7eb;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-md: 0 8px 24px -4px rgba(197, 125, 105, 0.15);
            --shadow-lg: 0 16px 32px -8px rgba(45, 41, 38, 0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 9999px;
            --font-serif: "Noto Serif JP", serif;
            --font-sans: "Plus Jakarta Sans", sans-serif;
        }

        /* Base styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Layout utilities */
        .text-center {
            text-align: center;
        }

        .text-muted {
            color: var(--text-muted);
        }

        .text-primary {
            color: var(--primary);
        }

        .section-stack {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .section-centered {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-intro {
            font-size: 12px;
            color: var(--text-muted);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--bg-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        @media (min-width: 768px) {
            body {
                padding-bottom: 0;
            }
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            background: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        @media (min-width: 640px) {
            .container {
                padding: 0 24px;
            }
        }

        .btn-cta {
            background: linear-gradient(135deg, #d7a191 0%, #c57d69 50%, #b0614c 100%);
            color: #ffffff;
            font-weight: 700;
            border-radius: var(--radius-full);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 6px 18px rgba(197, 125, 105, 0.35);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(197, 125, 105, 0.45);
        }

        .btn-cta::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(60deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 80%);
            transform: rotate(30deg);
            animation: shimmer 4s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(30deg); }
            100% { transform: translateX(100%) rotate(30deg); }
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 64px;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--primary-border);
            z-index: 100;
            display: flex;
            align-items: center;
        }

        @media (min-width: 768px) {
            .site-header {
                height: 76px;
            }
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #f3ded8, #c57d69);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 18px;
            box-shadow: var(--shadow-sm);
        }

        .logo-text {
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 18px;
            color: var(--text-main);
            line-height: 1.1;
        }

        .logo-text span {
            font-family: var(--font-sans);
            color: var(--primary);
            font-size: 12px;
            margin-left: 2px;
        }

        .logo-sub {
            font-size: 9px;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            display: block;
        }

        .desktop-nav {
            display: none;
            align-items: center;
            gap: 20px;
        }

        @media (min-width: 992px) {
            .desktop-nav {
                display: flex;
            }
        }

        .nav-link {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--primary-hover);
        }

        .nav-divider {
            width: 1px;
            height: 16px;
            background-color: var(--border-color);
        }

        .header-cta-btn {
            padding: 8px 18px;
            font-size: 13px;
        }

        .mobile-header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @media (min-width: 992px) {
            .mobile-header-actions {
                display: none;
            }
        }

        .menu-btn {
            font-size: 20px;
            color: var(--text-main);
            padding: 6px;
        }

        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 200;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .drawer-content {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 360px;
            height: 100%;
            background: #ffffff;
            z-index: 210;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .drawer-content.active {
            transform: translateX(0);
        }

        .drawer-header {
            padding: 16px 20px;
            background: var(--primary-light);
            border-bottom: 1px solid var(--primary-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .drawer-title {
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 15px;
            color: var(--text-main);
        }

        .drawer-close {
            font-size: 20px;
            color: var(--text-muted);
        }

        .drawer-cta-box {
            padding: 20px;
            background: linear-gradient(180deg, var(--primary-light) 0%, #ffffff 100%);
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .drawer-menu-list {
            list-style: none;
            padding: 12px 0;
        }

        .drawer-menu-item a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            font-size: 14px;
            color: var(--text-main);
            font-weight: 500;
            border-bottom: 1px solid #f3f4f6;
            transition: background 0.2s;
        }

        .drawer-menu-item a:hover {
            background-color: var(--primary-light);
            color: var(--primary);
        }

        .drawer-menu-item i.item-icon {
            width: 24px;
            color: var(--primary);
        }

        .drawer-menu-label {
            padding: 16px 20px 6px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .hero-section {
            position: relative;
            padding: 96px 0 60px;
            /*background-color: #2d2926;*/
            color: #ffffff;
            overflow: hidden;
            border-bottom: 1px solid var(--primary-border);
        }

        .hero-bg-photo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
            opacity: 0.85;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.2) 100%);
            z-index: 1;
        }

        @media (max-width: 767px) {
            .hero-overlay {
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.5) 100%);
            }
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (min-width: 992px) {
            .hero-grid {
                grid-template-columns: 7fr 5fr;
            }
        }

        .hero-content {
            color: var(--text-main);
            text-align: center;
        }

        @media (min-width: 992px) {
            .hero-content {
                text-align: left;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: #ffffff;
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 700;
            color: var(--primary-dark);
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--primary);
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        @media (min-width: 640px) {
            .hero-title {
                font-size: 38px;
            }
        }

        .hero-title-gradient {
            background: linear-gradient(135deg, var(--primary-hover), var(--sage));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .hero-description {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (min-width: 992px) {
            .hero-description {
                margin-left: 0;
                margin-right: 0;
            }
        }

        .hero-cta-wrapper {
            max-width: 440px;
            margin: 0 auto 24px;
        }

        @media (min-width: 992px) {
            .hero-cta-wrapper {
                margin-left: 0;
            }
        }

        .hero-primary-btn {
            width: 100%;
            padding: 16px 28px;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .hero-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
        }

        @media (min-width: 992px) {
            .hero-guarantee {
                justify-content: flex-start;
            }
        }

        .hero-guarantee span i {
            color: var(--primary);
            margin-right: 4px;
        }

        .hero-features {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        @media (min-width: 992px) {
            .hero-features {
                justify-content: flex-start;
            }
        }

        .hero-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: left;
        }

        .hero-feat-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .hero-feat-text h5 {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-main);
        }

        .hero-feat-text p {
            font-size: 10px;
            color: var(--text-muted);
        }

        .hero-visual-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--primary-border);
            position: relative;
        }

        .hero-card-img-wrapper {
            position: relative;
            height: 240px;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 16px;
        }

        .hero-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-dark);
            box-shadow: var(--shadow-sm);
        }

        .hero-card-info {
            position: absolute;
            bottom: 0;
            inset-x: 0;
            padding: 20px 16px 12px;
            background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            color: #ffffff;
        }

        .hero-card-info h4 {
            font-family: var(--font-serif);
            font-size: 15px;
            line-height: 1.4;
        }

        .hero-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
        }

        .mobile-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-top: 1px solid var(--primary-border);
            padding: 10px 16px;
            z-index: 90;
            box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        @media (min-width: 768px) {
            .mobile-sticky-bar {
                display: none;
            }
        }

        .sticky-price {
            display: flex;
            flex-direction: column;
        }

        .sticky-price-label {
            font-size: 10px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .sticky-price-val {
            font-size: 16px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
        }

        .sticky-btn {
            flex: 1;
            padding: 12px 16px;
            font-size: 13px;
        }

        .section-padding {
            padding: 50px 0;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }
        }

        .section-header {
            margin-bottom: 32px;
        }

        .section-subtitle {
            font-size: 11px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            margin-top: 4px;
        }

        @media (min-width: 640px) {
            .section-title {
                font-size: 30px;
            }
        }

        .categories-section {
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-color);
        }

        .category-tabs-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
        }

        .category-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }

        .cat-tab-btn {
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 700;
            background: #f3f4f6;
            color: var(--text-muted);
            white-space: nowrap;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .cat-tab-btn:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .cat-tab-btn.active {
            background: var(--primary);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(197, 125, 105, 0.3);
        }

        .articles-section {
            background-color: var(--bg-main);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media (min-width: 640px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .articles-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .article-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--primary-border);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .card-img-box {
            position: relative;
            height: 190px;
            background: #e5e7eb;
            overflow: hidden;
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .card-img {
            transform: scale(1.05);
        }

        .card-category-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 10px;
            font-weight: 700;
            color: #ffffff;
            background: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .card-category-badge.sage { background: var(--sage); }
        .card-category-badge.amber { background: var(--amber); }

        .card-bookmark-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(4px);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
        }

        .card-bookmark-btn.saved {
            color: var(--primary);
        }

        .card-body {
            padding: 20px;
            flex-grow: 1;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .card-meta-badge {
            color: var(--primary-hover);
            font-weight: 700;
        }

        .card-title {
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-main);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-excerpt {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer {
            padding: 12px 20px;
            border-top: 1px solid #f9fafb;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-light);
        }

        .card-author {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .card-read-link {
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .ranking-section {
            background-color: #ffffff;
            border-y: 1px solid var(--border-color);
        }

        .ranking-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .ranking-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .ranking-card {
            position: relative;
            background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            padding: 24px 20px 20px;
            box-shadow: var(--shadow-sm);
        }

        .ranking-number {
            position: absolute;
            top: -14px;
            left: 20px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--amber);
            color: #ffffff;
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .ranking-card:nth-child(2) .ranking-number { background: #94a3b8; }
        .ranking-card:nth-child(3) .ranking-number { background: #d97706; }

        .ranking-cat {
            font-size: 10px;
            font-weight: 800;
            color: var(--primary-dark);
            background: #ffffff;
            padding: 2px 8px;
            border-radius: var(--radius-sm);
            display: inline-block;
            margin-bottom: 8px;
        }

        .ranking-title {
            font-family: var(--font-serif);
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 6px;
        }

        .ranking-stats {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
            padding-top: 10px;
            border-top: 1px solid var(--primary-border);
            font-size: 11px;
            color: var(--text-light);
        }

        .features-section {
            background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-main) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background: #ffffff;
            padding: 28px 24px;
            border-radius: var(--radius-md);
            border: 1px solid var(--primary-border);
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .feature-icon-box {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-md);
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 16px;
        }

        .feature-card h4 {
            font-family: var(--font-serif);
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .feature-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .pricing-section {
            background-color: #2d2926;
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            max-width: 480px;
            margin: 32px auto 0;
            backdrop-filter: blur(10px);
        }

        .pricing-badge {
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-border);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin: 12px 0 4px;
        }

        .pricing-val {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
        }

        .pricing-unit {
            font-size: 13px;
            color: #9ca3af;
        }

        .pricing-note {
            font-size: 11px;
            color: #9ca3af;
            margin-bottom: 24px;
        }

        .pricing-list {
            list-style: none;
            text-align: left;
            margin-bottom: 28px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pricing-list li {
            font-size: 13px;
            color: #e5e7eb;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-list li i {
            color: #d7a191;
        }

        .pricing-btn {
            width: 100%;
            padding: 16px;
            font-size: 15px;
        }

        .faq-section {
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-color);
        }

        .faq-container {
            max-width: 768px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 18px 20px;
            background: #f9fafb;
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 15px;
            color: var(--text-main);
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--primary-light);
        }

        .faq-question i.faq-icon {
            font-size: 12px;
            color: var(--text-light);
            transition: transform 0.3s;
        }

        .faq-question.active i.faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 18px 20px;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            border-top: 1px solid var(--border-color);
            display: none;
            background: #ffffff;
        }

        .faq-answer.active {
            display: block;
        }

        .site-footer {
            background-color: #111827;
            color: #9ca3af;
            padding: 60px 0 30px;
            font-size: 12px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .footer-grid {
                grid-template-columns: 2fr repeat(3, 1fr);
            }
        }

        .footer-brand {
            color: #ffffff;
        }

        .footer-brand-title {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col-title {
            color: #ffffff;
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 14px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid #1f2937;
            text-align: center;
            font-size: 11px;
            color: #6b7280;
        }

        .toast-notification {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: #2d2926;
            color: #ffffff;
            padding: 12px 20px;
            border-radius: var(--radius-md);
            font-size: 13px;
            font-weight: 600;
            box-shadow: var(--shadow-lg);
            z-index: 300;
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (min-width: 768px) {
            .toast-notification {
                bottom: 24px;
            }
        }

        .toast-notification.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast-notification i {
            color: #34d399;
            font-size: 16px;
        }

        .header-cta-icon {
            color: #fef08a;
            font-size: 12px;
        }

        .header-cta-sub {
            font-size: 10px;
            opacity: 0.9;
            font-weight: 400;
        }

        .mobile-header-cta {
            padding: 6px 14px;
            font-size: 12px;
        }

        .drawer-title-icon {
            color: var(--primary);
            margin-right: 6px;
        }

        .drawer-cta-title {
            font-size: 12px;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .drawer-cta-sub {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .drawer-cta-btn {
            width: 100%;
            padding: 12px;
            font-size: 13px;
            margin-bottom: 8px;
        }

        .drawer-cta-login {
            font-size: 11px;
            color: var(--primary);
            font-weight: 600;
        }

        .drawer-main {
            flex-grow: 1;
        }

        .drawer-menu-inline {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .drawer-menu-arrow {
            font-size: 10px;
            color: #ccc;
        }

        .drawer-footer {
            padding: 16px;
            background: #f9fafb;
            text-align: center;
            font-size: 10px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
        }

        .hero-cta-icon {
            color: #fef08a;
            font-size: 18px;
        }

        .hero-cta-sub {
            font-size: 12px;
            font-weight: 400;
            opacity: 0.9;
        }

        .hero-cta-arrow {
            font-size: 12px;
            margin-left: 4px;
        }

        .hero-card-badge {
            font-size: 10px;
            color: #fef08a;
            font-weight: 700;
        }

        .hero-card-meta-strong {
            color: var(--primary);
            font-weight: 700;
        }

        .sticky-tax {
            font-size: 10px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .sticky-cta-icon {
            color: #fef08a;
        }


        .cat-tab-btn i {
            margin-right: 4px;
        }

        .cat-tab-btn .cat-icon-primary {
            color: var(--primary);
        }

        .cat-tab-btn .cat-icon-sage {
            color: var(--sage);
        }

        .cat-tab-btn .cat-icon-amber {
            color: var(--amber);
        }

        .cat-tab-btn .cat-icon-indigo {
            color: #818cf8;
        }

        .cat-tab-btn .cat-icon-rose {
            color: #f43f5e;
        }

        .articles-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .articles-title {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
        }

        .articles-count {
            font-size: 12px;
            color: var(--text-muted);
        }

        .articles-title-icon {
            color: var(--primary);
            margin-right: 6px;
        }

        .card-meta-badge .fa-crown {
            color: #f59e0b;
        }

        .card-read-link .fa-chevron-right {
            font-size: 10px;
        }

        .card-free-badge {
            color: var(--sage);
            font-weight: 700;
        }

        .card-author .fa-user-doctor {
            color: var(--primary);
        }

        .card-author .fa-dumbbell {
            color: var(--sage);
        }

        .card-author .fa-apple-whole {
            color: var(--amber);
        }

        .card-author .fa-moon {
            color: #818cf8;
        }

        .card-author .fa-leaf {
            color: var(--sage);
        }

        .ranking-desc {
            font-size: 12px;
            color: var(--text-muted);
        }

        .ranking-link {
            color: var(--primary);
            font-weight: 700;
        }

        .ranking-fire-icon {
            color: var(--amber);
        }

        .features-intro {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .features-intro p {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .pricing-title {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            margin-top: 6px;
        }

        .pricing-description {
            font-size: 13px;
            color: #d1d5db;
            margin-top: 8px;
        }

        .pricing-btn-icon {
            color: #fef08a;
        }

        .faq-icon-start {
            color: var(--primary);
            margin-right: 8px;
        }

        .footer-brand-icon {
            color: var(--primary);
        }

        .footer-intro {
            line-height: 1.6;
            font-size: 11px;
            color: #9ca3af;
        }