
  /* ── SERVICE CARD ── */
  .card {
    background: white;
    padding: 38px 32px 34px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  .card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #E92829;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .card:hover {
    background: #FDFCFB;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    z-index: 2;
    /*transform: translateY(-3px);*/
  }
  .card:hover::after {
    transform: scaleX(1);
  }

  /* Icon */
	.card-icon {
		width: 60px;
		height: 60px;
		border-radius: 13px;
		background: linear-gradient(135deg, rgba(192, 57, 43, 0.10) 0%, rgba(192, 57, 43, 0.04) 100%);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 28px;
		margin-bottom: 22px;
		flex-shrink: 0;
	}

  /* Label */
  .card-label {
	  font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c0392b;;
    margin-bottom: 7px;
    opacity: 0.85;
  }

  /* Title */
  .card-title {
	font-family: 'IBMPlexSansThai-Bold';
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  /* Description */
  .card-desc {
    color: #606470;
    line-height: 1.72;
    margin-bottom: 20px;
    /*flex: 1;*/
  }

  /* Bullet list */
  .card-list {
    list-style: none;
    margin-bottom: 26px;
	  font-size: .9rem;
  }
  .card-list li {
    color: #5C6070;
    line-height: 1.55;
    padding: 4px 0 4px 18px;
    position: relative;
  }
  .card-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #E92829;
    /*opacity: 0.55;*/
  }

  /* CTA link */
  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #E92829;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
  }
  .card-link:hover { gap: 10px; }
  .card-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

  /* ── SECTION DIVIDER ── */
  .divider-row {
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .divider-row::after {
    content: ''; flex: 1;
    height: 1px; background: #e4e2dc;
  }
  .divider-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c0392b;
    white-space: nowrap;
    font-family: 'IBMPlexSansThai-Medium';
  }
  .divider-sub {
    font-size: .8rem;
    color: #7a7f8e;
    white-space: nowrap;
  }

  .card-dark {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 30px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    border: 1px solid #e4e2dc;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    animation: fadeUp 0.45s ease both;
  }
  .card-dark:nth-child(1) { animation-delay: 0.35s; }
  .card-dark:nth-child(2) { animation-delay: 0.40s; }
  .card-dark:nth-child(3) { animation-delay: 0.45s; }
  .card-dark:nth-child(4) { animation-delay: 0.50s; }
  .card-dark::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: #E92829;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
  }
  .card-dark:hover { background: #FDFCFB; box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
  .card-dark:hover::before { transform: scaleY(1); }
  .dark-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(192,57,43,0.10) 0%, rgba(192,57,43,0.04) 100%);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .dark-body { flex: 1; }
  .dark-label {
	  font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E92829;
    margin-bottom: 6px;
    opacity: 0.9;
  }
	.dark-icon {
		width: 60px;
		height: 60px;
		background: linear-gradient(135deg, rgba(192, 57, 43, 0.10) 0%, rgba(192, 57, 43, 0.04) 100%);
		border-radius: 13px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 28px;
		flex-shrink: 0;
	}
.dark-title {
	font-family: 'IBMPlexSansThai-Bold';
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.25;
}
  .dark-desc {
    color: #606470;
    line-height: 1.70;
    margin-bottom: 16px;
  }
  .dark-list {
    list-style: none;
    margin-bottom: 16px;
	  font-size: .9rem;
  }
  .dark-list li {
    color: #5C6070;
    line-height: 1.55;
    padding: 4px 0 4px 18px;
    position: relative;
  }
  .dark-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #E92829;
    /*opacity: 0.65;*/
  }
  .dark-link {
    display: inline-flex; align-items: center; gap: 6px;
	font-weight: 600;
    color: #E92829;
    text-decoration: none;
    transition: gap 0.2s;
  }
  .dark-link:hover { gap: 10px; }
  .dark-link svg { width: 20px; height: 20px; }

  @media (max-width: 640px) {
    /*.grid-2 { grid-template-columns: 1fr; }*/
    .card-dark { padding: 26px 20px; }
  }

  /* ── CTA BANNER ── */
  .cta-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 80px;
  }
  .cta-box {
    background: #e4e2dc;
    border-radius: 18px;
    padding: 52px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(192,57,43,0.22) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    color:#FFF;
    margin-bottom: 8px;
    position: relative;
  }
  .cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.48);
    line-height: 1.65;
    max-width: 420px;
    position: relative;
  }
  .cta-btns {
    display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0;
    position: relative;
  }
  .btn-red {
    background: #c0392b;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    border: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-red:hover { background: var(--red-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.65);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.45); color: white; }

  /* ── ANIMATION
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .card { animation: fadeUp 0.45s ease both; }
  .card:nth-child(1) { animation-delay: 0.05s; }
  .card:nth-child(2) { animation-delay: 0.10s; }
  .card:nth-child(3) { animation-delay: 0.15s; }
  .card:nth-child(4) { animation-delay: 0.20s; }
  .card:nth-child(5) { animation-delay: 0.25s; }
  .card:nth-child(6) { animation-delay: 0.30s; } ── */

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    /*.grid { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }*/
  }
  @media (max-width: 560px) {
    /*.grid { grid-template-columns: 1fr; border-radius: 12px; }*/
    .card { padding: 28px 22px; }
    .cta-box { padding: 36px 24px; }
  }