
.rk-section {
  font-family: 'Inter', sans-serif;
  background: #f0f9f5;
  padding: 70px 20px;
  position: relative;
}
.rk-section::before,
.rk-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.rk-section::before {
  width: 340px; height: 340px;
  background: rgba(26,158,120,0.15);
  top: -40px; left: -60px;
}
.rk-section::after {
  width: 260px; height: 260px;
  background: rgba(200,149,58,0.10);
  bottom: -30px; right: -40px;
}

.rk-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(10,80,55,0.13), 0 1px 3px rgba(10,80,55,0.08);
  display: grid;
  grid-template-columns: 300px 1fr;
}

/* ── LEFT PANEL ── */
.rk-left {
  background: linear-gradient(160deg, #0d6b51 0%, #1a9e78 100%);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.rk-left::after {
  content: '✦';
  position: absolute;
  font-size: 180px;
  color: rgba(255,255,255,0.05);
  right: -30px; bottom: -20px;
  line-height: 1;
  pointer-events: none;
}
.rk-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b2e8d8;
  font-weight: 500;
  margin: 0 0 14px;
}
.rk-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 14px;
}
.rk-heading em {
  font-style: italic;
  color: #b2e8d8;
}
.rk-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0 0 36px;
}
.rk-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rk-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rk-info-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rk-info-icon svg {
  width: 16px; height: 16px;
  fill: none; stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rk-info-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.rk-info-val   { font-size: 13px; color: #fff; font-weight: 500; }

/* ── RIGHT PANEL ── */
.rk-right {
  padding: 48px 40px;
  background: #fff;
}
.rk-form-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a9e78;
  font-weight: 500;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rk-form-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #cde8e0;
}

.rk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rk-full { grid-column: 1 / -1; }

.rk-field { display: flex; flex-direction: column; gap: 6px; }
.rk-field label {
  font-size: 12px;
  font-weight: 500;
  color: #5a6b66;
  letter-spacing: 0.03em;
}
.rk-field input,
.rk-field select,
.rk-field textarea {
  background: #f7faf9;
  border: 1.5px solid #cde8e0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a1f1e;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.rk-field input:focus,
.rk-field select:focus,
.rk-field textarea:focus {
  border-color: #1a9e78;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,158,120,0.12);
}
.rk-field textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.rk-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6b66' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #f7faf9;
  padding-right: 40px;
  cursor: pointer;
}

.rk-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
}
.rk-divider span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8953a;
  font-weight: 500;
  white-space: nowrap;
}
.rk-divider::before,
.rk-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #f0e6d4;
}

.rk-preview {
  grid-column: 1 / -1;
  background: #e4f7f1;
  border: 1.5px dashed #b2e8d8;
  border-radius: 10px;
  padding: 14px 16px;
  display: none;
}
.rk-preview.show { display: block; }
.rk-preview-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d6b51;
  font-weight: 500;
  margin-bottom: 6px;
}
.rk-preview p {
  font-size: 13px;
  color: #0d6b51;
  line-height: 1.65;
  margin: 0;
}

.rk-btn-wa {
  grid-column: 1 / -1;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.30);
  width: 100%;
  box-sizing: border-box;
}
.rk-btn-wa:hover {
  background: #128C5E;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.rk-btn-wa:active { transform: scale(0.98); }
.rk-btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 720px) {
  .rk-inner { grid-template-columns: 1fr; }
  .rk-left  { padding: 36px 28px; }
  .rk-info  { margin-top: 28px; }
  .rk-right { padding: 32px 24px; }
  .rk-grid  { grid-template-columns: 1fr; }
  .rk-heading { font-size: 28px; }
}