  /* ============================================================
     INLINE CTA
     ============================================================ */
  .inline-cta {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 32px;
    background: var(--grad-geo);
    border: 1px solid rgba(124, 58, 237, 0.20);
    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(124, 58, 237, 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(--geo); font-weight: 700; text-decoration: underline; text-decoration-color: var(--geo-soft); text-underline-offset: 3px; }
  .inline-cta-text a:hover { text-decoration-color: var(--geo); }
  .inline-cta .ai-hi { position: relative; z-index: 2; flex-shrink: 0; }

  /* ============================================================
     TUOTTEET — AI-valmis pohja
     ============================================================ */
  .product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .product-card {
    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;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-decoration: none;
    color: inherit;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--geo-soft);
  }
  .product-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: var(--geo-50);
    color: var(--geo);
    align-self: flex-start;
  }
  .product-card-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--geo);
    flex-shrink: 0;
  }
  .product-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-card-icon.pink { background: var(--pink-50); color: var(--pink); }
  .product-card-icon.navy { background: var(--navy-50); color: var(--navy); }
  .product-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .product-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .product-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-top: 6px;
    border-top: 1px solid var(--border);
    margin-top: auto;
  }
  .product-card-features li {
    font-size: 14px;
    color: var(--text);
    padding-left: 26px;
    position: relative;
    line-height: 1.55;
  }
  .product-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 2px 6px -2px rgba(230, 70, 68, 0.35);
  }
  .product-card-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    width: 5px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transform-origin: center;
  }
  .product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--geo);
    margin-top: 4px;
    transition: gap 0.2s;
  }
  .product-card:hover .product-card-link { gap: 12px; }

  /* ============================================================
     DARK BAND — GEO process timeline
     ============================================================ */
  .geo-band {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, #3b1f8a 130%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .geo-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;
  }
  .geo-band::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .geo-band .section-head { position: relative; z-index: 2; }
  .geo-band .kicker { color: var(--geo-soft); }
  .geo-band .section-title { color: #fff; }
  .geo-band .section-lead { color: rgba(255,255,255,0.78); }

  .process-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 10%, rgba(255,255,255,0.18) 90%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
  .process-step {
    padding: 0 20px 0 0;
    position: relative;
    z-index: 2;
  }
  .process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
  }
  .process-step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--grad);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  .process-step:hover .process-step-num::after { opacity: 0.6; }
  .process-step h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .process-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
  }
  .process-step-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.75);
  }

  /* ============================================================
     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: rgba(124, 58, 237, 0.30);
    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(--geo);
    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;
  }
  .faq-item p a {
    color: var(--geo);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--geo-soft);
    text-underline-offset: 3px;
  }
  .faq-item p a:hover { text-decoration-color: var(--geo); }

