  /* ============================================================
     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;

    --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: #f8f9fb;
    --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(160deg, #fef3f8 0%, #fff8f0 55%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-page::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-page::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(245, 128, 36, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-page-inner { max-width: 640px; }
  .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .hero-page .kicker {
    color: var(--pink);
    margin-bottom: 20px;
  }
  .hero-page h1 {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .hero-page h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-page .hero-hook {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.4;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }
  .hero-page p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 36px;
  }
  .hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .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;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -8px rgba(230, 70, 68, 0.7);
  }

  /* ============================================================
     HERO VISUAL
     ============================================================ */
  .ec-visual {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    position: relative;
    margin: 0 auto;
  }
  .ec-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--sh-lg);
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
  }
  .ec-card .ec-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ec-card .ec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
  }
  .ec-card .ec-dot.orange { background: var(--orange); }
  .ec-card .ec-dot.navy { background: var(--navy); }
  .ec-card .ec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
  }
  .ec-card .ec-row + .ec-row { border-top: 1px dashed var(--border); }
  .ec-card .ec-name { font-weight: 600; color: var(--navy-dark); }
  .ec-card .ec-meta { font-size: 12px; color: var(--text-muted); font-weight: 500; }
  .ec-card .ec-val { font-weight: 800; color: var(--navy-deeper); white-space: nowrap; }
  .ec-card .ec-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .ec-card .ec-pill.ok { background: #e8f7ee; color: #1d8a4a; }
  .ec-card .ec-pill.ok::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
  }
  .ec-card .ec-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
  }
  .ec-card .ec-total { color: var(--pink); font-size: 18px; }

  /* Card positions and animations */
  .ec-cart {
    top: 4%;
    left: 4%;
    width: 62%;
    transform: rotate(-4deg);
    z-index: 2;
    animation: ecFloatA 7s ease-in-out infinite;
  }
  .ec-revenue {
    bottom: 22%;
    right: 0;
    width: 60%;
    transform: rotate(3deg);
    z-index: 3;
    animation: ecFloatB 6s ease-in-out infinite;
  }
  .ec-integrations {
    bottom: 0;
    left: 12%;
    width: 66%;
    transform: rotate(-2deg);
    z-index: 1;
    animation: ecFloatC 8s ease-in-out infinite;
  }
  @keyframes ecFloatA {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-10px); }
  }
  @keyframes ecFloatB {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-12px); }
  }
  @keyframes ecFloatC {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
  }

  /* ============================================================
     AI-HI FORM
     ============================================================ */
  .ai-hi {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 16px 28px;
    background: #fff;
    color: var(--navy-dark);
    border: 1px solid var(--border);
    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: var(--navy);
    color: var(--navy);
    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: var(--navy-dark);
    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: var(--text-muted); 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 var(--border);
  }
  .ai-hi-send {
    width: 0;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--navy-dark);
    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, .ai-hi-send:focus-visible { color: var(--pink); }

  /* ============================================================
     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); }
  .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; }

  /* ============================================================
     RATKAISUT -- 5 SVC CARDS (full-width, larger)
     ============================================================ */
  .svc-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .svc-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0 32px;
    align-items: start;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
  }
  .svc-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .svc-item.featured {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, #4a1f6f 130%);
    border: none;
    color: #fff;
  }
  .svc-item.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 20%, rgba(232, 30, 133, 0.30) 0%, transparent 50%),
      radial-gradient(circle at 92% 85%, rgba(245, 128, 36, 0.20) 0%, transparent 50%);
    pointer-events: none;
  }
  /* Nostaa sisallon ::before-hohteen ylapuolelle. Merkki jatetaan ulos,
     jotta sen oma absoluuttinen sijoittelu sailyy. */
  .svc-item.featured > *:not(.svc-new-badge) { position: relative; z-index: 2; }
  .svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--grad-soft);
    color: var(--pink);
  }
  .svc-icon.orange { background: var(--orange-50); color: var(--orange); }
  .svc-icon.navy { background: var(--navy-50); color: var(--navy); }
  .svc-icon.magenta { background: rgba(216, 35, 205, 0.10); color: var(--magenta); }
  .svc-item.featured .svc-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
    backdrop-filter: blur(10px);
  }
  .svc-body { padding-top: 2px; }
  .svc-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .svc-item.featured .svc-body h3 {
    color: #fff;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 900;
    margin-bottom: 14px;
  }
  .svc-body h3 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .svc-body p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 760px;
  }
  .svc-item.featured .svc-body p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
  }
  .svc-body p a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--pink-soft);
    text-underline-offset: 3px;
  }
  .svc-body p a:hover { text-decoration-color: var(--pink); }
  .svc-item.featured .svc-body p a {
    color: var(--orange-soft);
    text-decoration-color: rgba(252, 181, 73, 0.5);
  }
  .svc-item.featured .svc-body p a:hover { text-decoration-color: var(--orange-soft); }
  .svc-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 6px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .svc-item:hover .svc-arrow {
    border-color: var(--pink);
    color: var(--pink);
  }
  .svc-item.featured .svc-arrow {
    border-color: rgba(255,255,255,0.30);
    color: rgba(255,255,255,0.70);
  }
  .svc-item.featured:hover .svc-arrow {
    border-color: rgba(255,255,255,0.80);
    color: #fff;
    background: rgba(255,255,255,0.12);
  }
  .svc-new-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.95);
    color: var(--navy-dark);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    z-index: 5;
  }

  /* ============================================================
     INTEGRAATIOT -- CATEGORY CARDS
     ============================================================ */
  .int-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 32px;
  }
  .int-cat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .int-cat:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .int-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--grad-soft);
    color: var(--pink);
  }
  .int-cat-icon.orange { background: var(--orange-50); color: var(--orange); }
  .int-cat-icon.navy { background: var(--navy-50); color: var(--navy); }
  .int-cat-icon.magenta { background: rgba(216, 35, 205, 0.10); color: var(--magenta); }
  .int-cat h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--navy-dark);
    letter-spacing: -0.005em;
  }
  .int-cat ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .int-cat li {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
  }
  .int-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
  }

  /* ============================================================
     OSAAMINEN
     ============================================================ */
  .osaaminen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .osaaminen-text h2 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--navy-dark);
    margin-bottom: 22px;
  }
  .osaaminen-text h2 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .osaaminen-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .osaaminen-text p:last-of-type { margin-bottom: 0; }
  .osaaminen-pills {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .osaaminen-pill {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .osaaminen-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--pink-soft);
  }
  .osaaminen-pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--grad-soft);
    color: var(--pink);
  }
  .osaaminen-pill-icon.orange { background: var(--orange-50); color: var(--orange); }
  .osaaminen-pill-icon.navy { background: var(--navy-50); color: var(--navy); }
  .osaaminen-pill-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .osaaminen-pill-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* ============================================================
     LUVUT -- 3 STATS
     ============================================================ */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
  }
  .stat {
    padding: 44px 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .stat:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
  .stat-num {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .stat-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
  }

  /* ============================================================
     REFERENSSIT -- 6-CARD GRID
     ============================================================ */
  .ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  .ref-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    position: relative;
  }
  .ref-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink);
  }
  .ref-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
  }
  .ref-card-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
  }
  .ref-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .ref-card:hover .ref-card-photo { transform: scale(1.05); }
  .ref-card-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,28,70,0.70) 0%, rgba(20,28,70,0.15) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  .ref-card-type { position: relative; z-index: 2; }
  .ref-card-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    opacity: 0;
    transform: translate(8px, -8px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s, color 0.2s;
    z-index: 2;
  }
  .ref-card:hover .ref-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--pink);
    color: #fff;
  }
  .ref-card-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    color: var(--navy-dark);
  }
  .ref-card-type::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
  }
  .ref-card-type.b2b::before { background: var(--navy); }
  .ref-card-type.both::before {
    background: var(--grad);
  }
  .ref-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
  }
  .ref-card-segment {
    font-size: 11px;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .ref-card-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .ref-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 4px;
  }
  .ref-cta-row { text-align: center; }
  .ref-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 16px;
    padding: 14px 28px;
    border: 1.5px solid var(--navy-dark);
    border-radius: 999px;
    transition: all 0.2s;
  }
  .ref-cta:hover {
    background: var(--navy-dark);
    color: #fff;
    transform: translateY(-2px);
  }

  /* ============================================================
     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(232, 30, 133, 0.22) 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(245, 128, 36, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta-lead {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .cta-band h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.92);
  }
  .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.70);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ============================================================
     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); }
  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal-stagger].in > * { opacity: 1; transform: translateY(0); }
  [data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.05s; }
  [data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.10s; }
  [data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.15s; }
  [data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.20s; }
  [data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.25s; }
  [data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.30s; }
  [data-reveal-stagger].in > *:nth-child(7) { transition-delay: 0.35s; }
  [data-reveal-stagger].in > *:nth-child(8) { transition-delay: 0.40s; }


  /* ============================================================
     PROCESS
     ============================================================ */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: process;
  }
  .process-step { position: relative; }
  .process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .process-step h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--navy-dark);
  }
  .process-step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .faq-item:hover {
    border-color: var(--orange-soft);
    box-shadow: var(--sh-md);
  }
  .faq-item summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--orange);
    transition: transform 0.2s;
    line-height: 1;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
  }
  .faq-item p a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(233, 30, 133, 0.35);
    text-underline-offset: 3px;
  }
  .faq-item p a:hover { text-decoration-color: var(--pink); }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1100px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .hero-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .ec-visual { max-width: 420px; }
    .int-grid { grid-template-columns: repeat(2, 1fr); }
    .osaaminen-grid { grid-template-columns: 1fr; gap: 48px; }
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  }
  @media (max-width: 800px) {
    .svc-item { grid-template-columns: 44px 1fr; }
    .svc-arrow { display: none; }
  }
  @media (max-width: 700px) {
    .ref-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; gap: 16px; }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .process-step::before { font-size: 64px; }
    .faq-item { padding: 20px 22px; }
    .faq-item summary { font-size: 17px; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-page { padding: 120px 0 60px; }
    .block { padding: 70px 0; }
    .section-head { margin-bottom: 50px; }
    .svc-item { padding: 28px 24px; gap: 0 18px; }
    .svc-item.featured { padding: 32px 28px; }
    .ec-visual { max-width: 320px; }
    .ec-card { padding: 14px 16px; font-size: 12.5px; }
    .cta-band { padding: 80px 0; }
    .hero-cta-row { flex-direction: column; }
    .btn-primary { justify-content: center; }
    .ai-hi { justify-content: center; }
    .ai-hi:hover .ai-hi-input,
    .ai-hi:focus-within .ai-hi-input { width: 140px; }
    .int-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat { padding: 32px 24px; }
  }
