:root {
    --ink: #1a2638;
    --ink-soft: #4a5a72;
    --muted: #7a8699;
    --line: #e4e8ef;
    --bg: #f7f9fc;
    --card: #ffffff;
    --accent: #0a73b8;       /* DMM blue */
    --accent-deep: #074d7c;
    --ai-accent: #0F2D53;    /* AI purple */
    --ai-accent-deep: #0F2D53;
    --ai-glow: rgba(111, 61, 242, 0.12);
    --radius: 14px;
    --shadow-sm: 0 1px 2px rgba(20,30,50,.06);
    --shadow-md: 0 8px 24px rgba(20,30,50,.08);
    --shadow-lg: 0 20px 50px rgba(20,30,50,.12);
  }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 60px 24px; }
 
 html .section-head { text-align: center; margin-bottom: 44px; }
 html .section-head .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
  }
html   .section-head h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
 html  .section-head p {
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
  }
 
html  .services-block {margin-bottom: 80px;background: transparent;box-shadow: 0px 0px 0px;padding-top: 0px;}
html  .services-lst {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  @media (max-width: 1024px) {
    .services-lst { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .services-lst { grid-template-columns: 1fr; }
  }
 
html   .services-lst > li {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 26px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
    width: 100% !important;
  }
 html  .services-lst > li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #cdd6e3;
  }
 
html   .services-lst .ico {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
html   .services-lst .ico img { max-height: 60px; width: auto; }
 
 html  .services-lst h3 {
    text-align: center;
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
 
html   .services-lst .lst {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
html   .services-lst .lst li {
    padding: 7px 0 7px 22px;
    position: relative;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.45;
    text-align: left;
  }
html   .services-lst .lst li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .15;
  }
html   .services-lst .lst li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }
 
html   .services-lst .lst .item-hidden {
    display: none;
  }
 html  .services-lst > li.is-expanded .lst .item-hidden {
    display: block;
    animation: fadeIn .25s ease both;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
html   .services-lst .link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin: 4px 0 18px;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    font-family: inherit;
    text-transform: none;
  }
html   .services-lst .link::after {
    content: "+";
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease;
  }
 html  .services-lst > li.is-expanded .link::after {
    content: "−";
  }
 
html   .services-lst .btn {
    display: block;
    text-align: center;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    transition: background .2s ease;
  }
html   .services-lst .btn:hover { background: var(--accent-deep); }
 
html   .ai-block .services-lst {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1210px;
    margin: 0px auto;
    padding: 0px 15px;
  }
  @media (max-width: 900px) {
    .ai-block .services-lst { grid-template-columns: 1fr; }
  }
 
html   .ai-block .services-lst > li {
    border: 1px solid #7ad7e0;
    background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  }
 html  .ai-block .services-lst > li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent), #8bf8ff);
  }
 html  .ai-block .services-lst > li:hover {
    border-color: #c9b6f5;
    box-shadow: 0 14px 40px var(--ai-glow);
  }
 
html   .ai-block .ai-ico {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ai-accent) 0%, #7ad0f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 6px 16px var(--ai-glow);
  }
 
 html  .ai-block .lst li::before { background: var(--ai-accent); opacity: .15; }
 html  .ai-block .lst li::after  { background: var(--ai-accent); }
 
 html  .ai-block .link  { color: var(--ai-accent); }
 html  .ai-block .btn   { background: var(--ai-accent); }
 html  .ai-block .btn:hover { background: var(--ai-accent-deep); }
 
 html  .ai-block .tier-tagline {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin: -8px 0 14px;
    font-style: italic;
  }
 
 html  .ai-block .badge-included {
    display: inline-block;
    background: rgb(61 101 242 / 8%);
    color: var(--ai-accent-deep);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 14px;
  }
 
 html  .ai-section-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 30px auto 50px;
    max-width: 1240px;
  }
 html  .ai-section-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
  }
 html  .ai-section-divider .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ai-accent);
    font-weight: 700;
  }
  html .ai-section-divider .label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ai-accent);
    box-shadow: 0 0 0 4px var(--ai-glow);
  }

  html .services-lst .link {
    font-size: 15px;
  }

html .services-lst .link:hover {
    text-decoration: none !important;
    color: #000;
    background: transparent;
}

.page-id-25 .services-area {
    padding-bottom: 1px;
}

.ai-section-divider {
    padding-top: 50px;
}

.services-block.ai-block li {
    color: #000 !important;
    font-weight: 400 !important;
}

@media (max-width: 991px) {
    ul.services-lst {
        display: block;
    }

    ul.services-lst > li {
        margin-bottom: 20px;
    }
}