﻿:root {
      --primary: #65A30D;
      --primary-hover: #4D7C0F;
      --secondary: #84CC16;
      --bg-light: #F7FEE7;
      --bg-dark: #1A2E05;
      --text: #1C1917;
      --text-muted: #6B7280;
      --accent: #D9F99D;
      --border: rgba(101, 163, 13, 0.15);
      --card-shadow: 0 10px 30px -10px rgba(26, 46, 5, 0.1);
      --theme-green: rgb(22,163,74);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
    body { width: 100%; margin: 0; overflow-x: hidden; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #FAFAF9; color: var(--text); line-height: 1.6; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      width: min(1200px, calc(100% - 32px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      max-width: 100%;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 150px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--bg-dark);
      white-space: nowrap;
      max-width: 180px;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .desktop-nav-wrap {
      flex: 1 1 auto;
      min-width: 0;
      display: flex;
      justify-content: flex-end;
      overflow: hidden;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      white-space: nowrap;
    }
    .desktop-nav::-webkit-scrollbar { display: none; }
    .desktop-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      color: #44403C;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      flex: 0 0 auto;
    }
    .desktop-nav a:hover, .desktop-nav a.active {
      background: var(--bg-light);
      color: var(--primary);
    }
    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: rgba(101, 163, 13, 0.08);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .mobile-menu-btn span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: var(--bg-dark);
    }
    .mobile-nav-mask {
      position: fixed;
      inset: 0;
      z-index: 1100;
      background: rgba(26, 46, 5, 0.56);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1110;
      width: min(86vw, 360px);
      height: 100vh;
      height: 100dvh;
      max-width: 90vw;
      background: #ffffff;
      color: var(--text);
      transform: translateX(-105%);
      transition: transform .28s ease;
      box-shadow: 24px 0 60px rgba(26, 46, 5, 0.15);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .drawer-head {
      min-height: 76px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--border);
      flex: 0 0 auto;
    }
    .drawer-logo { min-width: 0; }
    .drawer-logo img { height: 34px; max-width: 120px; }
    .drawer-logo span { font-size: 16px; max-width: 145px; }
    .drawer-close {
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 14px;
      background: rgba(101, 163, 13, 0.08);
      color: var(--bg-dark);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .drawer-body {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      padding: 14px;
    }
    .drawer-nav { display: flex; flex-direction: column; gap: 8px; }
    .drawer-nav a {
      display: flex;
      align-items: center;
      width: 100%;
      min-height: 48px;
      padding: 13px 14px;
      border-radius: 14px;
      background: rgba(101, 163, 13, 0.03);
      color: var(--text);
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      white-space: normal;
      word-break: break-word;
    }
    body.drawer-open { overflow: hidden; touch-action: none; }
    body.drawer-open .mobile-nav-mask { opacity: 1; visibility: visible; pointer-events: auto; }
    body.drawer-open .mobile-drawer { transform: translateX(0); }

    
    .site-footer {
      position: relative;
      z-index: 1;
      width: 100%;
      background: var(--bg-dark);
      color: #E7E5E4;
      padding: 56px 0 24px;
      overflow: hidden;
    }
    .footer-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
      gap: 28px;
      align-items: start;
    }
    .footer-brand { min-width: 0; }
    .footer-brand p {
      margin: 16px 0 0;
      color: #A8A29E;
      line-height: 1.8;
      font-size: 14px;
    }
    .footer-logo span { color: #ffffff; }
    .footer-column { min-width: 0; }
    .footer-column h3 { margin: 0 0 14px; font-size: 15px; color: #ffffff; border-left: 3px solid var(--secondary); padding-left: 10px; }
    .footer-column ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .footer-column a, .footer-column span {
      color: #D6D3D1;
      text-decoration: none;
      font-size: 14px;
    }
    .footer-column a:hover { color: var(--secondary); }
    .footer-bottom {
      width: min(1200px, calc(100% - 32px));
      margin: 32px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #78716C;
      font-size: 13px;
    }
    .footer-bottom p { margin: 0; }
    .footer-bottom a { color: #A8A29E; }

    
    @media (max-width: 900px) {
      .header-inner { width: min(100% - 24px, 1200px); min-height: 64px; }
      .desktop-nav-wrap, .desktop-nav { display: none !important; }
      .mobile-menu-btn { display: inline-flex !important; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    }
    @media (max-width: 640px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

    
    .hero-layout-12 {
      background: linear-gradient(135deg, var(--bg-light) 0%, #FAFAF9 100%);
      padding: 60px 0 80px;
      border-bottom: 1px solid var(--border);
    }
    .hero-layout-12 .hero-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 48px;
      padding: 0 16px;
    }
    .hero-layout-12 .hero-badge {
      display: inline-flex;
      align-items: center;
      background: var(--accent);
      color: var(--bg-dark);
      padding: 6px 16px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 20px;
      border: 1px solid rgba(101, 163, 13, 0.2);
    }
    .hero-layout-12 h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 850;
      line-height: 1.2;
      color: var(--bg-dark);
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }
    .hero-layout-12 h1 em {
      font-style: normal;
      color: var(--primary);
    }
    .hero-layout-12 .hero-desc {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .hero-layout-12 .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(101, 163, 13, 0.3);
    }
    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: #ffffff;
      color: var(--bg-dark);
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background: var(--bg-light);
      transform: translateY(-2px);
    }

    
    .hero-dashboard-wrapper {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .hero-dashboard {
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
      padding: 32px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 32px;
    }
    @media (max-width: 960px) {
      .hero-dashboard {
        grid-template-columns: 1fr;
      }
    }
    .dashboard-left {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .dashboard-right {
      display: flex;
      flex-direction: column;
      gap: 28px;
      background: var(--bg-light);
      padding: 24px;
      border-radius: 16px;
      border: 1px solid rgba(101, 163, 13, 0.1);
    }

    
    .dashboard-section-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--bg-dark);
      margin: 0 0 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 2px solid var(--primary);
      padding-bottom: 6px;
      width: fit-content;
    }
    .dashboard-articles {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .dash-article-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(0,0,0,0.06);
    }
    .dash-article-item:last-child { border-bottom: 0; }
    .dash-article-title {
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 70%;
    }
    .dash-article-title:hover { color: var(--primary); }
    .dash-article-date { font-size: 12px; color: var(--text-muted); }

    .service-entries {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media (max-width: 500px) {
      .service-entries { grid-template-columns: 1fr; }
    }
    .service-entry-card {
      background: var(--bg-light);
      padding: 16px;
      border-radius: 12px;
      text-align: center;
      border: 1px solid rgba(101, 163, 13, 0.08);
    }
    .service-entry-card:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }
    .service-entry-card h4 { margin: 0 0 6px; font-size: 14px; font-weight: 800; color: var(--bg-dark); }
    .service-entry-card p { margin: 0; font-size: 12px; color: var(--text-muted); }

    .tag-cloud-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag-cloud-mini a {
      background: #ffffff;
      border: 1px solid var(--border);
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
    }
    .tag-cloud-mini a:hover {
      background: var(--primary);
      color: #ffffff;
    }

    .data-summary-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .data-item {
      text-align: center;
    }
    .data-value {
      font-size: 22px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.2;
    }
    .data-label {
      font-size: 11px;
      color: var(--text-muted);
    }

    
    .section-padding { padding: 80px 0; }
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-title h2 {
      font-size: 2rem;
      font-weight: 850;
      color: var(--bg-dark);
      margin: 0 0 12px;
    }
    .section-title p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .card {
      background: #ffffff;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .card:hover {
      transform: translateY(-4px);
    }
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--bg-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
    }

    
    .article-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 28px;
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    @media (max-width: 480px) {
      .article-grid { grid-template-columns: 1fr; }
    }
    .article-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
    }
    .article-card:hover { transform: translateY(-4px); }
    .article-img {
      position: relative;
      aspect-ratio: 16 / 9;
      background-color: var(--bg-light);
    }
    .article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--primary);
      color: #ffffff;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 700;
    }
    .article-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-card h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--bg-dark);
      margin: 0 0 10px;
      line-height: 1.4;
    }
    .article-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .article-tags {
      display: flex;
      gap: 6px;
      overflow: hidden;
    }
    .article-tag {
      font-size: 11px;
      background: var(--bg-light);
      color: var(--primary);
      padding: 2px 8px;
      border-radius: 4px;
      white-space: nowrap;
    }
    .read-more {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
    }

    
    .cta-section {
      background: var(--bg-dark);
      color: #ffffff;
      text-align: center;
      padding: 80px 16px;
      position: relative;
      overflow: hidden;
    }
    .cta-inner {
      max-width: 640px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .cta-section h2 { font-size: 2.2rem; font-weight: 850; margin: 0 0 16px; }
    .cta-section p { color: #A8A29E; margin-bottom: 32px; }