<style>
    :root {
      --cream: #FAF7F2;
      --warm-white: #FEFCF8;
      --ink: #1A1208;
      --brown-dark: #3B2A1A;
      --brown-mid: #7A5C3E;
      --gold: #C9923A;
      --gold-light: #F0C97A;
      --gold-pale: #FBF0DA;
      --sage: #6B7B5E;
      --rose: #B05A52;
      --teal: #3A6B78;
      --border: rgba(58,42,26,0.12);
      --shadow: 0 4px 32px rgba(58,42,26,0.1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background-color: #ffffff;
      color: var(--ink);
      line-height: 1.75;
      font-size: 17px;
    }

    /* ── HEADER ── */
    header {
      background: var(--brown-dark);
      color: var(--cream);
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .header-noise {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .header-cross {
      position: absolute;
      right: 6%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.07;
    }

    .header-inner {
      max-width: 860px;
      margin: 0 auto;
      padding: 72px 32px 64px;
      position: relative;
      z-index: 1;
    }

    .badge {
      display: inline-block;
      background: var(--gold);
      color: var(--brown-dark);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 24px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.1rem, 5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.18;
      color: var(--warm-white);
      margin-bottom: 20px;
      max-width: 680px;
    }

    h1 em {
      color: var(--gold-light);
      font-style: italic;
    }

    .header-sub {
      font-size: 1.05rem;
      color: rgba(250,247,242,0.72);
      max-width: 540px;
      line-height: 1.6;
      margin-bottom: 36px;
    }

    .meta {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      color: rgba(250,247,242,0.55);
      font-weight: 500;
    }

    .meta-dot {
      width: 3px; height: 3px;
      background: rgba(250,247,242,0.3);
      border-radius: 50%;
    }

    /* ── TOC ── */
    .toc-bar {
      background: var(--brown-mid);
      color: var(--cream);
      padding: 0;
    }

    .toc-inner {
      max-width: 860px;
      margin: 0 auto;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      font-size: 0.82rem;
    }

    .toc-inner span { color: rgba(250,247,242,0.45); font-weight: 500; margin-right: 6px; }

    .toc-link {
      color: var(--gold-light);
      text-decoration: none;
      padding: 3px 10px;
      border: 1px solid rgba(240,201,122,0.25);
      border-radius: 20px;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .toc-link:hover {
      background: rgba(240,201,122,0.15);
      border-color: var(--gold-light);
    }

    /* ── MAIN ── */
    main {
      max-width: 860px;
      margin: 0 auto;
      padding: 56px 32px 80px;
    }

    /* ── SECTIONS ── */
    .intro-block {
      background: var(--gold-pale);
      border-left: 4px solid var(--gold);
      padding: 28px 32px;
      border-radius: 0 8px 8px 0;
      margin-bottom: 56px;
    }

    .intro-block p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--brown-dark);
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 24px;
      padding-top: 16px;
    }

    h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 14px;
    }

    p { margin-bottom: 18px; color: var(--brown-dark); }

    /* ── COMPARISON TABLE ── */
    .table-section { margin-bottom: 60px; }

    .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
      min-width: 620px;
    }

    thead tr {
      background: var(--brown-dark);
      color: var(--warm-white);
    }

    thead th {
      padding: 14px 16px;
      text-align: left;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    thead th:first-child { border-radius: 6px 0 0 0; }
    thead th:last-child  { border-radius: 0 6px 0 0; }

    thead th:not(:first-child) { text-align: center; }

    tbody tr { border-bottom: 1px solid var(--border); }
    tbody tr:nth-child(even) { background: rgba(201,146,58,0.05); }
    tbody tr:hover { background: rgba(201,146,58,0.09); transition: background 0.15s; }

    tbody td {
      padding: 13px 16px;
      vertical-align: middle;
      color: var(--brown-dark);
    }

    tbody td:not(:first-child) { text-align: center; }

    .row-label {
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--brown-mid);
      white-space: nowrap;
    }

    .check { color: #4A7C59; font-size: 1rem; }
    .cross { color: var(--rose); font-size: 1rem; }
    .warn  { color: var(--gold); font-size: 1rem; }

    /* ── APP CARDS ── */
    .cards-section { margin-bottom: 60px; }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 28px;
      margin-top: 8px;
    }

    .card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(58,42,26,0.14);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }

    .card-gerejasoft::before { background: linear-gradient(90deg, #3A6B78, #5A9BAA); }
    .card-shiftsoft::before  { background: linear-gradient(90deg, #C9923A, #F0C97A); }
    .card-churchcms::before  { background: linear-gradient(90deg, #6B7B5E, #9AAA8E); }
    .card-mygereja::before   { background: linear-gradient(90deg, #B05A52, #D08880); }

    .card-icon {
      width: 46px; height: 46px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .card-gerejasoft .card-icon { background: rgba(58,107,120,0.12); }
    .card-shiftsoft  .card-icon { background: rgba(201,146,58,0.12); }
    .card-churchcms  .card-icon { background: rgba(107,123,94,0.12); }
    .card-mygereja   .card-icon { background: rgba(176,90,82,0.12); }

    .card-title-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .card h3 { margin-bottom: 4px; font-size: 1.2rem; }

    .card-tag {
      font-size: 0.73rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 20px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .card-gerejasoft .card-tag { background: rgba(58,107,120,0.12); color: var(--teal); }
    .card-shiftsoft  .card-tag { background: rgba(201,146,58,0.12); color: var(--gold); }
    .card-churchcms  .card-tag { background: rgba(107,123,94,0.12); color: var(--sage); }
    .card-mygereja   .card-tag { background: rgba(176,90,82,0.12); color: var(--rose); }

    .card-price {
      font-size: 0.82rem;
      color: var(--brown-mid);
      margin-bottom: 16px;
      font-weight: 500;
    }

    .card-desc {
      font-size: 0.92rem;
      color: var(--brown-mid);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .pro-con { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

    .pro-item, .con-item {
      display: flex;
      gap: 8px;
      font-size: 0.87rem;
      line-height: 1.45;
      color: var(--brown-dark);
    }

    .pro-item::before { content: '✓'; color: #4A7C59; font-weight: 700; flex-shrink: 0; }
    .con-item::before { content: '✕'; color: var(--rose); font-weight: 700; flex-shrink: 0; }

    .verdict-box {
      background: var(--gold-pale);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 0.88rem;
      color: var(--brown-dark);
      line-height: 1.5;
      border: 1px solid rgba(201,146,58,0.2);
    }

    .verdict-box strong { color: var(--gold); }

    /* ── SUMMARY MATRIX ── */
    .matrix-section { margin-bottom: 60px; }

    .matrix-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 8px;
    }

    @media (max-width: 580px) {
      .matrix-grid { grid-template-columns: 1fr; }
      .cards-grid { grid-template-columns: 1fr; }
    }

    .matrix-card {
      padding: 22px 24px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--warm-white);
    }

    .matrix-label {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--brown-mid);
      margin-bottom: 8px;
    }

    .matrix-app {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 8px;
    }

    .matrix-desc {
      font-size: 0.88rem;
      color: var(--brown-mid);
      line-height: 1.55;
    }

    /* ── CALLOUT ── */
    .callout {
      background: var(--brown-dark);
      color: var(--cream);
      border-radius: 12px;
      padding: 40px 40px;
      margin-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .callout::after {
      content: '';
      position: absolute;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 6rem;
      color: rgba(250,247,242,0.05);
      pointer-events: none;
    }

    .callout h2 {
      color: var(--gold-light);
      margin-bottom: 16px;
      font-size: 1.55rem;
    }

    .callout p {
      color: rgba(250,247,242,0.75);
      font-size: 0.97rem;
      margin-bottom: 12px;
      max-width: 560px;
    }

    .callout-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .callout-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: rgba(250,247,242,0.85);
    }

    .callout-list li::before {
      content: '→';
      color: var(--gold-light);
      font-weight: 700;
      flex-shrink: 0;
    }

    .callout-list strong { color: var(--gold-light); }

    /* ── FOOTER ── */
    footer {
      background: var(--brown-dark);
      color: rgba(250,247,242,0.45);
      text-align: center;
      padding: 32px;
      font-size: 0.82rem;
    }

    footer span { color: var(--gold); }

    /* ── DIVIDER ── */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 48px 0;
    }

    /* ── SCROLL ANIMATION ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fade-in {
      animation: fadeUp 0.55s ease both;
    }

    .fade-in-2 { animation-delay: 0.1s; }
    .fade-in-3 { animation-delay: 0.2s; }
    .fade-in-4 { animation-delay: 0.3s; }
  </style>