:root {
    --cw-blue: #1B6FF4;
    --cw-blue-dark: #1558CC;
    --cw-blue-light: #E8F1FF;
    --cw-blue-glow: #4D94FF;
    --cw-green: #22C55E;
    --cw-green-light: #ECFDF5;
    --cw-navy: #0F172A;
    --cw-gray-900: #1E293B;
    --cw-gray-700: #374151;
    --cw-gray-600: #4B5563;
    --cw-gray-500: #6B7280;
    --cw-gray-400: #9CA3AF;
    --cw-gray-200: #E5E7EB;
    --cw-gray-100: #F3F4F6;
    --cw-gray-50: #F9FAFB;
    --cw-white: #FFFFFF;
    --cw-orange: #F59E0B;
    --cw-red: #EF4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-blue: 0 4px 24px rgba(27,111,244,0.25);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cw-gray-700);
    background: var(--cw-white);
    line-height: 1.7;
    font-size: 17px;
  }

  /* === HEADER === */
  .cw-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cw-gray-200);
    transition: box-shadow 0.3s;
  }
  .cw-header.scrolled { box-shadow: var(--shadow-sm); }
  .cw-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cw-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cw-navy);
  }
  .cw-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--cw-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(27,111,244,0.3);
  }
  .cw-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cw-blue);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-blue);
  }
  .cw-header-cta:hover {
    background: var(--cw-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(27,111,244,0.35);
  }
  .cw-header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cw-gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-right: 16px;
  }
  .cw-header-phone:hover { color: var(--cw-blue); }
  .cw-header-right { display: flex; align-items: center; }

  /* === HERO === */
  .cw-hero {
    background: linear-gradient(135deg, #F0F6FF 0%, #E8F1FF 40%, #F5F3FF 100%);
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
  }
  .cw-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27,111,244,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cw-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cw-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .cw-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cw-gray-500);
    margin-bottom: 24px;
  }
  .cw-breadcrumb a {
    color: var(--cw-blue);
    text-decoration: none;
  }
  .cw-breadcrumb a:hover { text-decoration: underline; }
  .cw-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    color: var(--cw-navy);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .cw-hero h1 span {
    background: linear-gradient(135deg, var(--cw-blue) 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cw-hero-sub {
    font-size: 19px;
    color: var(--cw-gray-600);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
  }

  /* === FILTERS === */
  .cw-filters {
    max-width: 1200px;
    margin: -30px auto 40px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
  }
  .cw-filters-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cw-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .cw-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--cw-gray-700);
  }
  .cw-filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--cw-gray-200);
    background: white;
    color: var(--cw-gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .cw-filter-btn:hover {
    border-color: var(--cw-blue);
    color: var(--cw-blue);
    background: var(--cw-blue-light);
  }
  .cw-filter-btn.active {
    background: var(--cw-blue);
    color: white;
    border-color: var(--cw-blue);
  }
  .cw-search-box {
    position: relative;
    flex: 1;
    min-width: 240px;
    max-width: 360px;
  }
  .cw-search-form {
    position: relative;
    width: 100%;
  }
  .cw-search-box input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--cw-gray-200);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
  }
  .cw-search-box input:focus {
    border-color: var(--cw-blue);
    box-shadow: 0 0 0 3px rgba(27,111,244,0.1);
  }
  .cw-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cw-gray-400);
    pointer-events: none;
  }

  /* === MAIN CONTENT === */
  .cw-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
  }

  /* === BLOG GRID === */
  .cw-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 40px;
  }

  /* === BLOG CARD === */
  .cw-blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--cw-gray-200);
    display: flex;
    flex-direction: column;
  }
  .cw-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cw-blue);
  }
  .cw-blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--cw-blue-light) 0%, var(--cw-green-light) 100%);
    position: relative;
    overflow: hidden;
  }
  .cw-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cw-blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    color: var(--cw-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
  }
  .cw-blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cw-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--cw-gray-500);
    margin-bottom: 12px;
  }
  .cw-blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cw-blog-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cw-navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .cw-blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .cw-blog-card h3 a:hover {
    color: var(--cw-blue);
  }
  .cw-blog-card-excerpt {
    font-size: 15px;
    color: var(--cw-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
  }
  .cw-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--cw-gray-100);
  }
  .cw-blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cw-gray-600);
  }
  .cw-blog-card-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cw-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--cw-blue);
    font-size: 12px;
  }
  .cw-blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--cw-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
  }
  .cw-blog-card-read-more:hover {
    gap: 8px;
  }

  /* === FEATURED ARTICLE === */
  .cw-featured {
    margin-bottom: 48px;
  }
  .cw-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--cw-blue) 0%, #7C3AED 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  .cw-featured-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cw-gray-200);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: all 0.3s;
  }
  .cw-featured-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  }
  .cw-featured-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, var(--cw-blue-light) 0%, var(--cw-green-light) 100%);
    position: relative;
  }
  .cw-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cw-featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cw-featured-category {
    display: inline-block;
    background: var(--cw-blue-light);
    color: var(--cw-blue);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
  .cw-featured-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--cw-navy);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .cw-featured-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .cw-featured-content h2 a:hover {
    color: var(--cw-blue);
  }
  .cw-featured-excerpt {
    font-size: 17px;
    color: var(--cw-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .cw-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--cw-gray-500);
    margin-bottom: 24px;
  }
  .cw-featured-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .cw-btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cw-blue);
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-blue);
    align-self: flex-start;
  }
  .cw-btn-featured:hover {
    background: var(--cw-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(27,111,244,0.4);
  }
  .cw-btn-featured svg {
    transition: transform 0.2s;
  }
  .cw-btn-featured:hover svg {
    transform: translateX(3px);
  }

  /* === SECTION HEADER === */
  .cw-section-header {
    margin-bottom: 32px;
  }
  .cw-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cw-navy);
    margin-bottom: 8px;
  }
  .cw-section-subtitle {
    font-size: 16px;
    color: var(--cw-gray-600);
  }

  /* === NO RESULTS === */
  .cw-no-results {
    text-align: center;
    padding: 60px 24px;
  }
  .cw-no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
  }
  .cw-no-results h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--cw-navy);
    margin-bottom: 12px;
  }
  .cw-no-results p {
    font-size: 16px;
    color: var(--cw-gray-600);
    margin-bottom: 24px;
  }

  /* === PAGINATION === */
  .cw-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
  }
  .cw-pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--cw-gray-200);
    background: white;
    color: var(--cw-gray-600);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .cw-pagination-btn:hover:not(.disabled) {
    border-color: var(--cw-blue);
    color: var(--cw-blue);
    background: var(--cw-blue-light);
  }
  .cw-pagination-btn.active {
    background: var(--cw-blue);
    color: white;
    border-color: var(--cw-blue);
  }
  .cw-pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  /* === FOOTER === */
  .cw-footer {
    background: var(--cw-gray-50);
    border-top: 1px solid var(--cw-gray-200);
    padding: 40px 24px;
  }
  .cw-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .cw-footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--cw-navy);
    margin-bottom: 8px;
  }
  .cw-footer-copy {
    font-size: 13px;
    color: var(--cw-gray-500);
  }
  .cw-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cw-footer-links a {
    font-size: 14px;
    color: var(--cw-gray-500);
    text-decoration: none;
  }
  .cw-footer-links a:hover { color: var(--cw-blue); }

  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
    .cw-featured-card {
      grid-template-columns: 1fr;
    }
    .cw-featured-image {
      min-height: 280px;
    }
    .cw-featured-content {
      padding: 36px 28px;
    }
  }

  @media (max-width: 768px) {
    .cw-hero {
      padding: 60px 20px 48px;
    }
    .cw-hero h1 {
      font-size: 32px;
    }
    .cw-filters-card {
      flex-direction: column;
      align-items: stretch;
    }
    .cw-filter-group {
      flex-direction: column;
      align-items: stretch;
    }
    .cw-search-box {
      max-width: 100%;
    }
    .cw-blog-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .cw-header-phone {
      display: none;
    }
    .cw-featured-content h2 {
      font-size: 24px;
    }
  }

  /* === ANIMATION === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .cw-hero-inner { animation: fadeUp 0.6s ease-out; }
  .cw-filters-card { animation: fadeUp 0.6s ease-out 0.1s both; }

.logo img {
  max-height: 40px;
}