  /* ============================================================
     DESIGN TOKENS
     ============================================================ */
  :root {
    --navy: #2d3a7d;
    --navy-dark: #232e66;
    --navy-deeper: #1a2452;
    --navy-50: #eef0f8;
    --pink: #e91e85;
    --pink-soft: #ffb3d9;
    --pink-50: #fdeaf3;
    --orange: #f58024;
    --orange-soft: #fcb549;
    --orange-50: #fff2e6;
    --red: #e64644;
    --magenta: #d823cd;
    --green: #1d8a4a;
    --green-soft: #e8f7ee;
    --teal: #0891b2;
    --teal-soft: #e0f6fb;
    --purple: #7c3aed;
    --purple-soft: #ede9fe;

    --grad: linear-gradient(90deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
    --grad-tilt: linear-gradient(135deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
    --grad-soft: linear-gradient(135deg, #fff2e6 0%, #fdeaf3 100%);

    --bg: #ffffff;
    --surface: #f7f8fc;
    --surface-2: #f2f4f8;
    --border: #e8eaef;
    --text: #151515;
    --text-muted: #6f6f6f;

    --font: 'Figtree', system-ui, -apple-system, sans-serif;

    --sh-md: 0 4px 8px rgba(35, 46, 102, 0.06), 0 8px 24px rgba(35, 46, 102, 0.08);
    --sh-lg: 0 12px 24px -8px rgba(35, 46, 102, 0.12), 0 24px 64px -12px rgba(35, 46, 102, 0.18);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img, video, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ::selection { background: var(--pink); color: #fff; }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero-page {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #eef0f8 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-page::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 58, 125, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-page::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-blogi-inner {
    max-width: 760px;
    position: relative;
    z-index: 2;
  }
  .hero-page .kicker {
    color: var(--navy);
    margin-bottom: 20px;
  }
  .hero-page h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .hero-page h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-page .hero-lead {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 40px;
  }

  /* Category filter pills */
  .filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
  }
  .filter-pill:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: var(--sh-md);
  }
  .filter-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(35, 46, 102, 0.35);
  }
  .filter-pill.active.seo    { background: var(--green); border-color: var(--green); box-shadow: 0 6px 18px -4px rgba(29, 138, 74, 0.35); }
  .filter-pill.active.ai     { background: var(--purple); border-color: var(--purple); box-shadow: 0 6px 18px -4px rgba(124, 58, 237, 0.35); }
  .filter-pill.active.kauppa { background: var(--teal); border-color: var(--teal); box-shadow: 0 6px 18px -4px rgba(8, 145, 178, 0.35); }
  .filter-pill.active.sivut  { background: var(--orange); border-color: var(--orange); box-shadow: 0 6px 18px -4px rgba(245, 128, 36, 0.35); }
  .filter-pill.active.mainonta { background: var(--pink); border-color: var(--pink); box-shadow: 0 6px 18px -4px rgba(233, 30, 133, 0.35); }

  .pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ============================================================
     BUTTON PRIMARY
     ============================================================ */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -8px rgba(230, 70, 68, 0.7);
  }

  /* ============================================================
     SECTION HEAD
     ============================================================ */
  .block { padding: 100px 0; }
  .block.alt { background: var(--surface); }
  .section-head {
    margin-bottom: 64px;
    max-width: 880px;
  }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
  }
  .kicker.orange  { color: var(--orange); }
  .kicker.pink    { color: var(--pink); }
  .kicker.navy    { color: var(--navy); }
  .kicker.green   { color: var(--green); }
  .kicker.purple  { color: var(--purple); }
  .section-title {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.015em;
  }
  .section-title .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.7;
  }
  .section-head.center .section-lead { margin-left: auto; margin-right: auto; }

  /* ============================================================
     ARTICLE GRID
     ============================================================ */
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .article-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    position: relative;
  }
  .article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
  }

  /* Article card thumbnail */
  .card-thumb {
    height: 190px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .card-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .article-card:hover .card-thumb img { transform: scale(1.05); }
  .card-thumb svg {
    width: 68px;
    height: 68px;
    color: #fff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.22));
    opacity: 0.9;
  }
  .card-thumb:has(img) svg { display: none; }
  .card-thumb::before,
  .card-thumb::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
  }
  .card-thumb::before { width: 140px; height: 140px; top: -40px; right: -35px; }
  .card-thumb::after  { width: 90px; height: 90px; bottom: -24px; left: 16px; }
  .card-thumb:has(img)::before,
  .card-thumb:has(img)::after { display: none; }
  .thumb-sivut    { background: linear-gradient(135deg, #f58024 0%, #fcb549 100%); }
  .thumb-ai       { background: linear-gradient(135deg, #7c3aed 0%, #d823cd 100%); }
  .thumb-kauppa   { background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); }
  .thumb-chatbot  { background: linear-gradient(135deg, #7c3aed 0%, #e91e85 100%); }
  .thumb-mainonta { background: linear-gradient(135deg, #e91e85 0%, #e64644 100%); }

  /* Featured card — side accent stripe instead of top thumb */
  .article-card.featured .card-thumb {
    width: 6px;
    height: auto;
    border-radius: 0;
  }
  .article-card.featured .card-thumb::before,
  .article-card.featured .card-thumb::after { display: none; }
  .article-card.featured .card-thumb svg { display: none; }

  .article-card-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Category tag inside card */
  .article-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 16px;
  }
  .article-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }
  .tag-seo      { background: var(--green-soft); color: var(--green); }
  .tag-ai       { background: var(--purple-soft); color: var(--purple); }
  .tag-kauppa   { background: var(--teal-soft); color: var(--teal); }
  .tag-chatbot  { background: var(--purple-soft); color: var(--purple); }
  .tag-sivut    { background: var(--orange-50); color: var(--orange); }
  .tag-mainonta { background: var(--pink-50); color: var(--pink); }

  .article-card h2 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    flex-shrink: 0;
  }
  .article-card:hover h2 {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .article-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 0 0 auto;
    margin-bottom: 20px;
  }

  .article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    margin-bottom: 18px;
  }
  .article-meta-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .article-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
  }
  .article-meta-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--text-muted);
    flex-shrink: 0;
  }
  .article-date {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
  }

  .article-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy-dark);
    padding: 10px 18px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    align-self: flex-start;
    transition: all 0.2s;
  }
  .article-link:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: #fff;
    transform: translateX(2px);
  }
  .article-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
  }
  .article-link:hover svg { transform: translateX(3px); }

  /* ============================================================
     FEATURED ARTICLE (wide card, first position)
     ============================================================ */
  .article-card.featured {
    grid-column: span 3;
    flex-direction: row;
    min-height: 260px;
  }
  .article-card.featured .article-card-accent {
    width: 5px;
    height: auto;
  }
  .article-card.featured .article-card-body {
    padding: 36px 40px;
  }
  .article-card.featured h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    max-width: 680px;
  }
  .article-card.featured .article-excerpt {
    max-width: 700px;
  }

  /* ============================================================
     NEWSLETTER CTA
     ============================================================ */
  .newsletter-band {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 70%, #3b2a6b 130%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .newsletter-band::before {
    content: '';
    position: absolute;
    top: -180px;
    left: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 181, 73, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .newsletter-band::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.20) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .newsletter-inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .newsletter-inner .kicker {
    color: var(--orange-soft);
    margin-bottom: 16px;
  }
  .newsletter-inner h2 {
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .newsletter-inner h2 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .newsletter-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin-bottom: 36px;
  }
  .newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }
  .newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .newsletter-input::placeholder {
    color: rgba(255,255,255,0.52);
  }
  .newsletter-input:focus {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.16);
  }
  .newsletter-btn {
    padding: 15px 28px;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 10px 24px -6px rgba(230, 70, 68, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -6px rgba(230, 70, 68, 0.7);
  }
  .newsletter-note {
    margin-top: 16px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.48);
  }

  /* ============================================================
     RELATED SERVICES
     ============================================================ */
  .svc-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .svc-link-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
  }
  .svc-link-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .svc-link-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .svc-link-card:hover::after { opacity: 1; }
  .svc-link-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .svc-link-icon.green  { background: var(--green-soft); color: var(--green); }
  .svc-link-icon.pink   { background: var(--pink-50); color: var(--pink); }
  .svc-link-icon.navy   { background: var(--navy-50); color: var(--navy); }
  .svc-link-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .svc-link-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
  }
  .svc-link-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-top: 4px;
    transition: gap 0.2s;
  }
  .svc-link-card:hover .svc-link-more { gap: 10px; }
  .svc-link-more svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
  }
  .svc-link-card:hover .svc-link-more svg { transform: translateX(4px); }

  /* ============================================================
     CTA BAND
     ============================================================ */
  .cta-band {
    background: var(--navy-deeper);
    padding: 110px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 58, 125, 0.40) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta-lead {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .cta-band h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
  }
  .cta-band h2 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
  }
  .cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    line-height: 1.65;
  }
  .cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ============================================================
     AI-HI FORM
     ============================================================ */
  .ai-hi {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 16px 28px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.30);
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    font-family: var(--font);
    transition: all 0.2s;
  }
  .ai-hi:hover, .ai-hi:focus-within {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.20);
    transform: translateY(-2px);
  }
  .ai-hi-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    user-select: none;
    cursor: default;
  }
  .ai-hi-wave {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    transform-origin: 70% 70%;
    animation: aiWave 3.4s ease-in-out 2s infinite;
  }
  @keyframes aiWave {
    0%, 78%, 100% { transform: rotate(0deg); }
    82%  { transform: rotate(14deg); }
    86%  { transform: rotate(-8deg); }
    90%  { transform: rotate(14deg); }
    94%  { transform: rotate(-4deg); }
    98%  { transform: rotate(10deg); }
  }
  .ai-hi-input {
    width: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font: 500 14px/1 var(--font);
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease 0.05s, padding 0.3s ease, margin 0.3s ease;
  }
  .ai-hi-input::placeholder { color: rgba(255,255,255,0.55); font-weight: 400; }
  .ai-hi:hover .ai-hi-input,
  .ai-hi:focus-within .ai-hi-input {
    width: 200px;
    opacity: 1;
    padding: 0 12px;
    margin-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.30);
  }
  .ai-hi-send {
    width: 0;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.65);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease 0.1s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  }
  .ai-hi-send svg { width: 14px; height: 14px; stroke-width: 2.6; }
  .ai-hi:hover .ai-hi-send,
  .ai-hi:focus-within .ai-hi-send {
    width: 32px;
    opacity: 1;
    transform: scale(1);
  }
  .ai-hi-send:hover { color: var(--orange-soft); }

  /* ============================================================
     DIVIDER
     ============================================================ */
  .section-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* ============================================================
     REVEAL
     ============================================================ */
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal].in { opacity: 1; transform: translateY(0); }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1100px) {
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .article-card.featured { grid-column: span 2; }
    .svc-link-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 780px) {
    .article-grid { grid-template-columns: 1fr; }
    .article-card.featured {
      grid-column: span 1;
      flex-direction: column;
    }
    .article-card.featured .article-card-accent {
      width: 100%;
      height: 5px;
    }
    .svc-link-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn { border-radius: 12px; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-page { padding: 120px 0 60px; }
    .block { padding: 72px 0; }
    .cta-band { padding: 80px 0; }
    .newsletter-band { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }
    .article-card-body { padding: 22px 22px 20px; }
    .cta-row { flex-direction: column; align-items: center; }
    .ai-hi { justify-content: center; }
    .ai-hi:hover .ai-hi-input,
    .ai-hi:focus-within .ai-hi-input { width: 140px; }
    .filter-row { gap: 8px; }
    .filter-pill { padding: 8px 14px; font-size: 12px; }
  }
