﻿:root {
      --primary-color: rgb(98, 0, 238);
      --primary-hover: rgb(75, 0, 180);
      --primary-light: rgba(98, 0, 238, 0.08);
      --text-color: #1e293b;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --border-color: #e2e8f0;
      
      
      --hero-teal: #008E8A;
      --hero-cream: #F4F6F6;
      --hero-pine: #0E3A38;
      --hero-teal-light: rgba(0, 142, 138, 0.1);
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-color);
      background-color: #fff;
      line-height: 1.6;
    }

    
    .site-header{
      position:sticky;
      top:0;
      z-index:900;
      width:100%;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }

    .header-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      min-width:0;
      flex-shrink:0;
    }

    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:160px;
      object-fit:contain;
      flex-shrink:0;
    }

    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:800;
      line-height:1.2;
      color:#111827;
      white-space:nowrap;
      max-width:180px;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      min-width:0;
      flex:1;
      overflow-x:auto;
      scrollbar-width:none;
    }

    .desktop-nav::-webkit-scrollbar{
      display:none;
    }

    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      color:#334155;
      text-decoration:none;
      white-space:nowrap;
      flex-shrink:0;
    }

    .desktop-nav a:hover {
      background: var(--primary-light);
      color: var(--primary-color);
    }

    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex-shrink:0;
    }

    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#111827;
    }

    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:998;
      background:rgba(15,23,42,.54);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }

    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:999;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      background:#ffffff;
      color:#111827;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(15,23,42,.22);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }

    .drawer-head{
      min-height:76px;
      padding:18px 18px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      flex-shrink:0;
    }

    .drawer-logo img{
      height:36px;
      max-width:130px;
    }

    .drawer-logo span{
      max-width:150px;
      font-size:17px;
    }

    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      color:#111827;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex-shrink:0;
    }

    .drawer-body{
      flex:1;
      overflow-y:auto;
      -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(15,23,42,.04);
      color:#111827;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    .drawer-nav a:hover{
      background:rgba(98,0,238,.12);
      color:rgb(98,0,238);
    }

    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);
    }

    
    .hero-layout-12 {
      background: radial-gradient(circle at 80% 20%, var(--hero-teal-light) 0%, transparent 50%), var(--hero-cream);
      padding: 80px 0 100px;
      border-bottom: 1px solid rgba(0, 142, 138, 0.15);
      position: relative;
      overflow: hidden;
    }

    .hero-inner-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--hero-teal-light);
      border: 1px solid rgba(0, 142, 138, 0.2);
      color: var(--hero-teal);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.15;
      color: var(--hero-pine);
      font-weight: 850;
      max-width: 900px;
      margin: 0 auto 20px;
      letter-spacing: -1px;
    }

    .hero-subtitle {
      font-size: clamp(16px, 2vw, 19px);
      color: #3e5c5a;
      max-width: 800px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--hero-teal);
      color: #fff;
      box-shadow: 0 4px 14px rgba(0, 142, 138, 0.35);
    }

    .btn-primary:hover {
      background-color: var(--hero-pine);
      box-shadow: 0 6px 20px rgba(14, 58, 56, 0.4);
    }

    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--hero-teal);
      color: var(--hero-teal);
    }

    .btn-outline:hover {
      background-color: var(--hero-teal-light);
      color: var(--hero-teal);
    }

    
    .hero-kanban {
      background: #ffffff;
      border: 1px solid rgba(0, 142, 138, 0.2);
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(14, 58, 56, 0.06);
      padding: 32px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: left;
    }

    .kanban-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 28px;
    }

    .kanban-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .kanban-col-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--hero-pine);
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--hero-cream);
    }

    .kanban-col-title::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 16px;
      background-color: var(--hero-teal);
      border-radius: 99px;
    }

    
    .kanban-news-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .kanban-news-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px;
      background: var(--hero-cream);
      border-radius: 12px;
      font-size: 14px;
      transition: transform 0.2s;
    }

    .kanban-news-item:hover {
      transform: translateY(-2px);
    }

    .kanban-tag-status {
      font-size: 11px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    .kanban-tag-status.hot {
      background: #fef2f2;
      color: #ef4444;
      border: 1px solid #fca5a5;
    }

    .kanban-tag-status.new {
      background: #f0fdf4;
      color: #22c55e;
      border: 1px solid #86efac;
    }

    .kanban-news-text {
      color: var(--text-color);
      font-weight: 600;
      text-decoration: none;
    }

    
    .service-mini-card {
      background: #fff;
      border: 1px solid var(--border-color);
      padding: 16px;
      border-radius: 14px;
      text-decoration: none;
      display:flex;
      align-items: center;
      gap: 14px;
      transition: all 0.2s;
    }

    .service-mini-card:hover {
      border-color: var(--hero-teal);
      box-shadow: 0 4px 12px rgba(0, 142, 138, 0.1);
      transform: scale(1.02);
    }

    .service-mini-icon {
      font-size: 24px;
      background: var(--hero-cream);
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--hero-teal);
    }

    .service-mini-info h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--hero-pine);
      margin-bottom: 2px;
    }

    .service-mini-info p {
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .kanban-data-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .kanban-data-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px;
      border-bottom: 1px dashed var(--border-color);
    }

    .kanban-data-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-color);
    }

    .kanban-data-value {
      font-size: 14px;
      font-weight: 800;
      color: var(--hero-teal);
    }

    
    .features-section {
      padding: 80px 0;
      background-color: var(--bg-light);
    }

    .section-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
    }

    .grid-3-col {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .feature-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 36px 24px;
      border-radius: 16px;
      transition: all 0.25s;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
      border-color: var(--primary-color);
    }

    .feature-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      background: var(--primary-light);
      color: var(--primary-color);
      border-radius: 12px;
      font-size: 24px;
      margin-bottom: 24px;
    }

    .feature-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 12px;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    
    .articles-section {
      padding: 80px 0;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .article-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.25s;
    }

    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    }

    .article-image {
      position: relative;
      padding-bottom: 56.25%; 
      background-color: #f1f5f9;
      overflow: hidden;
    }

    .article-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-body {
      padding: 24px;
      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-meta span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .article-title {
      font-size: 18px;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.4;
      margin-bottom: 12px;
      text-decoration: none;
    }

    .article-title:hover {
      color: var(--primary-color);
    }

    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
      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: 16px;
      border-top: 1px solid var(--border-color);
    }

    .article-tag {
      font-size: 12px;
      color: var(--primary-color);
      background: var(--primary-light);
      padding: 4px 10px;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
    }

    .article-more {
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
      text-decoration: none;
    }

    .article-more:hover {
      color: var(--primary-color);
    }

    
    .site-footer{
      width:100%;
      background:#0f172a;
      color:#e5e7eb;
      overflow:hidden;
    }

    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:54px 0 34px;
      display:grid;
      grid-template-columns:minmax(240px,1.4fr) repeat(3, minmax(150px, .8fr));
      gap:28px;
      align-items:start;
    }

    .footer-logo span{
      color:#ffffff;
    }

    .footer-brand p{
      margin:18px 0 0;
      color:rgba(226,232,240,.78);
      line-height:1.8;
      font-size:14px;
      max-width:420px;
    }

    .footer-column h3{
      margin:0 0 14px;
      color:#ffffff;
      font-size:15px;
      font-weight:800;
    }

    .footer-column ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .footer-column li,
    .footer-column a{
      color:rgba(226,232,240,.78);
      font-size:14px;
      line-height:1.55;
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    .footer-column a:hover{
      color:#ffffff;
    }

    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:18px 0 24px;
      border-top:1px solid rgba(226,232,240,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:rgba(226,232,240,.68);
      font-size:13px;
      line-height:1.6;
    }

    @media (max-width: 900px){
      .header-inner{
        width:min(100% - 24px, 1200px);
        min-height:64px;
        gap:12px;
      }

      .desktop-nav{
        display:none !important;
      }

      .mobile-menu-btn{
        display:inline-flex !important;
      }

      .logo img{
        height:34px;
        max-width:120px;
      }

      .logo span{
        font-size:16px;
        max-width:150px;
      }

      .footer-inner{
        width:min(100% - 24px, 1200px);
        grid-template-columns:1fr 1fr;
        gap:24px 18px;
        padding:42px 0 28px;
      }

      .footer-brand{
        grid-column:1 / -1;
      }

      .footer-bottom{
        width:min(100% - 24px, 1200px);
        flex-direction:column;
        align-items:flex-start;
      }

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

      .grid-3-col, .articles-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px){
      .mobile-drawer{
        width:88vw;
      }

      .logo span{
        max-width:120px;
      }

      .drawer-logo span{
        max-width:120px;
      }

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