  /* ============================================================
     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;
    --ai-violet: #7c3aed;
    --ai-violet-soft: #ddd6fe;
    --ai-violet-50: #f5f3ff;

    --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%);
    --grad-violet: linear-gradient(135deg, #f5f3ff 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, #f3eeff 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-page::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-page::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(232,30,133,0.08) 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: 620px; }
  .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .hero-page h1 {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .hero-page h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-lead-big {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .hero-page p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 14px;
  }
  .hero-note-free {
    font-size: 14px;
    font-weight: 700;
    color: var(--ai-violet);
    letter-spacing: 0.01em;
    margin-bottom: 32px;
  }

  /* ============================================================
     HERO VISUAL — use-case recommendation card
     ============================================================ */
  .uc-visual {
    width: 100%;
    max-width: 460px;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .uc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--sh-lg);
    padding: 20px 24px;
  }
  .uc-card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  .uc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .uc-dot-purple { background: var(--ai-violet); }
  .uc-dot-pink   { background: var(--pink); }

  /* input card */
  .uc-input { animation: ucFloat 7s ease-in-out infinite; }
  .uc-input-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    font-style: italic;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
  }
  .uc-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .uc-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    opacity: 0;
  }
  .uc-typing span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: ucTypeDot 1.4s ease-in-out infinite;
  }
  .uc-typing span:nth-child(2) { animation-delay: 0.2s; }
  .uc-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes ucTypeDot {
    0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
    40%         { transform: scale(1);   opacity: 1; }
  }
  .uc-send-badge {
    font-size: 11px;
    font-weight: 700;
    color: #1d8a4a;
    background: #e8f7ee;
    padding: 3px 10px;
    border-radius: 999px;
  }

  /* result card */
  .uc-result { animation: ucFloat 7s ease-in-out 0.6s infinite; }
  .uc-rec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .uc-rec-item {
    background: var(--surface);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .uc-rec-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--grad-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .uc-rec-icon svg { width: 15px; height: 15px; stroke: var(--ai-violet); }
  .uc-rec-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
  }
  .uc-rec-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.2;
  }

  /* free badge */
  .uc-free-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--ai-violet-50) 0%, var(--pink-50) 100%);
    border: 1px solid var(--ai-violet-soft);
    color: var(--ai-violet);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
  }
  .uc-free-badge svg { width: 13px; height: 13px; stroke: var(--pink); }

  @keyframes ucFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }

  /* ============================================================
     HERO (dark image variant — kept for reference)
     ============================================================ */
  .hero-ai-kuvat {
    padding: 200px 0 140px;
    background: linear-gradient(160deg, #0c1540 0%, #111d55 60%, #0c1540 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  .hero-ai-kuvat .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 32px;
    margin-left: max(0px, calc((100vw - 1280px) / 2));
    padding-right: 0;
  }
  .hero-ai-kuvat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
    mask-image: linear-gradient(to right, transparent 0%, black 18%);
    user-select: none;
  }
  .hero-ai-kuvat-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, transparent 65%, #0c1540 100%),
      linear-gradient(to right,
        rgba(12, 21, 64, 1)    0%,
        rgba(12, 21, 64, 1)    36%,
        rgba(12, 21, 64, 0.72) 50%,
        rgba(12, 21, 64, 0.22) 64%,
        transparent            76%
      );
    pointer-events: none;
  }
  .hero-ai-kuvat-inner {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-top: 28px;
  }
  .hero-ai-kuvat-inner h1 {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
  }
  .hero-ai-kuvat-inner h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-ai-kuvat-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 16px;
  }
  .hero-ai-kuvat-inner .hero-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .hero-ai-kuvat-inner .hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    font-style: italic;
  }
  .hero-ai-kuvat-inner .kicker.violet {
    background: rgba(124, 58, 237, 0.25);
    color: #c4b5fd;
    border-color: rgba(124, 58, 237, 0.35);
  }
  .hero-ai-kuvat-inner .hero-cta-row {
    padding-bottom: 0;
  }
  .ai-hi.ai-hi-dark {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
  }
  .ai-hi.ai-hi-dark:hover,
  .ai-hi.ai-hi-dark:focus-within {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
  }
  .ai-hi.ai-hi-dark .ai-hi-input {
    color: #fff;
  }
  .ai-hi.ai-hi-dark .ai-hi-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .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 — AI image generation cards
     ============================================================ */
  .ai-img-visual {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    position: relative;
    margin: 0 auto;
  }
  .ai-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);
  }
  .ai-card .ac-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ai-card .ac-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ai-violet);
  }
  .ai-card .ac-dot.pink { background: var(--pink); }
  .ai-card .ac-dot.orange { background: var(--orange); }
  .ai-card .ac-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
  }
  .ai-card .ac-row + .ac-row {
    border-top: 1px dashed var(--border);
  }
  .ai-card .ac-name { font-weight: 600; color: var(--navy-dark); }
  .ai-card .ac-meta { font-size: 12px; color: var(--text-muted); font-weight: 500; }
  .ai-card .ac-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .ai-card .ac-pill.done { background: #e8f7ee; color: #1d8a4a; }
  .ai-card .ac-pill.gen { background: var(--ai-violet-50); color: var(--ai-violet); }
  .ai-card .ac-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }
  .ai-card .ac-prompt-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 12px;
  }
  .ai-card .ac-thumb-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
  }
  .ai-card .ac-thumb {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  .ai-card .ac-thumb-bg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .ai-card .ac-thumb-bg.v1 {
    background: linear-gradient(135deg, #f8e8ff 0%, #e8d0ff 100%);
  }
  .ai-card .ac-thumb-bg.v2 {
    background: linear-gradient(135deg, #fff2e0 0%, #ffe0c0 100%);
  }
  .ai-card .ac-thumb-bg.v3 {
    background: linear-gradient(135deg, #e0f0ff 0%, #c0dfff 100%);
  }
  .ai-card .ac-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .ai-card .ac-stat-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
  }
  .ai-card .ac-stat {
    flex: 1;
    background: var(--surface);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
  }
  .ai-card .ac-stat-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 4px;
  }
  .ai-card .ac-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .ac-prompt {
    top: 4%;
    left: 2%;
    width: 62%;
    transform: rotate(-3deg);
    z-index: 2;
    animation: acFloatA 7s ease-in-out infinite;
  }
  .ac-output {
    bottom: 24%;
    right: 0;
    width: 62%;
    transform: rotate(3deg);
    z-index: 3;
    animation: acFloatB 6s ease-in-out infinite;
  }
  .ac-stats {
    bottom: 0;
    left: 10%;
    width: 68%;
    transform: rotate(-2deg);
    z-index: 1;
    animation: acFloatC 8s ease-in-out infinite;
  }
  @keyframes acFloatA {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-10px); }
  }
  @keyframes acFloatB {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-12px); }
  }
  @keyframes acFloatC {
    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); }
  .kicker.violet { color: var(--ai-violet); }
  .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; text-wrap: balance; }

  /* ============================================================
     INLINE CTA
     ============================================================ */
  .inline-cta {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 32px;
    background: var(--grad-soft);
    border: 1px solid var(--pink-soft);
    border-radius: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .inline-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .inline-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 240px;
    position: relative;
    z-index: 2;
  }
  .inline-cta-text strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .inline-cta-text span {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }
  .inline-cta-text a { color: var(--pink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--pink-soft); text-underline-offset: 3px; }
  .inline-cta-text a:hover { text-decoration-color: var(--pink); }
  .inline-cta .ai-hi { position: relative; z-index: 2; flex-shrink: 0; }

  /* ============================================================
     USE CASE CARDS — käyttötapaukset
     ============================================================ */
  .usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .usecase {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .usecase:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .usecase-visual {
    height: 160px;
    position: relative;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .usecase-visual.v-product {
    background: linear-gradient(135deg, #f3eeff 0%, #e8d8ff 100%);
  }
  .usecase-visual.v-lifestyle {
    background: linear-gradient(135deg, #fff8e0 0%, #ffe8b0 100%);
  }
  .usecase-visual.v-banner {
    background: linear-gradient(135deg, #fdeaf3 0%, #ffcce8 100%);
  }
  .usecase-visual.v-hero {
    background: linear-gradient(135deg, #eef0f8 0%, #d8dfff 100%);
  }
  .usecase-visual.v-some {
    background: linear-gradient(135deg, #e8fff0 0%, #c0f0d8 100%);
  }
  .usecase-visual-icon {
    font-size: 52px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .usecase:hover .usecase-visual-icon {
    transform: scale(1.12) translateY(-4px);
  }
  .usecase-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    color: var(--navy-dark);
  }
  .usecase-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .usecase h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .usecase p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }
  .usecase-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }
  .usecase-ex {
    display: inline-block;
    padding: 4px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
  }

  /* ============================================================
     HOW WE WORK — prosessi
     ============================================================ */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
  }
  .process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
  }
  .process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--ai-violet-soft);
  }
  .process-step::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .process-num {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ai-violet);
    background: var(--ai-violet-50);
    border-radius: 999px;
    padding: 4px 12px;
    display: inline-block;
    align-self: flex-start;
  }
  .process-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ai-violet-50);
    color: var(--ai-violet);
  }
  .process-icon.pink { background: var(--pink-50); color: var(--pink); }
  .process-icon.orange { background: var(--orange-50); color: var(--orange); }
  .process-icon.navy { background: var(--navy-50); color: var(--navy); }
  .process-step h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .process-step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ============================================================
     COMPARISON — tekoäly vs perinteinen
     ============================================================ */
  .comparison-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .comparison-col {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  .comparison-col.ai-col {
    background: linear-gradient(160deg, var(--navy-deeper) 0%, var(--navy) 60%, #3b2a7a 130%);
    color: #fff;
  }
  .comparison-col.ai-col::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.30) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .comparison-col.trad-col {
    background: var(--surface);
    border: 1px solid var(--border);
  }
  .comparison-col-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .ai-col .comparison-col-badge {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
  }
  .trad-col .comparison-col-badge {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
  }
  .comparison-col-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
  }
  .comparison-col h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .ai-col h3 { color: #fff; }
  .trad-col h3 { color: var(--navy-dark); }
  .comparison-col .col-sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .ai-col .col-sub { color: rgba(255,255,255,0.72); }
  .trad-col .col-sub { color: var(--text-muted); }
  .comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .comparison-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.55;
  }
  .ai-col .comparison-list li { color: rgba(255,255,255,0.88); }
  .trad-col .comparison-list li { color: var(--text-muted); }
  .comparison-list .ci-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .ai-col .ci-icon { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); }
  .trad-col .ci-icon { background: var(--bg); border: 1px solid var(--border); color: var(--text-muted); }
  .comparison-note {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.16);
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
  }
  .ai-col .comparison-note { color: rgba(255,255,255,0.58); }
  .trad-col .comparison-note {
    border-top-color: var(--border);
    color: var(--text-muted);
  }

  /* ============================================================
     SPEC TABLE — nopeus, hinta, oikeudet
     ============================================================ */
  .spec-band {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, #3b2a6b 130%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .spec-band::before {
    content: '';
    position: absolute;
    top: -180px;
    left: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .spec-band::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .spec-band .section-head { position: relative; z-index: 2; }
  .spec-band .kicker { color: rgba(221, 214, 254, 0.9); }
  .spec-band .section-title { color: #fff; }
  .spec-band .section-lead { color: rgba(255,255,255,0.78); }
  .spec-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .spec-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 32px 30px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, border-color 0.3s;
  }
  .spec-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(232, 30, 133, 0.35);
  }
  .spec-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
  }
  .spec-item .spec-num {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .spec-item .spec-label {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
  }
  .spec-item .spec-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
  }

  /* ============================================================
     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(--pink-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(--pink);
    transition: transform 0.25s;
    line-height: 1;
    flex-shrink: 0;
  }
  .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;
  }

  /* ============================================================
     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(124, 58, 237, 0.28) 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: 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: 32px;
    color: rgba(255,255,255,0.85);
  }
  .cta-band h2 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
  }

  /* ============================================================
     KENELLE — persona grid
     ============================================================ */
  .persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .persona {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .persona:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--ai-violet-soft);
  }
  .persona-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--ai-violet-50);
    color: var(--ai-violet);
  }
  .persona-icon.pink { background: var(--pink-50); color: var(--pink); }
  .persona-icon.orange { background: var(--orange-50); color: var(--orange); }
  .persona h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--navy-dark);
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
  .persona p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .persona ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .persona li {
    font-size: 14.5px;
    color: var(--text);
    padding-left: 34px;
    position: relative;
    line-height: 1.6;
    min-height: 22px;
  }
  .persona li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 2px 8px -2px rgba(230, 70, 68, 0.45);
  }
  .persona li::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 7px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transform-origin: center;
  }

  /* ============================================================
     KAKSI TAPAA — section bg + aalto-divider
     ============================================================ */

  .kt-tavat-section {
    background: #eef6fc;
    position: relative;
    padding-top: 140px;
    overflow: hidden;
  }
  .kt-tavat-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: block;
    pointer-events: none;
  }

  @media (max-width: 700px) {
    .kt-tavat-section { padding-top: 90px; }
    .kt-tavat-wave { height: 60px; }
  }

  /* ============================================================
     KAKSI TAPAA — 2-col cards
     ============================================================ */

  .kt-tavat-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: stretch;
  }

  .kt-tavat-cards .kt-tavat-card {
    flex: 1;
    min-width: 0;
  }

  .kt-tavat-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  /* Dark navy card (vasen) */
  .kt-tavat-card--dark {
    background: linear-gradient(145deg, var(--navy-deeper) 0%, var(--navy) 100%);
    color: #fff;
  }

  /* Light cream/peach card (oikea) */
  .kt-tavat-card--light {
    background: #fdf1de;
    color: var(--navy-dark);
    border: 1px solid #fae3b8;
  }

  .kt-tavat-card--white {
    background: #fff;
    color: var(--navy-dark);
    border: 1px solid rgba(0,0,0,0.07);
  }

  .kt-tavat-card-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  /* Icon + title header row */
  .kt-tavat-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
  }
  .kt-tavat-card-header .kt-tavat-card-title {
    margin: 0;
    align-self: center;
  }

  /* Icon wrap */
  .kt-tavat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .kt-tavat-icon-wrap--violet {
    background: #ede9fe;
    color: #7c3aed;
  }
  .kt-tavat-icon-wrap--orange {
    background: #fde8cc;
    color: var(--orange, #f57e20);
  }

  .kt-tavat-card-title {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 10px;
  }

  .kt-tavat-card-sub {
    font-size: 14.5px;
    line-height: 1.5;
    margin: 0 0 22px;
  }
  .kt-tavat-card--dark .kt-tavat-card-sub { color: rgba(255,255,255,0.72); }
  .kt-tavat-card--light .kt-tavat-card-sub { color: var(--text-muted); }

  /* Lista checkmark-ympyröillä */
  .kt-tavat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .kt-tavat-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.4;
  }
  .kt-tavat-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  }
  .kt-tavat-card--dark .kt-tavat-list li { color: rgba(255,255,255,0.88); }
  .kt-tavat-card--dark .kt-tavat-list li::before { background-color: var(--ai-violet, #7c3aed); }
  .kt-tavat-card--light .kt-tavat-list li { color: var(--navy-dark); }
  .kt-tavat-card--light .kt-tavat-list li::before { background-color: var(--orange); }
  .kt-tavat-card--white .kt-tavat-list li { color: var(--navy-dark); }

  /* Icon-lista (card 1): ei ::before-checkmarkkeja, inline SVG-ikonit */
  .kt-tavat-list--icons li::before { display: none; }
  .kt-tavat-list--icons li { gap: 10px; }
  .kt-list-icon {
    flex-shrink: 0;
    color: #7c3aed;
  }

  /* Button */
  .kt-tavat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .kt-tavat-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.18);
  }
  .kt-tavat-btn--cream {
    background: #fde2b3;
    color: var(--navy-dark);
  }
  .kt-tavat-btn--cream:hover { background: #fbd28e; }
  .kt-tavat-btn--navy {
    background: var(--navy-dark);
    color: #fff;
  }
  .kt-tavat-btn--navy:hover { background: var(--navy-deeper, #1a2552); }
  .kt-tavat-btn--outline {
    background: transparent;
    color: var(--navy-dark);
    border: 2px solid var(--navy-dark);
  }
  .kt-tavat-btn--outline:hover {
    background: var(--navy-dark);
    color: #fff;
  }

  /* Visual area — kuva tai mockup oikealla */
  .kt-tavat-card-visual {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
  }
  .kt-tavat-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .kt-tavat-card-visual--img {
    background: transparent;
    overflow: visible;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .kt-tavat-card-visual--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .kt-tavat-card-visual--mock {
    background: rgba(245,128,36,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Brand-collage (Tilaa valmiit AI-kuvat -kortti) */
  .kt-tavat-card-visual--collage {
    background: transparent;
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .kt-collage {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    border-radius: 18px;
    overflow: hidden;
  }
  .kt-collage > img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .kt-tavat-card-visual--collage:hover .kt-collage img {
    transform: scale(1.04);
  }
  /* Mobiili: kortit stackaantuvat */
  @media (max-width: 900px) {
    .kt-tavat-cards { flex-direction: column; }
    .kt-tavat-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
    .kt-tavat-card-visual { height: 220px; }
    .kt-tavat-card-visual--img { height: 200px; }
  }

  /* UI mockup (generaattori panel) */
  .kt-ui-mock {
    width: 280px;
    max-width: 90%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin: 0 auto;
  }
  .kt-ui-bar {
    height: 26px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
    border-bottom: 1px solid #ebebeb;
  }
  .kt-ui-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
  }
  .kt-ui-bar span:first-child  { background: #ff6057; }
  .kt-ui-bar span:nth-child(2) { background: #ffbd2e; }
  .kt-ui-bar span:nth-child(3) { background: #28c940; }
  .kt-ui-prompt {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid #f0f0f0;
  }
  .kt-ui-field {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 7px 9px;
    font-size: 8.5px;
    color: #aaa;
  }
  .kt-ui-submit {
    background: var(--orange);
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 8.5px;
    font-weight: 700;
    text-align: center;
    align-self: flex-end;
  }
  .kt-ui-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 10px;
  }
  .kt-ui-thumb {
    aspect-ratio: 1;
    background: #f0eeff;
    border-radius: 5px;
  }
  .kt-ui-thumb--on {
    background: #ffe8d0;
    outline: 2px solid var(--orange);
    outline-offset: 1px;
  }
  /* Features row */
  .kt-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  .kt-feat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 22px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(35,46,102,0.08);
  }
  .kt-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ai-violet-soft, #ddd6fe);
    color: var(--ai-violet, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .kt-feat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 3px;
  }
  .kt-feat-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ============================================================
     MALLIT — malliosaaminen kortit
     ============================================================ */
  .malli-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
  .malli-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 28px 26px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .malli-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(232, 30, 133, 0.40);
    transform: translateY(-4px);
  }
  .malli-card--more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-style: dashed;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
  }
  .malli-card--more:hover {
    border-color: rgba(232, 30, 133, 0.5);
    background: rgba(255,255,255,0.06);
  }
  .malli-more-icon {
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: rgba(255,255,255,0.25);
    margin-bottom: 14px;
    transition: color 0.3s;
  }
  .malli-card--more:hover .malli-more-icon {
    color: rgba(232, 30, 133, 0.7);
  }
  .malli-card--more .malli-nimi {
    margin-bottom: 8px;
  }
  .malli-card--more .malli-kuvaus {
    font-size: 13.5px;
  }
  .malli-nimi {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .malli-kuvaus {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
  }
  .malli-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.70);
  }
  .malli-footnote {
    text-align: center;
    margin-top: 48px;
    color: rgba(255,255,255,0.50);
    font-size: 15px;
    position: relative;
    z-index: 2;
    font-style: italic;
  }

  /* ============================================================
     ESIMERKIT — projektiesimerkit
     ============================================================ */
  .esimerkki-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .esimerkki-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  }
  .esimerkki-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--ai-violet-soft);
  }
  .esimerkki-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
  }
  .esimerkki-icon.v-ravintolatuote { background: var(--orange-50); }
  .esimerkki-icon.v-elokuva { background: var(--ai-violet-50); }
  .esimerkki-icon.v-markkinointi { background: var(--pink-50); }
  .esimerkki-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .esimerkki-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
  }
  .esimerkki-mallit {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .esimerkki-malli-pill {
    display: inline-block;
    padding: 3px 10px;
    background: var(--ai-violet-50);
    color: var(--ai-violet);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
  }

  /* ============================================================
     GALERIA — masonry grid + suodatin
     ============================================================ */
  .galeria-section {
    padding: 100px 0 80px;
    background: #fff;
  }

  /* Suodatinpainikkeet */
  .galeria-filters {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    gap: 8px;
    justify-content: center;
    margin-bottom: 52px;
  }
  .gal-filter {
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.01em;
  }
  .gal-filter:hover {
    border-color: var(--navy);
    color: var(--navy);
  }
  .gal-filter.active {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: #fff;
  }

  /* Masonry grid */
  .galeria-masonry {
    columns: 3;
    column-gap: 20px;
  }

  /* Yksittäinen tile */
  .gal-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gal-item:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 24px 56px -12px rgba(0, 0, 0, 0.32);
  }
  .gal-item.hidden,
  .gal-item.gal-more-hidden {
    display: none;
  }
  .galeria-load-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .gal-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    background: var(--navy-50);
    border: 1px solid var(--navy-100);
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .gal-load-more-btn:hover {
    background: var(--navy-100);
    transform: translateY(2px);
  }
  .gal-load-more-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
  }
  @keyframes galAppear {
    from { opacity: 0; transform: scale(0.93) translateY(14px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
  }
  .gal-item.gal-appear {
    animation: galAppear 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* Kuvan sisäinen suhde */
  .gal-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  .gal-item--tall   .gal-img { padding-top: 138%; }
  .gal-item--square .gal-img { padding-top: 100%; }
  .gal-item--wide   .gal-img { padding-top:  68%; }

  /* Gradienttitausta */
  .gal-img-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gal-img-bg img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .gal-img-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 35% 22%, rgba(255,255,255,0.15) 0%, transparent 52%),
      radial-gradient(ellipse at 72% 82%, rgba(0,0,0,0.22) 0%, transparent 48%);
    pointer-events: none;
  }
  .gal-item:hover .gal-img-bg {
    transform: scale(1.07);
  }

  /* Pohjan tumma haivutus */
  .gal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 30%,
      rgba(0, 0, 0, 0.12) 58%,
      rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Ylämetatiedot */
  .gal-meta-top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  .gal-cat-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px) saturate(1.5);
    -webkit-backdrop-filter: blur(10px) saturate(1.5);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
  .gal-model-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    white-space: nowrap;
  }

  /* Alaotsikko */
  .gal-meta-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 16px 16px;
  }
  .gal-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
    letter-spacing: -0.005em;
  }

  /* ============================================================
     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; }
  [data-reveal-stagger].in > *:nth-child(9)  { transition-delay: 0.45s; }
  [data-reveal-stagger].in > *:nth-child(10) { transition-delay: 0.50s; }
  [data-reveal-stagger].in > *:nth-child(11) { transition-delay: 0.55s; }
  [data-reveal-stagger].in > *:nth-child(12) { transition-delay: 0.60s; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 960px) {
    .galeria-masonry { columns: 2; }
  }

  @media (max-width: 1100px) {
    .hero-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .uc-visual { max-width: 420px; }
    .persona-grid { grid-template-columns: 1fr; }
    .comparison-wrap { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .malli-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .spec-grid { grid-template-columns: 1fr; }
    .comparison-col { padding: 32px 26px; }
    .kt-features { grid-template-columns: 1fr; gap: 10px; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-page { padding: 120px 0 60px; }
    .uc-rec-row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .uc-rec-item { padding: 10px 8px; }
    .block { padding: 70px 0; }
    .spec-band { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }
    .persona { padding: 32px 26px; }
    .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; }
    .inline-cta { flex-direction: column; align-items: stretch; padding: 24px 22px; gap: 18px; margin-top: 44px; }
    .inline-cta .ai-hi { align-self: stretch; justify-content: center; }
    .usecase-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .galeria-masonry { columns: 1; }
    .galeria-filters { display: flex; flex-wrap: wrap; gap: 6px; }
    .gal-filter { padding: 8px 16px; font-size: 12px; }
    .galeria-section { padding: 70px 0 60px; }
  }
